Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
Add rails 6.0.0 to appraisals
Browse files Browse the repository at this point in the history
  • Loading branch information
paulelliott committed Aug 17, 2019
1 parent 15c0b49 commit 9d30a08
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -11,6 +11,7 @@ services:
gemfile:
- gemfiles/kitchen_sink.gemfile
- gemfiles/blank_slate.gemfile
- gemfiles/rails_6.0.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/mongoid_5.0.gemfile
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Expand Up @@ -11,6 +11,10 @@ end
appraise 'blank-slate' do
end

appraise 'rails-6.0' do
gem 'activerecord', '~> 6.0.0', require: 'active_record'
end

appraise 'rails-5.1' do
gem 'activerecord', '~> 5.1.0', require: 'active_record'
end
Expand Down
15 changes: 15 additions & 0 deletions gemfiles/rails_6.0.gemfile
@@ -0,0 +1,15 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "cucumber"
gem "ffaker"
gem "pry"
gem "rake"
gem "rspec"
gem "rspec-its"
gem "sqlite3"
gem "activerecord", "~> 6.0.0", require: "active_record"

gemspec path: "../"
96 changes: 96 additions & 0 deletions gemfiles/rails_6.0.gemfile.lock
@@ -0,0 +1,96 @@
PATH
remote: ..
specs:
fabrication (2.20.2)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.0.0)
activesupport (= 6.0.0)
activerecord (6.0.0)
activemodel (= 6.0.0)
activesupport (= 6.0.0)
activesupport (6.0.0)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.1, >= 2.1.8)
appraisal (2.2.0)
bundler
rake
thor (>= 0.14.0)
backports (3.14.0)
builder (3.2.3)
coderay (1.1.2)
concurrent-ruby (1.1.5)
cucumber (3.1.2)
builder (>= 2.1.2)
cucumber-core (~> 3.2.0)
cucumber-expressions (~> 6.0.1)
cucumber-wire (~> 0.0.1)
diff-lcs (~> 1.3)
gherkin (~> 5.1.0)
multi_json (>= 1.7.5, < 2.0)
multi_test (>= 0.1.2)
cucumber-core (3.2.1)
backports (>= 3.8.0)
cucumber-tag_expressions (~> 1.1.0)
gherkin (~> 5.0)
cucumber-expressions (6.0.1)
cucumber-tag_expressions (1.1.1)
cucumber-wire (0.0.1)
diff-lcs (1.3)
ffaker (2.11.0)
gherkin (5.1.0)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
method_source (0.9.2)
minitest (5.11.3)
multi_json (1.13.1)
multi_test (0.1.2)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rake (12.3.3)
rspec (3.8.0)
rspec-core (~> 3.8.0)
rspec-expectations (~> 3.8.0)
rspec-mocks (~> 3.8.0)
rspec-core (3.8.2)
rspec-support (~> 3.8.0)
rspec-expectations (3.8.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-its (1.3.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.8.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-support (3.8.2)
sqlite3 (1.4.1)
thor (0.20.3)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
zeitwerk (2.1.9)

PLATFORMS
ruby

DEPENDENCIES
activerecord (~> 6.0.0)
appraisal
cucumber
fabrication!
ffaker
pry
rake
rspec
rspec-its
sqlite3

BUNDLED WITH
1.17.2

0 comments on commit 9d30a08

Please sign in to comment.