File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 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
97GEM
108 remote: https://rubygems.org/
@@ -211,7 +209,7 @@ PLATFORMS
211209
212210DEPENDENCIES
213211 irb
214- rails (~> 7.0 )
212+ rails (>= 7.0 )
215213 rake (~> 13.0 )
216214 rspec (~> 3.0 )
217215 supermail !
Original file line number Diff line number Diff 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
4139end
You can’t perform that action at this time.
0 commit comments