public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Really remove components.
jeremy (author)
Mon Nov 24 18:48:00 -0800 2008
commit  36dcfcf126b7e7ba33ebe0d7148c9023e7494464
tree    3968994242766ebd449bc7ffc8cd5e43c2ca020d
parent  a5870d43e3aac4ae02a650d0112b305c6a3d9114
...
45
46
47
48
49
50
51
...
45
46
47
 
48
49
50
0
@@ -45,7 +45,6 @@ BASE_DIRS = %w(
0
   config/environments
0
   config/initializers
0
   config/locales
0
-  components
0
   db
0
   doc
0
   log
...
624
625
626
627
 
628
629
630
...
912
913
914
915
916
917
918
919
920
...
922
923
924
925
926
927
928
...
624
625
626
 
627
628
629
630
...
912
913
914
 
 
 
915
916
917
...
919
920
921
 
922
923
924
0
@@ -624,7 +624,7 @@ Run `rake gems:install` to install the missing gems.
0
     attr_accessor :cache_classes
0
 
0
     # The list of paths that should be searched for controllers. (Defaults
0
-    # to <tt>app/controllers</tt> and <tt>components</tt>.)
0
+    # to <tt>app/controllers</tt>.)
0
     attr_accessor :controller_paths
0
 
0
     # The path to the database configuration file to use. (Defaults to
0
@@ -912,9 +912,6 @@ Run `rake gems:install` to install the missing gems.
0
         # Add the app's controller directory
0
         paths.concat(Dir["#{root_path}/app/controllers/"])
0
 
0
-        # Then components subdirectories.
0
-        paths.concat(Dir["#{root_path}/components/[_a-z]*"])
0
-
0
         # Followed by the standard includes.
0
         paths.concat %w(
0
           app
0
@@ -922,7 +919,6 @@ Run `rake gems:install` to install the missing gems.
0
           app/controllers
0
           app/helpers
0
           app/services
0
-          components
0
           config
0
           lib
0
           vendor
...
4
5
6
7
8
9
10
...
4
5
6
 
7
8
9
0
@@ -4,7 +4,6 @@ STATS_DIRECTORIES = [
0
   %w(Models             app/models),
0
   %w(Libraries          lib/),
0
   %w(APIs               app/apis),
0
-  %w(Components         components),
0
   %w(Integration\ tests test/integration),
0
   %w(Functional\ tests  test/functional),
0
   %w(Unit\ tests        test/unit)

Comments