summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2017-05-02 14:04:09 +0100
committerLee Jarvis <leejarvis@fastmail.com>2017-05-02 14:06:51 +0100
commit187e207303d40ed8f5c6d6c50441ed0ad1d6b373 (patch)
tree34f8c97283e2798c468d23a6a1571c4047213785
parent725ab19327d548d931d8711298fdd5612d4d779e (diff)
downloadslop-187e207303d40ed8f5c6d6c50441ed0ad1d6b373.tar.gz
Fix Ruby 2.0.0 broken `private def ...`
and re-add to the CI
-rw-r--r--.travis.yml1
-rw-r--r--lib/slop/parser.rb2
2 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index bbdbfd9..9ed6c7f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,7 @@ cache: bundler
before_install:
- gem install bundler
rvm:
+ - 2.0.0
- 2.1
- 2.2
- 2.3.4
diff --git a/lib/slop/parser.rb b/lib/slop/parser.rb
index 2b20d36..7d8ad46 100644
--- a/lib/slop/parser.rb
+++ b/lib/slop/parser.rb
@@ -145,7 +145,7 @@ module Slop
options.find { |o| o.flags.include?(flag) }
end
- private def partition(strings)
+ def partition(strings)
if strings.include?("--")
partition_idx = strings.index("--")
[strings[0..partition_idx-1], strings[partition_idx+1..-1]]