Skip to content

Commit

Permalink
Merge pull request #307 from thoughtbot/rk-eol-rails-5-and-5-1
Browse files Browse the repository at this point in the history
Drop support for Rails 5.0 and Rails 5.1
  • Loading branch information
MatheusRich authored Oct 20, 2023
2 parents 2afcbc5 + edf6a87 commit 7bfe2f4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 25 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Remove support for EOL'd Rails version 4.2
- Remove support for Travis CI and replaced with Github Actions
- Remove support for EOL'd Rails versions 5.0 and 5.1

## [3.1.2] - 2019-05-20

Expand Down
46 changes: 23 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ GEM
coderay (1.1.3)
concurrent-ruby (1.1.7)
crass (1.0.6)
diff-lcs (1.4.4)
erubi (1.9.0)
diff-lcs (1.5.0)
erubi (1.12.0)
i18n (1.8.5)
concurrent-ruby (~> 1.0)
loofah (2.7.0)
loofah (2.19.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
method_source (1.0.0)
Expand All @@ -66,8 +66,8 @@ GEM
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
rails-html-sanitizer (1.5.0)
loofah (~> 2.19, >= 2.19.1)
railties (6.0.3.3)
actionpack (= 6.0.3.3)
activesupport (= 6.0.3.3)
Expand All @@ -76,23 +76,23 @@ GEM
thor (>= 0.20.3, < 2.0)
rake (13.0.1)
regexp_parser (1.8.1)
rspec-core (3.9.3)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.2)
rspec-core (3.12.1)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-rails (3.9.1)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.3)
rspec-support (~> 3.12.0)
rspec-rails (4.0.2)
actionpack (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
rspec-core (~> 3.10)
rspec-expectations (~> 3.10)
rspec-mocks (~> 3.10)
rspec-support (~> 3.10)
rspec-support (3.12.0)
thor (1.0.1)
thread_safe (0.3.6)
tzinfo (1.2.7)
Expand All @@ -105,12 +105,12 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 5.0)
activesupport (>= 5.2)
appraisal
capybara
high_voltage!
pry
rspec-rails (~> 3.5)
rspec-rails (~> 4.0.0)

BUNDLED WITH
2.1.2
2.2.33
4 changes: 2 additions & 2 deletions high_voltage.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Gem::Specification.new do |s|
s.test_files = []
s.require_paths = ["lib"]

s.add_development_dependency('activesupport', '>= 5.0')
s.add_development_dependency('activesupport', '>= 5.2')
s.add_development_dependency('appraisal')
s.add_development_dependency('capybara')
s.add_development_dependency('pry')
s.add_development_dependency('rspec-rails', '~> 3.5')
s.add_development_dependency('rspec-rails', '~> 4.0.0')
end

0 comments on commit 7bfe2f4

Please sign in to comment.