Skip to content

Instantly share code, notes, and snippets.

@LolWalid
Created March 24, 2016 09:08
Show Gist options
  • Save LolWalid/171a5b468d1bdf152a9f to your computer and use it in GitHub Desktop.
Save LolWalid/171a5b468d1bdf152a9f to your computer and use it in GitHub Desktop.
Pass argument to rake task
task :task, [:arg1] => :environment do |_, args|
arg1 = args.arg1 || 'default_value'
puts arg1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment