dreck 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9668c3e8314c8998e12acbf57edbcbdd24131b96
4
- data.tar.gz: e0df1442d96e40ff4a6c6ed69dfdc2ebd3dbeb57
3
+ metadata.gz: 76f82aab82fd006ce53aa4b41917dd7c7bbe91f4
4
+ data.tar.gz: c7c4d8928fecd566bc46dabc8016fcff6ba36397
5
5
  SHA512:
6
- metadata.gz: f02e2a2ad89d1b13822a78a28802572ac750a1a750922d0ba4c00a3a041027bd6cef0ed98f25b360f6a77acb70a610dcf85f402d19aa218831e5d5f20fd08b21
7
- data.tar.gz: 74313791854a9b9535823bca0967adf04601e7d5ab584e1f437144e6b1109347f5e9b863e37f7152644239fe8378f8cf8852ce80a8f4fc96260945dffc53860a
6
+ metadata.gz: 6b682f13bdbadbe739f52c4ec155a616fa8570d8d0ecc2e203ebf53912746325199ceba5234057495e4cb98c56e4e3a3907b8a8cfda4f317fab49a064e5e0008
7
+ data.tar.gz: ad5aedb658c0375d68145fe209253d2b4f4a1d4c63154e93abad0422936286310d2784553d7b7fbf063746d68f10f6dfc5512df313a032ef59d77cccd8cdd6a2
data/lib/dreck.rb CHANGED
@@ -5,7 +5,7 @@ require_relative "dreck/result"
5
5
  # The primary namespace for {Dreck}.
6
6
  module Dreck
7
7
  # {Dreck}'s current version.
8
- VERSION = "0.0.5"
8
+ VERSION = "0.0.6"
9
9
 
10
10
  # Parse the given arguments and produce a result.
11
11
  # @param args [Array<String>] the arguments to parse
@@ -13,8 +13,9 @@ module Dreck
13
13
  # @param greedy [Boolean] whether or not a list that absorbs the tail is present
14
14
  def initialize(actual, expected, greedy = false)
15
15
  nmany = actual > expected ? "too few" : "too many"
16
- exp = greedy ? ">#{actual}" : expected
17
- super "#{nmany} arguments given (#{actual}, expected #{exp})"
16
+ act = greedy ? expected : actual
17
+ exp = greedy ? ">=#{actual}" : expected
18
+ super "#{nmany} arguments given (#{act}, expected #{exp})"
18
19
  end
19
20
  end
20
21
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dreck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Woodruff