Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: G5/storext
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: erikaxel/storext
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 16, 2021

  1. Support Rails 7.0

    erikaxel committed Dec 16, 2021
    Copy the full SHA
    c4c6b92 View commit details

Commits on Nov 8, 2023

  1. Support Rails 7.1

    erikaxel committed Nov 8, 2023
    Copy the full SHA
    659ec5d View commit details
Showing with 18 additions and 2 deletions.
  1. +1 −0 .travis.yml
  2. +6 −1 Appraisals
  3. +10 −0 gemfiles/rails_7.0.0.gemfile
  4. +1 −1 storext.gemspec
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ gemfile:
- gemfiles/rails_5.2.1.gemfile
- gemfiles/rails_6.0.0.gemfile
- gemfiles/rails_6.1.0.gemfile
- gemfiles/rails_7.0.0.gemfile
before_script:
- cp spec/dummy/config/database.yml{.sample,}
- bundle exec rake db:create db:schema:load db:test:prepare --Rakefile spec/dummy/Rakefile
7 changes: 6 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
@@ -26,4 +26,9 @@ end
appraise "rails_6.1.0" do
gem "rails", "6.1.0"
gem "pg", "~> 1.0"
end
end

appraise "rails_7.0.0" do
gem "rails", "7.0.0"
gem "pg", "~> 1.0"
end
10 changes: 10 additions & 0 deletions gemfiles/rails_7.0.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "pry"
gem "appraisal"
gem "rails", "7.0.0"
gem "pg", "~> 1.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion storext.gemspec
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.test_files = Dir["test/**/*"]

s.add_dependency "virtus"
s.add_dependency "activerecord", [">= 4.0", "< 6.2"]
s.add_dependency "activerecord", [">= 4.0", "< 8"]

s.add_development_dependency "pg"
s.add_development_dependency "rspec"