Skip to content

Commit 3a5b402

Browse files
authored
Drop support for unsupported ruby and rails versions (#52)
1 parent b9d1c9c commit 3a5b402

File tree

5 files changed

+3
-25
lines changed

5 files changed

+3
-25
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,15 @@ jobs:
77
strategy:
88
matrix:
99
ruby_version:
10-
- 2.7.8
11-
- 3.0.7
1210
- 3.1.6
1311
- 3.2.6
1412
- 3.3.6
1513
- jruby-9.4.9.0
1614
gemfile:
17-
- gemfiles/Gemfile.activesupport-5.x
18-
- gemfiles/Gemfile.activesupport-6.x
1915
- gemfiles/Gemfile.activesupport-7.1.x
2016
- gemfiles/Gemfile.activesupport-7.2.x
2117
- gemfiles/Gemfile.activesupport-8.x
2218
exclude:
23-
- gemfile: gemfiles/Gemfile.activesupport-7.2.x
24-
ruby_version: 2.7.8
25-
- gemfile: gemfiles/Gemfile.activesupport-7.2.x
26-
ruby_version: 3.0.7
27-
- gemfile: gemfiles/Gemfile.activesupport-8.x
28-
ruby_version: 2.7.8
29-
- gemfile: gemfiles/Gemfile.activesupport-8.x
30-
ruby_version: 3.0.7
3119
- gemfile: gemfiles/Gemfile.activesupport-8.x
3220
ruby_version: 3.1.6
3321
- gemfile: gemfiles/Gemfile.activesupport-8.x

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
A modern ruby gem allowing to do time calculation with working hours.
66

77
Compatible and tested with:
8-
- Ruby `2.7`, `3.0`, `3.1`, `3.2`, `3.3`, JRuby `9.4`
9-
- ActiveSupport `5.x`, `6.x`, `7.x`, `8.x`
8+
- Ruby `3.1`, `3.2`, `3.3`, JRuby `9.4`
9+
- ActiveSupport `7.x`, `8.x`
1010

1111
## Installation
1212

gemfiles/Gemfile.activesupport-5.x

Lines changed: 0 additions & 5 deletions
This file was deleted.

gemfiles/Gemfile.activesupport-6.x

Lines changed: 0 additions & 5 deletions
This file was deleted.

working_hours.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1919
spec.require_paths = ["lib"]
2020

21-
spec.add_dependency 'activesupport', '>= 3.2'
21+
spec.add_dependency 'activesupport', '>= 7.0'
2222
spec.add_dependency 'tzinfo'
2323

2424
spec.add_development_dependency 'bundler', '>= 1.5'

0 commit comments

Comments
 (0)