I actually had to do a different step which makes more sense. I edited: /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/radiant-0.8.2/vendor/rails/actionpack/lib/action_controller.rb
And changed the gem rack line to 1.1.0. Now I'm flying. Changing the gemspec should just change the install-time dependencies, not the load time requirements -- unless I'm mistaken. This change to action controller affects the loadtime. - Jeff --- Jeff Casimir Jumpstart Lab by Casimir Creative, LLC http://jumpstartlab.com @jumpstartlab on twitter On Wed, Aug 11, 2010 at 2:39 PM, Jeff Casimir <[email protected]> wrote: > Thanks for posting this guys, I was about to come up with a more > complex solution to the same problem. > > - Jeff > > On Tue, Aug 10, 2010 at 9:41 PM, Bill Heaton <[email protected]> wrote: >> editing the gemspec worked for me as well. >> >> s.add_runtime_dependency(%q<rack>, [">= 1.0.0","< 1.2.1"]) >> >> -Bill >> >>> But with pre-0.9, you can fix the radiant gem spec: >>> >>> <your ruby installation>/gems/1.8/specifications/radiant-0.8.2.gemspec >>> >>> Change the line: >>> s.add_runtime_dependency(%q<rack>, [">= 1.0.0"]) >>> to: >>> s.add_runtime_dependency(%q<rack>, [">= 1.0.0","< 1.1.0"]) >>> >> >> >
