diff --git a/Gemfile b/Gemfile index 2614884..7ac9540 100644 --- a/Gemfile +++ b/Gemfile @@ -28,6 +28,7 @@ group :beaker do gem 'beaker', :require => false gem 'beaker-rspec', :require => false gem 'pry', :require => false + gem 'travis-lint', :require => false end # vim:ft=ruby diff --git a/Rakefile b/Rakefile index 4fcf788..85eafa8 100644 --- a/Rakefile +++ b/Rakefile @@ -9,6 +9,10 @@ PuppetLint::RakeTask.new :lint do |config| config.fail_on_warnings = true end +task :travis_lint do + sh "travis-lint" +end + task :default => [ :validate, :lint,