Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bootstrap CI with travis-ci.org
  • Loading branch information
tomeric committed Apr 3, 2012
1 parent aa2c368 commit cacac51
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
@@ -0,0 +1,5 @@
language: ruby
rvm:
- 1.9.3
- jruby-19mode
- rbx-19mode
2 changes: 2 additions & 0 deletions Gemfile
Expand Up @@ -5,6 +5,8 @@ gemspec


# Specifiy the development dependencies here: # Specifiy the development dependencies here:
group :development do group :development do
gem 'rake'

# Testing libraries: # Testing libraries:
gem 'rspec' gem 'rspec'
gem 'vcr' gem 'vcr'
Expand Down
4 changes: 4 additions & 0 deletions Rakefile
@@ -1,2 +1,6 @@
#!/usr/bin/env rake #!/usr/bin/env rake
require "bundler/gem_tasks" require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
task :default => :spec

0 comments on commit cacac51

Please sign in to comment.