Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [3.0, 3.1, 3.2, 3.3, 3.4]
ruby: [3.2, 3.3, 3.4]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions cfpropertylist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ Gem::Specification.new do |s|
#s.autorequire = "name"
#s.test_files = FileList["{test}/**/*test.rb"].to_a
s.extra_rdoc_files = ["README.rdoc"]
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
s.add_runtime_dependency("rexml") # no longer bundled with Ruby 3
end

# Some gems will no longer bundled with Ruby >= 3.4
if Gem::Version::new(RUBY_VERSION) >= Gem::Version::new('3.3.0')
s.add_runtime_dependency("nkf")
s.add_runtime_dependency("base64")
end
s.required_ruby_version = Gem::Requirement.new(">= 3.2")

# no longer bundled with Ruby 3
s.add_runtime_dependency("rexml")

# no longer bundled with Ruby >= 3.4
s.add_runtime_dependency("nkf")
s.add_runtime_dependency("base64")

s.add_development_dependency("libxml-ruby")
s.add_development_dependency("minitest")
Expand Down