Skip to content

Commit

Permalink
updated gemspec for better info messages, min-ruby-version requirement
Browse files Browse the repository at this point in the history
updated travis.yml per ManageIQ/optimist#110
  • Loading branch information
nanobowers committed Mar 3, 2020
1 parent 6676537 commit 37aa077
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
17 changes: 9 additions & 8 deletions .travis.yml
@@ -1,13 +1,14 @@
language: ruby
sudo: false
cache: bundler
rvm:
- "2.2"
- "2.3.4"
- "2.5.1"
- "2.6.3"
- "2.7.0"
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
fast_finish: true
# - rvm: jruby-head
# fast_finish: true
8 changes: 5 additions & 3 deletions optimist_xl.gemspec
Expand Up @@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
spec.version = OptimistXL::VERSION
spec.authors = ["William Morgan", "Keenan Brock", "Jason Frey", "Ben Bowers"]
spec.email = "nanobowers@gmail.com"
spec.summary = "OptimistXL is a commandline option parser for Ruby that just gets out of your way."
spec.description = "OptimistXL is a commandline option parser for Ruby that just
gets out of your way. One line of code per option is all you need to write.
spec.summary = "OptimistXL is feature fork of the Optimist commandline option parser."
spec.description = "OptimistXL is feature filled but lightweight commandline option parser.
One line of code per option is all you typically need to write.
For that, you get a nice automatically-generated help page, robust option
parsing, command subcompletion, and sensible defaults for everything you don't
specify. This gem is an enhanced-feature fork of the Optimist gem."
Expand All @@ -29,6 +29,8 @@ specify. This gem is an enhanced-feature fork of the Optimist gem."

spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.2'

spec.add_development_dependency "minitest", "~> 5.4.3"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "chronic"
Expand Down

0 comments on commit 37aa077

Please sign in to comment.