qb 0.1.35 → 0.1.36
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 +4 -4
- data/lib/qb/options.rb +1 -4
- data/lib/qb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba8c588f4c5401fbefe1a8000ea8354707269fe6
|
|
4
|
+
data.tar.gz: 5fcac34c7a16b53e92b5db9190edf215cadd8884
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76ca3d2c460501ed7ece33233a38f33e9f0fd70eaee54e1f0cff8c5339b348806d4afd010099b7d933409210c0e54d8dbfb08770ee24b7a7767f608da013533c
|
|
7
|
+
data.tar.gz: cb7bd2957dab55aaabbb49bd996cc3e8b7425ec0f3688c5f5bfe0c7c8c0c8221d047e29b027ebf7c00c4899c5a593f8323f066e112856d144bde970f9867a809
|
data/lib/qb/options.rb
CHANGED
|
@@ -66,10 +66,7 @@ module QB
|
|
|
66
66
|
# create an option
|
|
67
67
|
option = Option.new role, option_meta, include_path
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
# we always require the argument, except in the case of boolean
|
|
71
|
-
# options or options that accept false.
|
|
72
|
-
on_args = [:REQUIRED]
|
|
69
|
+
on_args = []
|
|
73
70
|
|
|
74
71
|
if option.meta['type'] == 'boolean'
|
|
75
72
|
# don't use short names when included (for now)
|
data/lib/qb/version.rb
CHANGED