- Rails 3 and Ruby 1.9.2
- Rails 3.x and Ruby 1.8.7 and Hobo 1.0.3
- Rails 2.3.5 and Ruby 1.8.7 and Hobo 1.0.2
Two failure modalities were found. First, even though the Ruby version-specific global gemsets had been emptied, the 1.8.7 global gemset had inadvertently been repopulated by an errant bundle install. Second, neither that gemset nor the app-specific gemset contained the Bundler gem itself, which had been silently "adopted" from the enclosing (system wide) environment.
The solution was to reset... go back and clear out the gemsets like I had before, and this time make sure the app-specific gemset had been properly selected before running gem install bundler and then bundle install.
Incidentally, how you start the server depends, but it seems that there are at least two ways :
- script/server
- rails server
I guess I don't know enough about the blessed way of Ruby server zen, but it certainly wasn't obvious by looking at the files sitting in the local directory.
No comments:
Post a Comment