Discussion:
Radiant Instalation Help...
Jason Bray
2009-08-06 01:17:31 UTC
Permalink
Greetings,

I'm attempting to install Radiant on OSX Leopard. I'm also a Rails noob
just to get that out there. I followed these installation instructions:
http://wiki.github.com/radiant/radiant/installing-on-mac-os

Everything went flawlessly until I ran - ./script/server

I get this message in terminal:
/Users/jaybray/Sites/example/config/boot.rb:138:in `load_rubygems':
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from ./script/server:2:in `require'
from ./script/server:2:in `<main>'

and of course I get nothing when I go to my localhost. Anyone have advice
or suggestion on where to find help? Many thanks...

--
Jason
--
Jeff Casimir
2009-08-06 13:44:05 UTC
Permalink
Jason,

Are you using Leopard's built-in Ruby distribution? I remember there
being some complications there. You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update"). If that doesn't get you anywhere, you might consider
installing a newer version of ruby like Ruby Enterprise Edition:
http://www.rubyenterpriseedition.com/

- Jeff

---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Greetings,
I'm attempting to install Radiant on OSX Leopard.  I'm also a Rails noob
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
   from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
   from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
   from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
   from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
   from ./script/server:2:in `require'
   from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost.  Anyone have advice
or suggestion on where to find help?  Many thanks...
--
Jason
--
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
Jason Bray
2009-08-07 01:16:11 UTC
Permalink
Jeff,

Thanks for the advice. I am not using the built-in Ruby. I rolled my own
using the Hivelogic instructions for Leopard. I did double check to make
sure everything was updated properly and everything appears to be. I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.

I'm not sure how installing Enterprise Ruby will help so I may not try that
yet. I'm sure the main error here is btwn the chair and keyboard. My
inexperience with this framework is likely the root. I'll probably put
Radiant on the back burner for awhile until I have a better grasp of Rails.

I just wanted to say thanks.

--
Jason Bray
--
Post by Jeff Casimir
Jason,
Are you using Leopard's built-in Ruby distribution? I remember there
being some complications there. You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update"). If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Greetings,
I'm attempting to install Radiant on OSX Leopard. I'm also a Rails noob
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from ./script/server:2:in `require'
from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost. Anyone have
advice
Post by Jason Bray
or suggestion on where to find help? Many thanks...
--
Jason
--
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Jeff Casimir
2009-08-07 12:18:33 UTC
Permalink
Jason,

Well, those are good steps that you've taken.

I'm looking at my boot.rb file and the "load_rubygems" method. It
looks to me like the issue is with your RubyGems. If you're at the
command line and run "gem -v", what do you get back? It should be
something like 1.3.1.

Next, fire up irb and enter this line:

Gem::RubyGemsVersion

It should spit back "1.3.1". Let me know what it says if different.

If you want to try just disabling the check that's creating the error,
change line 139 from "unless rubygems_version >= '0.9.4'" to "unless
false" and try to start it up.

- Jeff

---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Jeff,
Thanks for the advice.  I am not using the built-in Ruby.  I rolled my own
using the Hivelogic instructions for Leopard.  I did double check to make
sure everything was updated properly and everything appears to be.  I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.
I'm not sure how installing Enterprise Ruby will help so I may not try that
yet.  I'm sure the main error here is btwn the chair and keyboard.  My
inexperience with this framework is likely the root.  I'll probably put
Radiant on the back burner for awhile until I have a better grasp of Rails.
I just wanted to say thanks.
--
Jason Bray
--
Post by Jeff Casimir
Jason,
Are you using Leopard's built-in Ruby distribution?  I remember there
being some complications there.  You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update").  If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Greetings,
I'm attempting to install Radiant on OSX Leopard.  I'm also a Rails noob
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
   from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
   from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
   from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
   from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
   from ./script/server:2:in `require'
   from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost.  Anyone have
advice
Post by Jason Bray
or suggestion on where to find help?  Many thanks...
--
Jason
--
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
Jason Bray
2009-08-12 00:18:15 UTC
Permalink
Jeff,

Sorry it took me awhile to check on your suggestions...

My RubyGem version is: 1.3.5

