aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-09-27 20:42:02 +0200
committerJosé Valim <jose.valim@gmail.com>2010-09-27 20:43:56 +0200
commit6067d1620075c1c311bbae01993453cd80967804 (patch)
treea6bbb495255db6e4fd30e8209316a768b5691350 /activesupport/lib
parente1b51955f15e91f3f1705612fd0aca82a257e2f4 (diff)
downloadrails-6067d1620075c1c311bbae01993453cd80967804.tar.gz
rails-6067d1620075c1c311bbae01993453cd80967804.tar.bz2
rails-6067d1620075c1c311bbae01993453cd80967804.zip
Call it compile_methods! and do the same on AM.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/configurable.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb
index 1914f10669..58ed37b018 100644
--- a/activesupport/lib/active_support/configurable.rb
+++ b/activesupport/lib/active_support/configurable.rb
@@ -10,12 +10,12 @@ module ActiveSupport
extend ActiveSupport::Concern
class Configuration < ActiveSupport::InheritableOptions
- def crystalize!
- self.class.crystalize!(keys.reject {|key| respond_to?(key)})
+ def compile_methods!
+ self.class.compile_methods!(keys.reject {|key| respond_to?(key)})
end
# compiles reader methods so we don't have to go through method_missing
- def self.crystalize!(keys)
+ def self.compile_methods!(keys)
keys.each do |key|
class_eval <<-RUBY, __FILE__, __LINE__ + 1
def #{key}; _get(#{key.inspect}); end