Skip to content

Instantly share code, notes, and snippets.

@hartbit
Created July 23, 2015 13:15
Show Gist options
  • Save hartbit/3e1bff9c450f19acc2a3 to your computer and use it in GitHub Desktop.
Save hartbit/3e1bff9c450f19acc2a3 to your computer and use it in GitHub Desktop.
require 'rake'
task :works do
puts "works!"
end
class MyClass
include Rake::DSL
def self.define_task
task :doesnt_work do
puts "doesn't work :("
end
end
end
MyClass.define_task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment