Skip to content

Commit

Permalink
add rails 5.1 support and bump version (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
lostapathy authored and inossidabile committed Oct 6, 2017
1 parent a8690c3 commit cb3b34e
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 7 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ gemfile:
- gemfiles/rails_4.1.0.gemfile
- gemfiles/rails_4.2.0.gemfile
- gemfiles/rails_5.0.0.gemfile
- gemfiles/rails_5.1.1.gemfile
rvm:
- 2.3.0
before_install:
Expand Down
5 changes: 4 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ appraise "rails-4.2.0" do
gem "listen", "< 3.1.0"
end


appraise "rails-5.0.0" do
gem "rails", "5.0.0"
end

appraise "rails-5.1.1" do
gem "rails", "5.1.1"
end
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ gem 'appraisal'
gem 'tzinfo'
gem 'pry'
gem 'simplecov'
gem 'simplecov-summary'
gem 'simplecov-summary'

gem 'minitest', '<5.10.0'
3 changes: 2 additions & 1 deletion gemfiles/rails_4.0.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ gem "tzinfo"
gem "pry"
gem "simplecov"
gem "simplecov-summary"
gem "minitest", "<5.10.0"
gem "rails", "4.0.0"
gem "listen", "< 3.1.0"

gemspec :path => "../"
gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_4.1.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ gem "tzinfo"
gem "pry"
gem "simplecov"
gem "simplecov-summary"
gem "minitest", "<5.10.0"
gem "rails", "4.1.0"
gem "listen", "< 3.1.0"

gemspec :path => "../"
gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_4.2.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ gem "tzinfo"
gem "pry"
gem "simplecov"
gem "simplecov-summary"
gem "minitest", "<5.10.0"
gem "rails", "4.2.0"
gem "listen", "< 3.1.0"

gemspec :path => "../"
gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_5.0.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ gem "tzinfo"
gem "pry"
gem "simplecov"
gem "simplecov-summary"
gem "minitest", "<5.10.0"
gem "rails", "5.0.0"

gemspec :path => "../"
gemspec path: "../"
20 changes: 20 additions & 0 deletions gemfiles/rails_5.1.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was generated by Appraisal

source "http://rubygems.org"

gem "wasabi"
gem "savon", ">= 2.0.0"
gem "httpi"
gem "rspec-rails"
gem "guard"
gem "guard-rspec"
gem "rb-fsevent"
gem "appraisal"
gem "tzinfo"
gem "pry"
gem "simplecov"
gem "simplecov-summary"
gem "rails", "5.1.1"
gem "railties", "5.1.1"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/wash_out/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module WashOut
VERSION = "0.11.0"
VERSION = "0.12.0"
end

0 comments on commit cb3b34e

Please sign in to comment.