diff options
author | Louise Crow <louise.crow@gmail.com> | 2011-07-04 10:38:17 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2011-07-04 10:38:17 +0100 |
commit | 163bcabab19ede62755aedf9716336d8751060ff (patch) | |
tree | 56fbc38b14c7970caa80b32d21f971ab16b4641f | |
parent | f1b6444b5c8a7af39f20411b0db63a4fea4d7819 (diff) |
Add missing line from boot.rb - set up frozen gems.
-rw-r--r-- | config/boot.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/boot.rb b/config/boot.rb index 30e4851a5..6c9eec96a 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -54,6 +54,7 @@ module Rails def load_initializer require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer" Rails::Initializer.run(:install_gem_spec_stubs) + Rails::GemDependency.add_frozen_gem_path end end @@ -115,5 +116,7 @@ module Rails end end + # All that for this: Rails.boot! + |