Skip to content

Commit a735ee0

Browse files
committed
- Drop support for Ruby 3.1
1 parent c143d8f commit a735ee0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Ruby
3131
uses: ruby/setup-ruby@v1
3232
with:
33-
ruby-version: '3.2'
33+
ruby-version: '3.4'
3434
bundler-cache: true
3535

3636
- name: Generate all examples and fixtures
@@ -65,7 +65,7 @@ jobs:
6565
- name: Setup Ruby
6666
uses: ruby/setup-ruby@v1
6767
with:
68-
ruby-version: '3.2'
68+
ruby-version: '3.4'
6969
bundler-cache: true
7070

7171
- name: Generate all subjects

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
LC_ALL: en_US.UTF-8
1515

1616
strategy:
17-
matrix: { ruby: ['3.1', '3.2', '3.3', '3.4'] }
17+
matrix: { ruby: ['3.2', '3.3', '3.4'] }
1818

1919
steps:
2020
- name: Checkout code

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inherit_gem:
88
- rspec.yml
99

1010
AllCops:
11-
TargetRubyVersion: 3.1
11+
TargetRubyVersion: 3.2
1212
SuggestExtensions: false
1313
Exclude:
1414
- dev/**/*

bashly.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Gem::Specification.new do |s|
1313
s.executables = ['bashly']
1414
s.homepage = 'https://github.com/dannyben/bashly'
1515
s.license = 'MIT'
16-
s.required_ruby_version = '>= 3.1'
16+
s.required_ruby_version = '>= 3.2'
1717

18-
s.add_dependency 'colsole', '>= 0.8.1', '< 2'
19-
s.add_dependency 'completely', '>= 0.6.1', '< 0.8'
18+
s.add_dependency 'colsole', '~> 1.0'
19+
s.add_dependency 'completely', '~> 0.7.0'
2020
s.add_dependency 'filewatcher', '~> 2.0'
2121
s.add_dependency 'gtx', '~> 0.1.1'
2222
s.add_dependency 'lp', '~> 0.2.0'

0 commit comments

Comments
 (0)