Skip to content

Commit 6ca792b

Browse files
committed
Add support for Rails 7.1
1 parent 5f23930 commit 6ca792b

File tree

13 files changed

+101
-13
lines changed

13 files changed

+101
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- rails6.0
1717
- rails6.1
1818
- rails7.0
19+
- rails7.1
1920
include:
2021
- {ruby-version: '2.6', gemfile: rails4.2}
2122
- {ruby-version: '2.6', gemfile: rails5.0}

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails4.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails5.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails5.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails5.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails6.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails6.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails7.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: ..
33
specs:
44
migration_tools (1.8.0)
5-
activerecord (>= 4.2.0, < 7.1)
5+
activerecord (>= 4.2.0, < 7.2)
66

77
GEM
88
remote: https://rubygems.org/

gemfiles/rails7.1.gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source "https://rubygems.org"
2+
3+
gem "activerecord", "~> 7.1.0"
4+
gem "sqlite3", "~> 1.4"
5+
6+
gemspec path: ".."

0 commit comments

Comments
 (0)