tinogomes (owner)

Revisions

  • c7dcbc tinogomes Mon Jun 15 09:14:27 -0700 2009
gist: 130194 Download_button fork
public
Description:
Rake with arguments
Public Clone URL: git://gist.github.com/130194.git
Embed All Files: show embed
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