Skip to content

Commit

Permalink
add rails 7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
chenillen authored and petergoldstein committed Jun 9, 2022
1 parent 6a6d3e7 commit b4bac83
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
Empty file removed .travis.yml
Empty file.
4 changes: 2 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%w(5.2.6 6.0.3 6.1.3).each do |ar_version|
%w[5.2.6 6.0.3 6.1.3 7.0.0].each do |ar_version|
appraise "gemfile-#{ar_version.split('.').first(2).join}" do
gem "activerecord", "~> #{ar_version}"
gem 'activerecord', "~> #{ar_version}"
end
end
10 changes: 10 additions & 0 deletions gemfiles/gemfile_70.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 'activerecord', '~> 7.0.0'
gem 'mysql2'
gem 'pg'
gem 'sqlite3'

gemspec path: '../'
2 changes: 1 addition & 1 deletion lib/ancestry/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Ancestry
VERSION = "4.1.0"
VERSION = '4.1.1'
end

0 comments on commit b4bac83

Please sign in to comment.