diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..710dbd44 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: ruby +rvm: + - 1.8.7 + - 1.9.2 + - 1.9.3 diff --git a/README.md b/README.md index ad239e66..946d92cb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://secure.travis-ci.org/levent/asset_sync.png)](http://travis-ci.org/levent/asset_sync) + # Asset Sync Synchronises Assets between Rails and S3. diff --git a/Rakefile b/Rakefile index c702cfcc..93cb9430 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,6 @@ require 'bundler/gem_tasks' +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec