Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Ruby 2.6 #9

Merged
merged 3 commits into from
Sep 14, 2024
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
rvm:
- 2.6.10
- 2.7.8
- 3.1.6
- 3.2.5
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# xmp - Extensible Metadata Platform (XMP) parser

MP provides object oriented interface to [XMP data](http://en.wikipedia.org/wiki/Extensible_Metadata_Platform). XMP data can be found in PDF, JPEG, GIF, PNG, and many other formats.
XMP provides an object oriented interface to [XMP data](http://en.wikipedia.org/wiki/Extensible_Metadata_Platform). XMP data can be found in PDF, JPEG, GIF, PNG, and many other formats.

## Supported Formats

Expand Down Expand Up @@ -59,9 +59,12 @@ gem 'exifr', '~> 1.3'
```

## Requirements
* Ruby 2 or Ruby 3
* Nokogiri (1.10 or newer, gem dependency - will be installed automatically)
* EXIFR (1.3 or newer) - optional
* Ruby 2 (supported on >= 2.6, though xmp may work on earlier versions) or Ruby 3
* nokogiri (>= 1.10). The xmp gem depends on this gem. It will be installed automatically.
* On Ruby 2.6, nokogiri 1.13.10 will be installed; nokogiri >= 1.14 require Ruby 2.7.
* On Ruby 2.7, nokogiri 1.15.5 will be installed; nokogiri >= 1.16 require Ruby 3.
* See https://nokogiri.org/CHANGELOG.html for nokogiri support for older or newer Ruby versions.
* exifr (>= 1.3). This gem is optional. If you need it, add it to your Gemfile.

## Development

Expand Down
2 changes: 1 addition & 1 deletion xmp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|

s.extra_rdoc_files = %w(README.md)

s.required_ruby_version = '>= 2.7.0'
s.required_ruby_version = '>= 2.6.0'

s.add_dependency 'nokogiri', '~> 1.0'

Expand Down