Merge pull request #16 from ehaselwanter/travis-updates

add travis config, add default task to rakefile
This commit is contained in:
Dominik Richter 2014-06-23 14:38:53 +02:00
commit ebe8e86604
2 changed files with 5 additions and 0 deletions

4
.travis.yml Normal file
View file

@ -0,0 +1,4 @@
rvm:
- 1.9.3
- 2.0.0
language: ruby

View file

@ -13,6 +13,7 @@ end
# Lint the cookbook
desc 'Run linters'
task :run_all_linters => [:rubocop] # rubocop:disable Style/HashSyntax
task :default => :run_all_linters # rubocop:disable Style/HashSyntax
# Serverspec tests
suites = Dir.glob('*').select { |entry| File.directory?(entry) }