aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-21 22:58:10 +0200
committerXavier Noria <fxn@hashref.com>2008-05-21 23:39:07 +0200
commit1edbdbbfa8c516e687dcf43e37544ee72596540d (patch)
tree5716511134c73caa845bc677bc3738d7ad5e6800 /railties
parent981bb9bcccf744bd1515b716865b645dd5110948 (diff)
downloadrails-1edbdbbfa8c516e687dcf43e37544ee72596540d.tar.gz
rails-1edbdbbfa8c516e687dcf43e37544ee72596540d.tar.bz2
rails-1edbdbbfa8c516e687dcf43e37544ee72596540d.zip
gsub("ActiveSupport", "Active Support")
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/initializer.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb
index 2deccd1078..c767e1ff7d 100644
--- a/railties/lib/initializer.rb
+++ b/railties/lib/initializer.rb
@@ -475,22 +475,22 @@ module Rails
# The application's base directory.
attr_reader :root_path
- # A stub for setting options on ActionController::Base
+ # A stub for setting options on ActionController::Base.
attr_accessor :action_controller
- # A stub for setting options on ActionMailer::Base
+ # A stub for setting options on ActionMailer::Base.
attr_accessor :action_mailer
- # A stub for setting options on ActionView::Base
+ # A stub for setting options on ActionView::Base.
attr_accessor :action_view
- # A stub for setting options on ActiveRecord::Base
+ # A stub for setting options on ActiveRecord::Base.
attr_accessor :active_record
- # A stub for setting options on ActiveRecord::Base
+ # A stub for setting options on ActiveRecord::Base.
attr_accessor :active_resource
- # A stub for setting options on ActiveSupport
+ # A stub for setting options on ActiveSupport.
attr_accessor :active_support
# Whether or not classes should be cached (set to false if you want
@@ -843,7 +843,7 @@ end
# Needs to be duplicated from Active Support since its needed before Active
# Support is available. Here both Options and Hash are namespaced to prevent
-# conflicts with other implementations AND with the classes residing in ActiveSupport.
+# conflicts with other implementations AND with the classes residing in Active Support.
class Rails::OrderedOptions < Array #:nodoc:
def []=(key, value)
key = key.to_sym