Skip to content

Commit edf6a87

Browse files
committed
EOL Rails 5.0 and Rails 5.1
Being we no longer run automated tests against these versions of Rails this removes support for them in the gem. Dropping support for Rails 5.0 also allows us to bump `rspec-rails` to be using `4.0.0` at minimum.
1 parent a6470f6 commit edf6a87

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

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

1011
## [3.1.2] - 2019-05-20
1112

Gemfile.lock

+23-23
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ GEM
4343
coderay (1.1.3)
4444
concurrent-ruby (1.1.7)
4545
crass (1.0.6)
46-
diff-lcs (1.4.4)
47-
erubi (1.9.0)
46+
diff-lcs (1.5.0)
47+
erubi (1.12.0)
4848
i18n (1.8.5)
4949
concurrent-ruby (~> 1.0)
50-
loofah (2.7.0)
50+
loofah (2.19.1)
5151
crass (~> 1.0.2)
5252
nokogiri (>= 1.5.9)
5353
method_source (1.0.0)
@@ -66,8 +66,8 @@ GEM
6666
rails-dom-testing (2.0.3)
6767
activesupport (>= 4.2.0)
6868
nokogiri (>= 1.6)
69-
rails-html-sanitizer (1.3.0)
70-
loofah (~> 2.3)
69+
rails-html-sanitizer (1.5.0)
70+
loofah (~> 2.19, >= 2.19.1)
7171
railties (6.0.3.3)
7272
actionpack (= 6.0.3.3)
7373
activesupport (= 6.0.3.3)
@@ -76,23 +76,23 @@ GEM
7676
thor (>= 0.20.3, < 2.0)
7777
rake (13.0.1)
7878
regexp_parser (1.8.1)
79-
rspec-core (3.9.3)
80-
rspec-support (~> 3.9.3)
81-
rspec-expectations (3.9.2)
79+
rspec-core (3.12.1)
80+
rspec-support (~> 3.12.0)
81+
rspec-expectations (3.12.2)
8282
diff-lcs (>= 1.2.0, < 2.0)
83-
rspec-support (~> 3.9.0)
84-
rspec-mocks (3.9.1)
83+
rspec-support (~> 3.12.0)
84+
rspec-mocks (3.12.4)
8585
diff-lcs (>= 1.2.0, < 2.0)
86-
rspec-support (~> 3.9.0)
87-
rspec-rails (3.9.1)
88-
actionpack (>= 3.0)
89-
activesupport (>= 3.0)
90-
railties (>= 3.0)
91-
rspec-core (~> 3.9.0)
92-
rspec-expectations (~> 3.9.0)
93-
rspec-mocks (~> 3.9.0)
94-
rspec-support (~> 3.9.0)
95-
rspec-support (3.9.3)
86+
rspec-support (~> 3.12.0)
87+
rspec-rails (4.0.2)
88+
actionpack (>= 4.2)
89+
activesupport (>= 4.2)
90+
railties (>= 4.2)
91+
rspec-core (~> 3.10)
92+
rspec-expectations (~> 3.10)
93+
rspec-mocks (~> 3.10)
94+
rspec-support (~> 3.10)
95+
rspec-support (3.12.0)
9696
thor (1.0.1)
9797
thread_safe (0.3.6)
9898
tzinfo (1.2.7)
@@ -105,12 +105,12 @@ PLATFORMS
105105
ruby
106106

107107
DEPENDENCIES
108-
activesupport (>= 5.0)
108+
activesupport (>= 5.2)
109109
appraisal
110110
capybara
111111
high_voltage!
112112
pry
113-
rspec-rails (~> 3.5)
113+
rspec-rails (~> 4.0.0)
114114

115115
BUNDLED WITH
116-
2.1.2
116+
2.2.33

high_voltage.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Gem::Specification.new do |s|
2121
s.test_files = []
2222
s.require_paths = ["lib"]
2323

24-
s.add_development_dependency('activesupport', '>= 5.0')
24+
s.add_development_dependency('activesupport', '>= 5.2')
2525
s.add_development_dependency('appraisal')
2626
s.add_development_dependency('capybara')
2727
s.add_development_dependency('pry')
28-
s.add_development_dependency('rspec-rails', '~> 3.5')
28+
s.add_development_dependency('rspec-rails', '~> 4.0.0')
2929
end

0 commit comments

Comments
 (0)