Skip to content

Commit

Permalink
Update minimal support version to Ruby 2.7 and Rails 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elct9620 committed Nov 7, 2023
1 parent b19ae14 commit d495c07
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Provide manageable Let's Encrypt Certificate for Rails.

## Requirement

* Rails 5+
* Ruby 2.5+
* Rails 6.1+
* Ruby 2.7+

## Installation

Expand Down
14 changes: 7 additions & 7 deletions gemfiles/rails6.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ PATH
specs:
rails-letsencrypt (0.10.1)
acme-client (~> 2.0.0)
actionmailer (>= 5.0)
actionpack (>= 5.0)
actionview (>= 5.0)
activemodel (>= 5.0)
activerecord (>= 5.0)
activesupport (>= 5.0)
actionmailer (>= 6.1)
actionpack (>= 6.1)
actionview (>= 6.1)
activemodel (>= 6.1)
activerecord (>= 6.1)
activesupport (>= 6.1)
net-smtp
railties (>= 5.0)
railties (>= 6.1)
redis

GEM
Expand Down
14 changes: 7 additions & 7 deletions gemfiles/rails7.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ PATH
specs:
rails-letsencrypt (0.10.1)
acme-client (~> 2.0.0)
actionmailer (>= 5.0)
actionpack (>= 5.0)
actionview (>= 5.0)
activemodel (>= 5.0)
activerecord (>= 5.0)
activesupport (>= 5.0)
actionmailer (>= 6.1)
actionpack (>= 6.1)
actionview (>= 6.1)
activemodel (>= 6.1)
activerecord (>= 6.1)
activesupport (>= 6.1)
net-smtp
railties (>= 5.0)
railties (>= 6.1)
redis

GEM
Expand Down
14 changes: 7 additions & 7 deletions rails-letsencrypt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.require_paths = ["lib"]

s.add_dependency "railties", ">= 5.0"
s.add_dependency "actionmailer", ">= 5.0"
s.add_dependency "actionpack", ">= 5.0"
s.add_dependency "actionview", ">= 5.0"
s.add_dependency "activemodel", ">= 5.0"
s.add_dependency "activerecord", ">= 5.0"
s.add_dependency "activesupport", ">= 5.0"
s.add_dependency "railties", ">= 6.1"
s.add_dependency "actionmailer", ">= 6.1"
s.add_dependency "actionpack", ">= 6.1"
s.add_dependency "actionview", ">= 6.1"
s.add_dependency "activemodel", ">= 6.1"
s.add_dependency "activerecord", ">= 6.1"
s.add_dependency "activesupport", ">= 6.1"
s.add_dependency "acme-client", "~> 2.0.0"
s.add_dependency "redis"
s.add_dependency "net-smtp" if RUBY_VERSION >= '3'
Expand Down

0 comments on commit d495c07

Please sign in to comment.