sickle 0.1.0 → 0.1.1
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/.travis.yml +12 -0
- data/README.md +6 -1
- data/lib/sickle.rb +1 -1
- data/lib/sickle/version.rb +1 -1
- data/sickle.gemspec +2 -2
- data/spec/{runner_spec.rb → main_spec.rb} +6 -1
- data/spec/test_app.rb +5 -0
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c06036c890b687b9b31db7c53c1257557f3b17ac
|
4
|
+
data.tar.gz: 54b6d5568832346a90feef14ee5503123ed8a7a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0531a520789a8092b9a7d191fd0599addef42b488504c38a2767223559d3d9078239176206bf62c906bfdd427a247d425de8e7f82f2c6104708129d3fbb9f5
|
7
|
+
data.tar.gz: c0e54de12d2a377ea44122a568afc7d7256fa73caa6c85631c3648758572313a2cd6fbed88b69f39d08449f6e48335e55788d3278e3435e69f66b5d7c3e2216e
|
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
+
[](https://codeclimate.com/github/teamon/sickle)
|
2
|
+
[](https://travis-ci.org/teamon/sickle)
|
3
|
+
[](https://rubygems.org/gems/sickle)
|
4
|
+
[](https://coveralls.io/r/teamon/sickle)
|
5
|
+
|
1
6
|
# Sickle
|
2
7
|
|
3
8
|
## Description
|
4
9
|
|
5
|
-
Sickle is dead simple library for building complex command line tools.
|
10
|
+
Sickle is dead simple library for building complex command line tools. A lot of ideas and examples were inspired by [thor](https://github.com/wycats/thor).
|
6
11
|
|
7
12
|
#### Features:
|
8
13
|
|
data/lib/sickle.rb
CHANGED
data/lib/sickle/version.rb
CHANGED
data/sickle.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Sickle::VERSION
|
9
9
|
spec.authors = ["Tymon Tobolski"]
|
10
10
|
spec.email = ["i@teamon.eu"]
|
11
|
-
spec.description = %q{
|
12
|
-
spec.summary = %q{
|
11
|
+
spec.description = %q{Sickle is dead simple library for building complex command line tools.}
|
12
|
+
spec.summary = %q{Sickle is dead simple library for building complex command line tools.}
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
@@ -12,7 +12,7 @@ describe Sickle do
|
|
12
12
|
|
13
13
|
it "list of commands" do
|
14
14
|
App.__commands.keys.must_equal(
|
15
|
-
%w(task1 task2 conflict sub:sub1 sub:conflict other:other1 other:conflict nosub))
|
15
|
+
%w(help task1 task2 conflict test_option sub:sub1 sub:conflict other:other1 other:conflict nosub))
|
16
16
|
end
|
17
17
|
|
18
18
|
it "correct commands descriptions" do
|
@@ -64,5 +64,10 @@ describe Sickle do
|
|
64
64
|
App.run(%w(sub:conflict)).must_equal ["sub1:conflict"]
|
65
65
|
App.run(%w(other:conflict)).must_equal ["other1:conflict"]
|
66
66
|
end
|
67
|
+
|
68
|
+
it "option with nil default" do
|
69
|
+
App.run(%w(test_option)).must_equal ["test_option", nil]
|
70
|
+
App.run(%w(test_option --null foo)).must_equal ["test_option", "foo"]
|
71
|
+
end
|
67
72
|
end
|
68
73
|
end
|
data/spec/test_app.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sickle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tymon Tobolski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-03-
|
11
|
+
date: 2013-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description:
|
69
|
+
description: Sickle is dead simple library for building complex command line tools.
|
70
70
|
email:
|
71
71
|
- i@teamon.eu
|
72
72
|
executables: []
|
@@ -74,6 +74,7 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- .gitignore
|
77
|
+
- .travis.yml
|
77
78
|
- Gemfile
|
78
79
|
- LICENSE.txt
|
79
80
|
- README.md
|
@@ -81,7 +82,7 @@ files:
|
|
81
82
|
- lib/sickle.rb
|
82
83
|
- lib/sickle/version.rb
|
83
84
|
- sickle.gemspec
|
84
|
-
- spec/
|
85
|
+
- spec/main_spec.rb
|
85
86
|
- spec/test_app.rb
|
86
87
|
- spec/test_run.rb
|
87
88
|
homepage: ''
|
@@ -107,8 +108,8 @@ rubyforge_project:
|
|
107
108
|
rubygems_version: 2.0.0
|
108
109
|
signing_key:
|
109
110
|
specification_version: 4
|
110
|
-
summary:
|
111
|
+
summary: Sickle is dead simple library for building complex command line tools.
|
111
112
|
test_files:
|
112
|
-
- spec/
|
113
|
+
- spec/main_spec.rb
|
113
114
|
- spec/test_app.rb
|
114
115
|
- spec/test_run.rb
|