Skip to content

Commit

Permalink
update gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonislawski committed Mar 13, 2018
1 parent 0cb8486 commit e8674d7
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -10,6 +10,8 @@ env:
gemfile:
- gemfiles/spree_3_1.gemfile
- gemfiles/spree_3_2.gemfile
- gemfiles/spree_3_3.gemfile
- gemfiles/spree_3_4.gemfile
- gemfiles/spree_master.gemfile

script:
Expand Down
11 changes: 11 additions & 0 deletions Appraisals
@@ -1,12 +1,23 @@
appraise 'spree-3-1' do
gem 'spree', '~> 3.1.0'
gem 'rails', '~> 4.2.10'
end

appraise 'spree-3-2' do
gem 'spree', '~> 3.2.0'
gem 'rails-controller-testing'
end

appraise 'spree-3-3' do
gem 'spree', '~> 3.3.0'
gem 'rails-controller-testing'
end

appraise 'spree-3-4' do
gem 'spree', '~> 3.4.0'
gem 'rails-controller-testing'
end

appraise 'spree-master' do
gem 'spree', github: 'spree/spree', branch: 'master'
gem 'rails-controller-testing'
Expand Down
3 changes: 2 additions & 1 deletion gemfiles/spree_3_1.gemfile
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "spree", "~> 3.1.0"
gem "rails", "~> 4.2.10"

gemspec :path => "../"
gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/spree_3_2.gemfile
Expand Up @@ -5,4 +5,4 @@ source "https://rubygems.org"
gem "spree", "~> 3.2.0"
gem "rails-controller-testing"

gemspec :path => "../"
gemspec path: "../"
8 changes: 8 additions & 0 deletions gemfiles/spree_3_3.gemfile
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "spree", "~> 3.3.0"
gem "rails-controller-testing"

gemspec path: "../"
8 changes: 8 additions & 0 deletions gemfiles/spree_3_4.gemfile
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "spree", "~> 3.4.0"
gem "rails-controller-testing"

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/spree_master.gemfile
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "spree", :github => "spree/spree", :branch => "master"
gem "spree", github: "spree/spree", branch: "master"
gem "rails-controller-testing"

gemspec :path => "../"
gemspec path: "../"

0 comments on commit e8674d7

Please sign in to comment.