Created
July 23, 2015 13:15
-
-
Save hartbit/3e1bff9c450f19acc2a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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