I wasn't sure what "irb" was so I went diggin' through one of my ROR
books... you get irb running via script/console... when I run that I get
Post by Jason Bray
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from script/console:2:in `require'
from script/console:2:in `<main>'
I also tried running script/console --sandbox which didn't change anything.
My other Rails apps I've built for the purposes of learning have worked
fine. For some reason Radiant is being cranky.

Again, I appreciate your time and effort...

--
Jason Bray
--
Post by Jason Bray
Jason,
Well, those are good steps that you've taken.
I'm looking at my boot.rb file and the "load_rubygems" method. It
looks to me like the issue is with your RubyGems. If you're at the
command line and run "gem -v", what do you get back? It should be
something like 1.3.1.
Gem::RubyGemsVersion
It should spit back "1.3.1". Let me know what it says if different.
If you want to try just disabling the check that's creating the error,
change line 139 from "unless rubygems_version >= '0.9.4'" to "unless
false" and try to start it up.
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Jeff,
Thanks for the advice. I am not using the built-in Ruby. I rolled my
own
Post by Jason Bray
using the Hivelogic instructions for Leopard. I did double check to make
sure everything was updated properly and everything appears to be. I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.
I'm not sure how installing Enterprise Ruby will help so I may not try
that
Post by Jason Bray
yet. I'm sure the main error here is btwn the chair and keyboard. My
inexperience with this framework is likely the root. I'll probably put
Radiant on the back burner for awhile until I have a better grasp of
Rails.
Post by Jason Bray
I just wanted to say thanks.
--
Jason Bray
--
Post by Jeff Casimir
Jason,
Are you using Leopard's built-in Ruby distribution? I remember there
being some complications there. You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update"). If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Greetings,
I'm attempting to install Radiant on OSX Leopard. I'm also a Rails
noob
Post by Jason Bray
Post by Jeff Casimir
Post by Jason Bray
just to get that out there. I followed these installation
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from ./script/server:2:in `require'
from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost. Anyone have
advice
Post by Jason Bray
or suggestion on where to find help? Many thanks...
--
Jason
--
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Jim Gay
2009-08-12 00:29:19 UTC
Permalink
Jason,

Open a Terminal window and type: irb
That's irb. (Type exit or quit end it)
script/console is similar, but it does it within the Rails environment
for your application.
Post by Jason Bray
Post by Jeff Casimir
run "gem -v", what do you get back?
Have you opened a Terminal and typed: gem -v

If it doesn't say "1.3.1", try this http://blog.libinpan.com/2008/04/update-rubygems-to-new-version-on-leopard/

-Jim
Post by Jason Bray
Jeff,
Sorry it took me awhile to check on your suggestions...
My RubyGem version is: 1.3.5
I wasn't sure what "irb" was so I went diggin' through one of my ROR
books... you get irb running via script/console... when I run that I get
Post by Jeff Casimir
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from script/console:2:in `require'
from script/console:2:in `<main>'
I also tried running script/console --sandbox which didn't change anything.
My other Rails apps I've built for the purposes of learning have worked
fine. For some reason Radiant is being cranky.
Again, I appreciate your time and effort...
--
Jason Bray
--
On Fri, Aug 7, 2009 at 8:18 AM, Jeff Casimir
Post by Jeff Casimir
Jason,
Well, those are good steps that you've taken.
I'm looking at my boot.rb file and the "load_rubygems" method. It
looks to me like the issue is with your RubyGems. If you're at the
command line and run "gem -v", what do you get back? It should be
something like 1.3.1.
It should spit back "1.3.1". Let me know what it says if different.
If you want to try just disabling the check that's creating the error,
change line 139 from "unless rubygems_version >= '0.9.4'" to "unless
false" and try to start it up.
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego
Mindstorms NXT
Post by Jason Bray
Jeff,
Thanks for the advice. I am not using the built-in Ruby. I
rolled my
own
Post by Jason Bray
using the Hivelogic instructions for Leopard. I did double check to make
sure everything was updated properly and everything appears to be. I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.
I'm not sure how installing Enterprise Ruby will help so I may not try
that
Post by Jason Bray
yet. I'm sure the main error here is btwn the chair and
keyboard. My
inexperience with this framework is likely the root. I'll
probably put
Radiant on the back burner for awhile until I have a better grasp of
Rails.
Post by Jason Bray
I just wanted to say thanks.
--
Jason Bray
--
Post by Jeff Casimir
Jason,
Are you using Leopard's built-in Ruby distribution? I remember there
being some complications there. You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update"). If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript
Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego
Mindstorms NXT
Post by Jason Bray
Greetings,
I'm attempting to install Radiant on OSX Leopard. I'm also a Rails
noob
Post by Jason Bray
Post by Jeff Casimir
Post by Jason Bray
just to get that out there. I followed these installation
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Everything went flawlessly until I ran - ./script/server
/Users/jaybray/Sites/example/config/boot.rb:138:in
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from ./script/server:2:in `require'
from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost. Anyone have
advice
Post by Jason Bray
or suggestion on where to find help? Many thanks...
--
Jason
Jim Gay
http://www.saturnflyer.com
Jason Bray
2009-08-13 00:24:07 UTC
Permalink
Jim,

