diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-12-19 08:35:48 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-12-19 08:35:48 -0800 |
commit | f70e94cbd2c1b84a14c14d96d220213b16f60986 (patch) | |
tree | 94bb321b9993a04c15fc2864dccdfb275f21b7d4 /activesupport/lib/active_support | |
parent | 3b10ad08742b68a83ea1bb347f842a295dc63b93 (diff) | |
parent | 4cb30d9f8b091c9eb1d7bf90c2974b96ea3a59f8 (diff) | |
download | rails-f70e94cbd2c1b84a14c14d96d220213b16f60986.tar.gz rails-f70e94cbd2c1b84a14c14d96d220213b16f60986.tar.bz2 rails-f70e94cbd2c1b84a14c14d96d220213b16f60986.zip |
Merge pull request #13406 from hincupetru/master
Fixed configurable.rb regular expression name check
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/configurable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb index e0d39d509f..bafcadff9a 100644 --- a/activesupport/lib/active_support/configurable.rb +++ b/activesupport/lib/active_support/configurable.rb @@ -107,7 +107,7 @@ module ActiveSupport options = names.extract_options! names.each do |name| - raise NameError.new('invalid config attribute name') unless name =~ /^[_A-Za-z]\w*$/ + raise NameError.new('invalid config attribute name') unless name =~ /\A[_A-Za-z]\w*\Z/ reader, reader_line = "def #{name}; config.#{name}; end", __LINE__ writer, writer_line = "def #{name}=(value); config.#{name} = value; end", __LINE__ |