Skip to content

Commit

Permalink
Merge branch 'master' into deep_merge-require-core-only
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuczynski authored Oct 4, 2023
2 parents 4a0b7a5 + d25870d commit 4a79eac
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea
.bundle
gemfiles/*.lock
gemfiles/bin
log
pkg
spec/app/**/db/*.sqlite*
Expand Down
6 changes: 3 additions & 3 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ if RUBY_ENGINE == 'ruby' && RUBY_VERSION <= '3.0'
appraise 'rails-5.2' do
gem 'activerecord-jdbcsqlite3-adapter', '~> 52.5', platform: :jruby
gem 'bootsnap', '~> 1.4'
gem 'rails', '5.2.4.3'
gem 'rails', '5.2.8.1'
gem 'rspec-rails', '~> 3.7'
gem 'sqlite3', '< 1.4.0', platform: :ruby
end

appraise 'rails-6.0' do
gem 'activerecord-jdbcsqlite3-adapter', '~> 60.1', platform: :jruby
gem 'bootsnap', '~> 1.4'
gem 'rails', '6.0.3.1'
gem 'rails', '6.0.6.1'
gem 'rspec-rails', '~> 3.7'
gem 'sqlite3', '~> 1.4.0', platform: :ruby
end
Expand All @@ -21,7 +21,7 @@ end
appraise 'rails-6.1' do
gem 'activerecord-jdbcsqlite3-adapter', '~> 61.1', platform: :jruby
gem 'bootsnap', '>= 1.4.4'
gem 'rails', '6.1.4'
gem 'rails', '6.1.7.6'
gem 'rspec-rails', '~> 5.0'
gem 'sqlite3', '~> 1.4', platform: :ruby
gem 'psych', '>= 4'
Expand Down
12 changes: 9 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Install appraisal

```bash
gem install bundler -v 1.17.3
gem install bundler
gem install appraisal
```

Expand All @@ -16,13 +16,19 @@ bundle install
Bootstrap

```bash
appraisal install
bundle exec appraisal install
```

If you need to create new test app for specific rails version

```bash
bundle exec appraisal rails-7.0 rails new spec/app/rails_7.0
```

Run the test suite:

```bash
appraisal rspec
bundle exec appraisal rspec
```

If you modified any of the documentation files verify their format:
Expand Down
2 changes: 1 addition & 1 deletion config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Donate: \e[34mhttps://opencollective.com/rubyconfig/donate\e[0m\n"
s.add_development_dependency 'rake', '~> 12.0', '>= 12.0.0'

# Testing
s.add_development_dependency 'appraisal', '~> 2.3', '>= 2.3.0'
s.add_development_dependency 'appraisal', '~> 2.5', '>= 2.5.0'
s.add_development_dependency 'rspec', '~> 3.9', '>= 3.9.0'

# Default RSpec run will test against latest Rails app
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "activerecord-jdbcsqlite3-adapter", "~> 52.5", platform: :jruby
gem "bootsnap", "~> 1.4"
gem "rails", "5.2.4.3"
gem "rails", "5.2.8.1"
gem "rspec-rails", "~> 3.7"
gem "sqlite3", "< 1.4.0", platform: :ruby

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "activerecord-jdbcsqlite3-adapter", "~> 60.1", platform: :jruby
gem "bootsnap", "~> 1.4"
gem "rails", "6.0.3.1"
gem "rails", "6.0.6.1"
gem "rspec-rails", "~> 3.7"
gem "sqlite3", "~> 1.4.0", platform: :ruby

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

gem "activerecord-jdbcsqlite3-adapter", "~> 61.1", platform: :jruby
gem "bootsnap", ">= 1.4.4"
gem "rails", "6.1.4"
gem "rails", "6.1.7.6"
gem "rspec-rails", "~> 5.0"
gem "sqlite3", "~> 1.4", platform: :ruby
gem "psych", ">= 4"
Expand Down

0 comments on commit 4a79eac

Please sign in to comment.