Skip to content

Commit 5a23f92

Browse files
humphreyjaJake Humphrey
andauthored
Lower Rails requirement to 7.2 (#93)
* lowering rails requirements * lowering rails migration version * Updating lock file with updated gemfile spec --------- Co-authored-by: Jake Humphrey <HumphreyJacob@JohnDeere.com>
1 parent eac4b52 commit 5a23f92

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ PATH
22
remote: .
33
specs:
44
action_push_native (0.3.1)
5-
activejob (>= 8.0)
6-
activerecord (>= 8.0)
5+
activejob (>= 7.2)
6+
activerecord (>= 7.2)
77
googleauth (~> 1.14)
88
httpx (~> 1.6)
99
jwt (>= 2)
10-
railties (>= 8.0)
10+
railties (>= 7.2)
1111

1212
GEM
1313
remote: https://rubygems.org/

action_push_native.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222

2323
spec.required_ruby_version = '>= 3.2.0'
2424

25-
rails_version = ">= 8.0"
25+
rails_version = ">= 7.2"
2626
spec.add_dependency "activerecord", rails_version
2727
spec.add_dependency "activejob", rails_version
2828
spec.add_dependency "railties", rails_version

db/migrate/20250610075650_create_action_push_native_device.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateActionPushNativeDevice < ActiveRecord::Migration[8.0]
1+
class CreateActionPushNativeDevice < ActiveRecord::Migration[7.2]
22
def change
33
create_table :action_push_native_devices do |t|
44
t.string :name

0 commit comments

Comments
 (0)