1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00

Further work to attempt to get all appraisals in a place where they can pass

This commit is contained in:
James Cox 2019-01-07 13:10:25 -05:00
parent 876e4702c8
commit 1235d83a4f
7 changed files with 25 additions and 57 deletions

View file

@ -12,17 +12,10 @@ gemfile:
- gemfiles/rails_5.0.gemfile - gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile - gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile - gemfiles/rails_5.2.gemfile
- gemfiles/mongoid_4.0.gemfile
- gemfiles/mongoid_5.0.gemfile
- gemfiles/mongoid_6.0.gemfile
# matrix:
# exclude:
# # Rails 5.0 only works with Ruby >= 2.2
# - rvm: 1.9.3
# gemfile: gemfiles/rails_5.0.gemfile
# - rvm: 2.0.0
# gemfile: gemfiles/rails_5.0.gemfile
# - rvm: 2.1
# gemfile: gemfiles/rails_5.0.gemfile
#
addons: addons:
code_climate: code_climate:
repo_token: b84a33c35c698270ad54261655bc25161a0853386825a2d54fb1c7a11c2b2785 repo_token: b84a33c35c698270ad54261655bc25161a0853386825a2d54fb1c7a11c2b2785

View file

@ -18,32 +18,31 @@ appraise 'rails-5.2' do
gem 'rails', '>= 5.2.0', '< 5.3' gem 'rails', '>= 5.2.0', '< 5.3'
end end
appraise 'mongoid-3.0' do
gem 'mongoid', '~> 3.0.0'
end
appraise 'mongoid-3.1' do
gem 'mongoid', '~> 3.1.0'
gem 'json', '~> 1.8', :platforms => :ruby_19 # Json 2.0 requires Ruby >= 2.0
end
appraise 'mongoid-4.0' do appraise 'mongoid-4.0' do
gem 'mongoid', '~> 4.0.0' gem 'mongoid', '~> 4.0.0'
end end
appraise 'mongo_mapper' do appraise 'mongoid-5.0' do
gem 'mongo_mapper' gem 'mongoid', '~> 5.0.0'
end end
appraise 'ripple' do appraise 'mongoid-6.0' do
gem 'tzinfo' gem 'mongoid', '~> 6.0.0'
gem 'ripple'
end end
appraise 'nobrainer' do # appraise 'mongo_mapper' do
gem 'nobrainer' # gem 'mongo_mapper'
# end
# When activesupport 5 was released, it required ruby 2.2.2 as a minimum. #
# Locking this down to 4.2.6 allows our Ruby 1.9 tests to keep working. # appraise 'ripple' do
gem 'activesupport', '4.2.6', :platforms => :ruby_19 # gem 'tzinfo'
end # gem 'ripple'
# end
#
# appraise 'nobrainer' do
# gem 'nobrainer'
#
# # When activesupport 5 was released, it required ruby 2.2.2 as a minimum.
# # Locking this down to 4.2.6 allows our Ruby 1.9 tests to keep working.
# gem 'activesupport', '4.2.6', :platforms => :ruby_19
# end

View file

@ -1,8 +0,0 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "mongoid", "~> 3.1.0"
gem "json", "~> 1.8", platforms: :ruby_19
gemspec path: "../"

View file

@ -2,6 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "mongo_mapper" gem "mongoid", "~> 5.0.0"
gemspec path: "../" gemspec path: "../"

View file

@ -2,6 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "mongoid", "~> 3.0.0" gem "mongoid", "~> 6.0.0"
gemspec path: "../" gemspec path: "../"

View file

@ -1,8 +0,0 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "nobrainer"
gem "activesupport", "4.2.6", platforms: :ruby_19
gemspec path: "../"

View file

@ -1,8 +0,0 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "tzinfo"
gem "ripple"
gemspec path: "../"