Skip to content

Commit

Permalink
Merge pull request #7076 from kennyj/fix_class_eval
Browse files Browse the repository at this point in the history
Fix class_eval without __FILE__ and __LINE__.
  • Loading branch information
tenderlove committed Jul 17, 2012
2 parents d0ba994 + 414008f commit 939f014
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion actionpack/lib/action_dispatch/routing/route_set.rb
Expand Up @@ -333,7 +333,7 @@ def define_mounted_helper(name)
end
end

MountedHelpers.class_eval <<-RUBY
MountedHelpers.class_eval(<<-RUBY, __FILE__, __LINE__ + 1)
def #{name}
@#{name} ||= _#{name}
end
Expand Down
Expand Up @@ -1467,7 +1467,7 @@ def test_creating_using_primary_key

def test_defining_has_many_association_with_delete_all_dependency_lazily_evaluates_target_class
ActiveRecord::Reflection::AssociationReflection.any_instance.expects(:class_name).never
class_eval <<-EOF
class_eval(<<-EOF, __FILE__, __LINE__ + 1)
class DeleteAllModel < ActiveRecord::Base
has_many :nonentities, :dependent => :delete_all
end
Expand All @@ -1476,7 +1476,7 @@ class DeleteAllModel < ActiveRecord::Base

def test_defining_has_many_association_with_nullify_dependency_lazily_evaluates_target_class
ActiveRecord::Reflection::AssociationReflection.any_instance.expects(:class_name).never
class_eval <<-EOF
class_eval(<<-EOF, __FILE__, __LINE__ + 1)
class NullifyModel < ActiveRecord::Base
has_many :nonentities, :dependent => :nullify
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/test/cases/attribute_methods_test.rb
Expand Up @@ -816,7 +816,7 @@ def in_time_zone(zone)
end

def privatize(method_signature)
@target.class_eval <<-private_method
@target.class_eval(<<-private_method, __FILE__, __LINE__ + 1)
private
def #{method_signature}
"I'm private"
Expand Down
2 changes: 1 addition & 1 deletion activesupport/test/multibyte_chars_test.rb
Expand Up @@ -110,7 +110,7 @@ def test_split_should_return_an_array_of_chars_instances
end

%w{capitalize downcase lstrip reverse rstrip swapcase upcase}.each do |method|
class_eval(<<-EOTESTS)
class_eval(<<-EOTESTS, __FILE__, __LINE__ + 1)
def test_#{method}_bang_should_return_self_when_modifying_wrapped_string
chars = ' él piDió Un bUen café '
assert_equal chars.object_id, chars.send("#{method}!").object_id
Expand Down
2 changes: 1 addition & 1 deletion railties/test/generators_test.rb
Expand Up @@ -167,7 +167,7 @@ def test_nested_fallbacks_for_generators
def test_developer_options_are_overwriten_by_user_options
Rails::Generators.options[:with_options] = { :generate => false }

self.class.class_eval <<-end_eval
self.class.class_eval(<<-end_eval, __FILE__, __LINE__ + 1)
class WithOptionsGenerator < Rails::Generators::Base
class_option :generate, :default => true
end
Expand Down

0 comments on commit 939f014

Please sign in to comment.