We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
desc 'Method #3: Use ARGV to add two numbers and log the result' task :add do ARGV.each { |a| task a.to_sym do ; end } puts ARGV[1].to_i + ARGV[2].to_i end
This code (from here) gives an offense on the line starting ARGV... even though the task description is included above. Similar to #36 I guess.
ARGV...
The text was updated successfully, but these errors were encountered:
Rake/Desc
No branches or pull requests
This code (from here) gives an offense on the line starting
ARGV...
even though the task description is included above. Similar to #36 I guess.The text was updated successfully, but these errors were encountered: