EagerELK / ditty

Sinatra Based Web Application Framework
MIT License
8 stars 7 forks source link

Update Travis.yml to run rubocop before specs #6

Closed accua closed 7 years ago

accua commented 7 years ago

This is my first PR for hacktoberfest. I haven't worked with Travis before, but I've worked a little with Circle. Let me know if anything needs to be changed!

jrgns commented 7 years ago

@accua Thanx, can you please move the line into the script section, like so:

script:  
- bundle exec rake
- bundle exec rubocop --fail-level W lib views

Travis runs bundle exec rake by default for ruby projects if it's not specified.

accua commented 7 years ago

@jrgns This should be correct. Thanks for the help!