Skip to content

Instantly share code, notes, and snippets.

@hanachin
Last active October 17, 2017 09:12
Show Gist options
  • Save hanachin/9c7585d7e0f8ba52c58eb09455968758 to your computer and use it in GitHub Desktop.
Save hanachin/9c7585d7e0f8ba52c58eb09455968758 to your computer and use it in GitHub Desktop.
rakeタスクの中だけで使うメソッドはRefinementsで定義するとべんり ref: http://qiita.com/hanachin_/items/6cf63dd3987a60e3d264
% rake hi
hi
m = Module.new do
def hi
puts :hi
end
end
desc 'はい'
task :hi do
include m
hi
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment