Merge pull request #27 from andrusha/look-ma-no-hands

Enable Ruby 2 and 2.1 on Travis
This commit is contained in:
jrhe 2014-10-12 18:32:21 +01:00
commit c2aed6f8c8
4 changed files with 3 additions and 8 deletions

View file

@ -1,7 +1,3 @@
source 'https://rubygems.org'
gemspec
group :test do
gem 'jazz_hands', git: 'https://github.com/jrhe/jazz_hands.git', branch: 'without_rails'
end

View file

@ -22,6 +22,5 @@ Gem::Specification.new do |gem|
gem.add_development_dependency "rspec"
gem.add_development_dependency "rack-test"
gem.add_development_dependency "rake"
gem.add_development_dependency "jazz_hands"
gem.add_development_dependency 'guard-rspec'
end

View file

@ -1,8 +1,10 @@
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-19mode
env:
- JRUBY_OPTS="--1.9"
- JRUBY_OPTS="--1.9"

View file

@ -11,8 +11,6 @@ require 'rspec'
require 'rack/test'
require 'grape-active_model_serializers'
require 'jazz_hands'
RSpec.configure do |config|
config.include Rack::Test::Methods
end