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

Bump supported ruby versions #406

Merged
merged 1 commit into from Sep 25, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 3 additions & 9 deletions .travis.yml
Expand Up @@ -2,22 +2,16 @@ language: ruby
dist: trusty
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- ruby-head
matrix:
include:
- rvm: jruby
jdk: oraclejdk8
- rvm: jruby-9.1
jdk: openjdk7
- rvm: jruby-9.2
jdk: openjdk8
- rvm: jruby-head
jdk: oraclejdk8
jdk: openjdk8
- rvm: rbx-4
allow_failures:
- rvm: ruby-head
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ gem 'zip-zip' # will load compatibility for old rubyzip API.

## Requirements

- Ruby 1.9.2 or greater
- Ruby 2.4 or greater (for rubyzip 2.0; use 1.x for older rubies)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion rubyzip.gemspec
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
'source_code_uri' => "https://github.com/rubyzip/rubyzip/tree/v#{s.version}",
'wiki_uri' => 'https://github.com/rubyzip/rubyzip/wiki'
}
s.required_ruby_version = '>= 1.9.2'
s.required_ruby_version = '>= 2.4'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'minitest', '~> 5.4'
Expand Down