diff options
author | Karel Minarik <karmi@karmi.cz> | 2008-10-10 11:41:30 +0200 |
---|---|---|
committer | Karel Minarik <karmi@karmi.cz> | 2008-10-10 11:41:30 +0200 |
commit | b38a80323f9cef4415c110b0b05016f98613e870 (patch) | |
tree | 2b3bcd4557382c854710735ec6595e3b5421f797 /railties | |
parent | efdad935427446095da640dfdbf1846e492d1629 (diff) | |
download | rails-b38a80323f9cef4415c110b0b05016f98613e870.tar.gz rails-b38a80323f9cef4415c110b0b05016f98613e870.tar.bz2 rails-b38a80323f9cef4415c110b0b05016f98613e870.zip |
Stated the need to specify "config.gem" +:lib+ option for libraries where the Gem name (eg. "sqlite3-ruby") differs from the file itself (eg. "sqlite3")
This affects great number of popular gems and is *really* frustrating to get "you have to rake gems:install" permanently when you *know* you just did that.
See eg. http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/afefb09908f36db/
Diffstat (limited to 'railties')
-rw-r--r-- | railties/environments/environment.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index abdb863130..09471f16bc 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -22,8 +22,10 @@ Rails::Initializer.run do |config| # Specify gems that this application depends on. # They can then be installed with "rake gems:install" on new installations. + # You HAVE to specify the <tt>:lib</tt> option for libraries, where the Gem name (<em>sqlite3-ruby</em>) differs from the file itself (_sqlite3_) # config.gem "bj" # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" + # config.gem "sqlite3-ruby", :lib => "sqlite3" # config.gem "aws-s3", :lib => "aws/s3" # Only load the plugins named here, in the order given. By default, all plugins |