Method: CodeQuality::CLI::Application#find_rakefile_location
- Defined in:
- lib/code_quality/cli.rb
#find_rakefile_location ⇒ Object
allows running ‘code_quality` without a Rakefile
84 85 86 87 88 89 90 |
# File 'lib/code_quality/cli.rb', line 84 def find_rakefile_location if (location = super).nil? [rakefile_path, Dir.pwd] else location end end |