Skip to content

Commit

Permalink
Drop support for Rails 4.2
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Ferry <florent@ouvrages-web.fr>
  • Loading branch information
florentferry committed Jul 7, 2018
1 parent ed6b3af commit 2359e92
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 237 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,6 @@ rvm:
- ruby-head

gemfile:
- gemfiles/rails_4.2.x.gemfile
- gemfiles/rails_5.0.x.gemfile
- gemfiles/rails_5.1.x.gemfile
- gemfiles/rails_5.2.x.gemfile
Expand Down
4 changes: 0 additions & 4 deletions Appraisals
@@ -1,7 +1,3 @@
appraise "rails-4.2.x" do
gem "rails", "~> 4.2"
end

appraise "rails-5.0.x" do
gem "rails", "~> 5.0"
end
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

## Upcoming release

**Breaking changes:**

- Dropped support for Rails 4.2

## v2.2.0 (2018-07-03)

**Enhancements:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -47,7 +47,7 @@ This gem has been inspired by our Rails development practices at [Ouvrages](http
## Compatibility

- Ruby 2.2+
- Rails 4.2+
- Rails 5.0+
- Webpacker 3.0.0+

## Getting started
Expand Down
17 changes: 0 additions & 17 deletions gemfiles/rails_4.2.x.gemfile

This file was deleted.

202 changes: 0 additions & 202 deletions gemfiles/rails_4.2.x.gemfile.lock

This file was deleted.

6 changes: 3 additions & 3 deletions gemfiles/rails_5.0.x.gemfile.lock
Expand Up @@ -2,9 +2,9 @@ PATH
remote: ..
specs:
komponent (2.2.0)
actionview (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
actionview (>= 5.0)
activesupport (>= 5.0)
railties (>= 5.0)
webpacker (>= 3.0.0)

GEM
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_5.1.x.gemfile.lock
Expand Up @@ -2,9 +2,9 @@ PATH
remote: ..
specs:
komponent (2.2.0)
actionview (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
actionview (>= 5.0)
activesupport (>= 5.0)
railties (>= 5.0)
webpacker (>= 3.0.0)

GEM
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_5.2.x.gemfile.lock
Expand Up @@ -2,9 +2,9 @@ PATH
remote: ..
specs:
komponent (2.2.0)
actionview (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
actionview (>= 5.0)
activesupport (>= 5.0)
railties (>= 5.0)
webpacker (>= 3.0.0)

GEM
Expand Down
6 changes: 3 additions & 3 deletions komponent.gemspec
Expand Up @@ -29,9 +29,9 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.2.0'

spec.add_dependency "actionview", ">= 4.2"
spec.add_dependency "activesupport", ">= 4.2"
spec.add_dependency "railties", ">= 4.2"
spec.add_dependency "actionview", ">= 5.0"
spec.add_dependency "activesupport", ">= 5.0"
spec.add_dependency "railties", ">= 5.0"
spec.add_dependency "webpacker", ">= 3.0.0"

spec.add_development_dependency "appraisal"
Expand Down

0 comments on commit 2359e92

Please sign in to comment.