Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.4'
bundler-cache: true

- name: Generate all examples and fixtures
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.4'
bundler-cache: true

- name: Generate all subjects
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
LC_ALL: en_US.UTF-8

strategy:
matrix: { ruby: ['3.1', '3.2', '3.3', '3.4'] }
matrix: { ruby: ['3.2', '3.3', '3.4'] }

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inherit_gem:
- rspec.yml

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
SuggestExtensions: false
Exclude:
- dev/**/*
Expand Down
6 changes: 3 additions & 3 deletions bashly.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Gem::Specification.new do |s|
s.executables = ['bashly']
s.homepage = 'https://github.com/dannyben/bashly'
s.license = 'MIT'
s.required_ruby_version = '>= 3.1'
s.required_ruby_version = '>= 3.2'

s.add_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_dependency 'completely', '>= 0.6.1', '< 0.8'
s.add_dependency 'colsole', '~> 1.0'
s.add_dependency 'completely', '~> 0.7.0'
s.add_dependency 'filewatcher', '~> 2.0'
s.add_dependency 'gtx', '~> 0.1.1'
s.add_dependency 'lp', '~> 0.2.0'
Expand Down
Loading