Skip to content

Instantly share code, notes, and snippets.

@hieuk09
Created January 9, 2015 07:50
Show Gist options
  • Save hieuk09/4f141e631d56f286a7d5 to your computer and use it in GitHub Desktop.
Save hieuk09/4f141e631d56f286a7d5 to your computer and use it in GitHub Desktop.
namespace :something do
task execute_patch: :environment do
# OtherClass is used in MyClass
OtherClass.class_eval do
def foo
'bar'
end
end
loop do
MyClass.execute(...)
end
OtherClass.class_eval do
def foo
'foo'
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment