Skip to content

Commit

Permalink
Added travis config and Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
onewheelskyward committed Jun 8, 2016
1 parent 7dc1fde commit cf92885
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: ruby
rvm:
- 2.0.0
- 2.1.7
- 2.2.4
- 2.3.0
script: bundle exec rake
before_install:
- gem update --system
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

0 comments on commit cf92885

Please sign in to comment.