benzo 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.travis.yml +1 -3
- data/README.md +3 -3
- data/benzo.gemspec +1 -1
- data/lib/benzo/version.rb +1 -1
- metadata +9 -14
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3c079d8cd746ab437f3f6c569768d5b7e41568bb
|
4
|
+
data.tar.gz: 9d0a1f8ff9aa99eafeb66867cf0606271c68a02f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f4f8fe3c105dfe1ae65e17ebceae58d762c189a15ace3999df54193a5384175cf10ae48f2a1c54d99ea4a7a71646cdbbc7bed01f25ed25bacc18ab37d6184f8a
|
7
|
+
data.tar.gz: 98d22cb5cffc334b312ba0716024be1ed9225ef30eed58d4e285ba8cf369ea754a6ce0b58fd5ca9e10eb065fb62c1f34a408dfd190bd7b039d8dcf9cff31d8f7
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
*Take the edge off when doing (command) lines.*
|
4
4
|
|
5
|
-
**This is the unstable/2.0.0 branch. Docs may be incomplete or completely incorrect.
|
6
|
-
This is your warning.**
|
7
|
-
|
8
5
|
Wrapping [Cocaine](https://github.com/thoughtbot/cocaine), this library will
|
9
6
|
greatly simplify building complex and conditional commandline arguments.
|
10
7
|
|
11
8
|
This is especially useful when creating wrappers for other commandline tools.
|
12
9
|
|
10
|
+
Benzo 2.x is compatible with the latest version of Cocaine, but due to the way
|
11
|
+
that it works, it requires Ruby 1.9.x unless you use the OrderedHash library.
|
12
|
+
|
13
13
|
## Installation
|
14
14
|
|
15
15
|
Add this line to your application's Gemfile:
|
data/benzo.gemspec
CHANGED
data/lib/benzo/version.rb
CHANGED
metadata
CHANGED
@@ -1,32 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: benzo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
5
|
-
prerelease:
|
4
|
+
version: 2.1.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Spike Grobstein
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-12-22 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: cocaine
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
19
|
+
version: 0.5.8
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
26
|
+
version: 0.5.8
|
30
27
|
description: Take the edge off when doing (command) lines.
|
31
28
|
email:
|
32
29
|
- me@spike.cx
|
@@ -48,29 +45,27 @@ files:
|
|
48
45
|
- spec/spec_helper.rb
|
49
46
|
homepage: https://github.com/spikegrobstein/benzo
|
50
47
|
licenses: []
|
48
|
+
metadata: {}
|
51
49
|
post_install_message:
|
52
50
|
rdoc_options: []
|
53
51
|
require_paths:
|
54
52
|
- lib
|
55
53
|
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
-
none: false
|
57
54
|
requirements:
|
58
|
-
- -
|
55
|
+
- - '>='
|
59
56
|
- !ruby/object:Gem::Version
|
60
57
|
version: '0'
|
61
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
-
none: false
|
63
59
|
requirements:
|
64
|
-
- -
|
60
|
+
- - '>='
|
65
61
|
- !ruby/object:Gem::Version
|
66
62
|
version: '0'
|
67
63
|
requirements: []
|
68
64
|
rubyforge_project:
|
69
|
-
rubygems_version:
|
65
|
+
rubygems_version: 2.0.14
|
70
66
|
signing_key:
|
71
|
-
specification_version:
|
67
|
+
specification_version: 4
|
72
68
|
summary: A robust mapper for complex commandline calls using cocaine.
|
73
69
|
test_files:
|
74
70
|
- spec/benzo_spec.rb
|
75
71
|
- spec/spec_helper.rb
|
76
|
-
has_rdoc:
|