Thanks for the urb clarification... When I check my version it kicks back
"1.3.5"... which I think is the latest version...



--
Jason Bray
--
Post by Jeff Casimir
Jason,
Open a Terminal window and type: irb
That's irb. (Type exit or quit end it)
script/console is similar, but it does it within the Rails environment for
your application.
run "gem -v", what do you get back?
Have you opened a Terminal and typed: gem -v
If it doesn't say "1.3.1", try this
http://blog.libinpan.com/2008/04/update-rubygems-to-new-version-on-leopard/
-Jim
Jeff,
Post by Jason Bray
Sorry it took me awhile to check on your suggestions...
My RubyGem version is: 1.3.5
I wasn't sure what "irb" was so I went diggin' through one of my ROR
books... you get irb running via script/console... when I run that I get
Post by Jason Bray
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from script/console:2:in `require'
from script/console:2:in `<main>'
I also tried running script/console --sandbox which didn't change anything.
My other Rails apps I've built for the purposes of learning have worked
fine. For some reason Radiant is being cranky.
Again, I appreciate your time and effort...
--
Jason Bray
--
Jason,
Post by Jason Bray
Well, those are good steps that you've taken.
I'm looking at my boot.rb file and the "load_rubygems" method. It
looks to me like the issue is with your RubyGems. If you're at the
command line and run "gem -v", what do you get back? It should be
something like 1.3.1.
It should spit back "1.3.1". Let me know what it says if different.
If you want to try just disabling the check that's creating the error,
change line 139 from "unless rubygems_version >= '0.9.4'" to "unless
false" and try to start it up.
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Post by Jason Bray
Jeff,
Thanks for the advice. I am not using the built-in Ruby. I rolled my
own
Post by Jason Bray
using the Hivelogic instructions for Leopard. I did double check to make
sure everything was updated properly and everything appears to be. I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.
I'm not sure how installing Enterprise Ruby will help so I may not try
that
Post by Jason Bray
yet. I'm sure the main error here is btwn the chair and keyboard. My
inexperience with this framework is likely the root. I'll probably put
Radiant on the back burner for awhile until I have a better grasp of
Rails.
Post by Jason Bray
I just wanted to say thanks.
--
Jason Bray
--
Jason,
Post by Jeff Casimir
Are you using Leopard's built-in Ruby distribution? I remember there
being some complications there. You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update"). If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Greetings,
Post by Jeff Casimir
Post by Jason Bray
I'm attempting to install Radiant on OSX Leopard. I'm also a Rails
noob
just to get that out there. I followed these installation
http://wiki.github.com/radiant/radiant/installing-on-mac-os
Post by Jeff Casimir
Post by Jason Bray
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
from ./script/server:2:in `require'
from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost. Anyone have
advice
Post by Jason Bray
or suggestion on where to find help? Many thanks...
--
Jason
Jim Gay
http://www.saturnflyer.com
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Jeff Casimir
2009-08-13 13:27:20 UTC
Permalink
Jason,

Since you have Rails installed, try generating a sample application
and booting the server. If that works, trying requiring a typical gem
(like will-paginate) and see if the app still works.

That might give us clues whether the problem is somehow with your
radiant config or with your whole environment.

- Jeff

---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Jim,
Thanks for the urb clarification...  When I check my version it kicks back
"1.3.5"... which I think is the latest version...
--
Jason Bray
--
Post by Jeff Casimir
Jason,
Open a Terminal window and type: irb
That's irb. (Type exit or quit end it)
script/console is similar, but it does it within the Rails environment for
your application.
 run "gem -v", what do you get back?
Have you opened a Terminal and typed: gem -v
If it doesn't say "1.3.1", try this
http://blog.libinpan.com/2008/04/update-rubygems-to-new-version-on-leopard/
-Jim
 Jeff,
Post by Jason Bray
Sorry it took me awhile to check on your suggestions...
My RubyGem version is: 1.3.5
I wasn't sure what "irb" was so I went diggin' through one of my ROR
books...  you get irb running via script/console... when I run that I get
Post by Jason Bray
undefined method `>=' for nil:NilClass (NoMethodError)
  from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
  from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
  from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
  from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
  from script/console:2:in `require'
  from script/console:2:in `<main>'
