Skip to content

Commit

Permalink
Updated supported Ruby versions to 3.0, 3.1 and 3.2 (#36)
Browse files Browse the repository at this point in the history
* Updated supported Ruby versions to 3.0, 3.1 and 3.2

Removed Ruby 2.7 (EOL)

* `minitest 5.19` and above requires `minitest/unit` (fixes #37)
  • Loading branch information
morozgrafix authored Oct 26, 2023
1 parent a9030ad commit 085e5eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1']
ruby-version: ['3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This gem is the simplest thing that could possibly work that
reads the output of [exiftool](http://www.sno.phy.queensu.ca/~phil/exiftool)
and renders it into a ruby hash, with _correctly typed values_ and symbolized keys.

Ruby 2.7 through 3.1 are supported.
Ruby 3.0 through 3.2 are supported.

## Ruby Support Deprecation Notice

Expand All @@ -22,6 +22,7 @@ Ruby Versions due to their [End Of Life](https://www.ruby-lang.org/en/downloads/
- Ruby 2.4 (EOL 2020-03-31)
- Ruby 2.5 (EOL 2021-03-31)
- Ruby 2.6 (EOL 2022-04-12)
- Ruby 2.7 (EOL 2023-03-31)

The latest Exiftool is recommended, but you'll get that automatically by using the
[exiftool_vendored](https://github.com/exiftool-rb/exiftool_vendored.rb) gem!
Expand Down
1 change: 1 addition & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
end

require 'minitest/autorun'
require 'minitest/unit'
require 'minitest/great_expectations'
require 'yaml'
require 'exiftool'
Expand Down

0 comments on commit 085e5eb

Please sign in to comment.