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
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ jobs:
strategy:
matrix:
ruby:
- 3.1
- 3.2
- 3.3
- 3.4
env:
BUNDLE_GEMFILE: Gemfile
name: "RSpec tests: Ruby ${{ matrix.ruby }}"
Expand All @@ -32,9 +31,8 @@ jobs:
strategy:
matrix:
ruby:
- 3.1
- 3.2
- 3.3
- 3.4
env:
BUNDLE_GEMFILE: Gemfile
name: "Visual Regression Suite: Ruby ${{ matrix.ruby }}"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ DEPENDENCIES
visualize_packs!

BUNDLED WITH
2.5.10
4.0.15
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ bundle exec visualize_packs --help

## Contributing

To contribute, install graphviz (and the `dot` command) and imagemagick. You must also have Ruby 3.2.2 and bundler installed. Then
To contribute, install graphviz (and the `dot` command) and imagemagick. You must also have Ruby 3.3 and bundler installed. Then

```
./spec/test.sh
Expand Down
2 changes: 1 addition & 1 deletion visualize_packs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
# Specify which files should be added to the gem when it is released.
spec.files = Dir['README.md', 'lib/**/*', "bin/**/*"]
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7'
spec.required_ruby_version = '>= 3.3'

spec.add_dependency 'bigdecimal'
spec.add_development_dependency 'bundler'
Expand Down
Loading