<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,16 @@
 *Edge*
 
+
 * Wrapped Rails.env in StringQuestioneer so you can do Rails.env.development? [DHH]
 
+* Add the gem load paths before the framework is loaded, so certain gems like RedCloth and BlueCloth can be frozen.
+
+* Fix discrepancies with loading rails/init.rb from gems.
+
+* Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb)  [Jacek Becela]
+
+* Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [DHH]
+
 * Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
 
 </diff>
      <filename>railties/CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -112,10 +112,10 @@ module Rails
       check_ruby_version
       install_gem_spec_stubs
       set_load_path
-      
+      add_gem_load_paths
+
       require_frameworks
       set_autoload_paths
-      add_gem_load_paths
       add_plugin_load_paths
       load_environment
 
@@ -241,12 +241,12 @@ module Rails
     def add_gem_load_paths
       unless @configuration.gems.empty?
         require &quot;rubygems&quot;
-        @configuration.gems.each &amp;:add_load_paths
+        @configuration.gems.each { |gem| gem.add_load_paths }
       end
     end
 
     def load_gems
-      @configuration.gems.each(&amp;:load)
+      @configuration.gems.each { |gem| gem.load }
     end
 
     def check_gem_dependencies</diff>
      <filename>railties/lib/initializer.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7827b0789fc9388af7cacc74181795a50c0f0822</id>
    </parent>
  </parents>
  <author>
    <name>rick</name>
    <email>technoweenie@gmail.com</email>
  </author>
  <url>http://github.com/rails/rails/commit/924244bf5cfb3d359fbc58d935d33adebf571fd6</url>
  <id>924244bf5cfb3d359fbc58d935d33adebf571fd6</id>
  <committed-date>2008-06-19T10:10:44-07:00</committed-date>
  <authored-date>2008-06-08T11:30:14-07:00</authored-date>
  <message>Add the gem load paths before the framework is loaded, so certain gems like RedCloth and BlueCloth can be frozen. [#320 state:resolved]</message>
  <tree>17bfed2861c0ebc74dde9e4fec598d3144579acc</tree>
  <committer>
    <name>rick</name>
    <email>technoweenie@gmail.com</email>
  </committer>
</commit>
