Skip to content

Commit 0c1301b

Browse files
committed
Update rails_version
1 parent 9692e40 commit 0c1301b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

Gemfile.lock

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ PATH
22
remote: .
33
specs:
44
supermail (0.1.0)
5-
actionmailer (~> 7.0)
6-
activesupport (~> 7.0)
7-
railties (~> 7.0)
5+
actionmailer (>= 7.0)
86

97
GEM
108
remote: https://rubygems.org/
@@ -211,7 +209,7 @@ PLATFORMS
211209

212210
DEPENDENCIES
213211
irb
214-
rails (~> 7.0)
212+
rails (>= 7.0)
215213
rake (~> 13.0)
216214
rspec (~> 3.0)
217215
supermail!

supermail.gemspec

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
1010

1111
spec.summary = "Build emails with plain ol' Ruby objects."
1212
spec.description = spec.summary
13-
spec.homepage = "https://github.com/rubymonolith/supermail"
13+
spec.homepage = "https://github.com/beautifulruby/supermail"
1414
spec.required_ruby_version = ">= 3.1.0"
1515

1616
spec.metadata["allowed_push_host"] = "https://rubygems.org"
@@ -33,9 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.require_paths = ["lib"]
3434

3535
# Uncomment to register a new dependency of your gem
36-
spec.add_dependency "actionmailer", "~> 7.0"
37-
spec.add_dependency "railties", "~> 7.0"
38-
spec.add_dependency "activesupport", "~> 7.0"
39-
40-
spec.add_development_dependency "rails", "~> 7.0"
36+
rails_version = ">= 7.0"
37+
spec.add_dependency "actionmailer", rails_version
38+
spec.add_development_dependency "rails", rails_version
4139
end

0 commit comments

Comments
 (0)