Skip to content

Commit

Permalink
Minimum Ruby version 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Jun 25, 2019
1 parent 6a999a1 commit 81364cf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
language: ruby

rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "jruby-9.1.5.0"
- "ruby-head"

Expand All @@ -23,5 +22,4 @@ matrix:
- rvm: jruby-9.1.5.0

before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
- gem install bundler
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
This project uses [Semantic Versioning 2.0.0](http://semver.org/).


#### master

- CHANGED: Minimum Ruby version 2.3


#### Release 1.2.0

- CHANGED: Updated .ORG parser to the latest response (GH-98, GH-97). [Thanks @talarini]
Expand Down
4 changes: 2 additions & 2 deletions whois-parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Gem::Specification.new do |s|
s.description = 'Whois Parser is a WHOIS parser written in pure Ruby. It can parse and convert responses into easy-to-use Ruby objects.'
s.license = 'MIT'

s.required_ruby_version = ">= 2.0.0"
s.required_ruby_version = ">= 2.3"

s.require_paths = %w( lib )
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extra_rdoc_files = %w( LICENSE.txt .yardopts )

s.add_dependency "whois", ">= 4.0.7"
s.add_dependency "whois", ">= 4.1.0"
s.add_dependency "activesupport", ">= 4"

s.add_development_dependency "rake"
Expand Down

0 comments on commit 81364cf

Please sign in to comment.