aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-19 17:27:52 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-19 17:28:19 -0200
commit04ad814bb992e854927c1bec3422df882f017ab6 (patch)
treeaa8de9544c4054df1cc47647b6f7851067334545 /activesupport
parentbfdae1775a298a4240c32e87d84ea7e8c6dccb06 (diff)
downloadrails-04ad814bb992e854927c1bec3422df882f017ab6.tar.gz
rails-04ad814bb992e854927c1bec3422df882f017ab6.tar.bz2
rails-04ad814bb992e854927c1bec3422df882f017ab6.zip
Make sure multiline string is not accepted by the regexp
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/configurable.rb2
-rw-r--r--activesupport/test/configurable_test.rb10
2 files changed, 10 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb
index bafcadff9a..3dd44e32d8 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[_A-Za-z]\w*\Z/
+ 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__
diff --git a/activesupport/test/configurable_test.rb b/activesupport/test/configurable_test.rb
index cb11a4a867..ef847fc557 100644
--- a/activesupport/test/configurable_test.rb
+++ b/activesupport/test/configurable_test.rb
@@ -95,10 +95,18 @@ class ConfigurableActiveSupport < ActiveSupport::TestCase
config_accessor "invalid attribute name"
end
end
+
+ assert_raises NameError do
+ Class.new do
+ include ActiveSupport::Configurable
+ config_accessor "invalid\nattribute"
+ end
+ end
+
assert_raises NameError do
Class.new do
include ActiveSupport::Configurable
- config_accessor "invalid attribute\nname"
+ config_accessor "invalid\n"
end
end
end