tinogomes (owner)

Revisions

gist: 130194 Download_button fork
public
Description:
Rake with arguments
Public Clone URL: git://gist.github.com/130194.git
Ruby
1
2
3
4
5
6
7
desc "Say hi. Use USER environment variable as default"
task :hi, :user do |t, args|
  args.with_defaults(:user => ENV["USER"])
  
  puts "Hi #{args[:user]}!"
end