Rake and arguments for tasks

Rake is beautiful tool, helping automate many tasks using Ruby. When You want to pass some arguments You can add VAR=value on command line and then in task use ENV[‘VAR’] to access passed value. But it is not what You alway want. Sometimes You want more compact and clean way to pass arguments. Starting with …