I also tried running script/console --sandbox which didn't change anything.
My other Rails apps I've built for the purposes of learning have worked
fine.  For some reason Radiant is being cranky.
Again, I appreciate your time and effort...
--
Jason Bray
--
 Jason,
Post by Jason Bray
Well, those are good steps that you've taken.
I'm looking at my boot.rb file and the "load_rubygems" method.  It
looks to me like the issue is with your RubyGems.  If you're at the
command line and run "gem -v", what do you get back?  It should be
something like 1.3.1.
It should spit back "1.3.1".  Let me know what it says if different.
If you want to try just disabling the check that's creating the error,
change line 139 from "unless rubygems_version >= '0.9.4'" to "unless
false" and try to start it up.
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
Jeff,
Thanks for the advice.  I am not using the built-in Ruby.  I rolled my
own
using the Hivelogic instructions for Leopard.  I did double check to make
sure everything was updated properly and everything appears to be.  I
started the Radiant install again from the beginning, made it all the way
through until running script/server and error message.
I'm not sure how installing Enterprise Ruby will help so I may not try
that
yet.  I'm sure the main error here is btwn the chair and keyboard.  My
inexperience with this framework is likely the root.  I'll probably put
Radiant on the back burner for awhile until I have a better grasp of
Rails.
I just wanted to say thanks.
--
Jason Bray
--
 Jason,
Post by Jeff Casimir
Are you using Leopard's built-in Ruby distribution?  I remember there
being some complications there.  You might try to update your version
of gems ("sudo gem update --system") and all your gems ("sudo gem
update").  If that doesn't get you anywhere, you might consider
http://www.rubyenterpriseedition.com/
- Jeff
---
Jeff Casimir
Jumpstart Lab by Casimir Creative, LLC
http://jumpstartlab.com
@jumpstartlab on twitter
Rails Jumpstart - Aug 15&16 - Beginning Web Application Development
JavaScript Jumpstart - Sep 12 - Intermediate Javascript Programming & UI
Robotics Jumpstart - Sep 13 - Intro to Robotics with Lego Mindstorms NXT
 Greetings,
Post by Jeff Casimir
Post by Jason Bray
I'm attempting to install Radiant on OSX Leopard.  I'm also a Rails
noob
 just to get that out there.  I followed these installation
 http://wiki.github.com/radiant/radiant/installing-on-mac-os
Post by Jeff Casimir
Post by Jason Bray
Everything went flawlessly until I ran - ./script/server
undefined method `>=' for nil:NilClass (NoMethodError)
 from /Users/jaybray/Sites/example/config/boot.rb:100:in
`load_initializer'
 from /Users/jaybray/Sites/example/config/boot.rb:61:in `run'
 from /Users/jaybray/Sites/example/config/boot.rb:19:in `boot!'
 from /Users/jaybray/Sites/example/config/boot.rb:161:in `<top
(required)>'
 from ./script/server:2:in `require'
 from ./script/server:2:in `<main>'
and of course I get nothing when I go to my localhost.  Anyone have
advice
Post by Jason Bray
or suggestion on where to find help?  Many thanks...
--
Jason
Jim Gay
http://www.saturnflyer.com
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
_______________________________________________
Radiant mailing list
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant
Continue reading on narkive:
Loading...