github_cli 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +4 -1
- data/github_cli.gemspec +3 -1
- data/lib/github_cli/dsl.rb +7 -3
- data/lib/github_cli/thor_ext.rb +1 -3
- data/lib/github_cli/vendor/thor/actions/create_file.rb +105 -0
- data/lib/github_cli/vendor/thor/actions/create_link.rb +57 -0
- data/lib/github_cli/vendor/thor/actions/directory.rb +98 -0
- data/lib/github_cli/vendor/thor/actions/empty_directory.rb +153 -0
- data/lib/github_cli/vendor/thor/actions/file_manipulation.rb +308 -0
- data/lib/github_cli/vendor/thor/actions/inject_into_file.rb +109 -0
- data/lib/github_cli/vendor/thor/actions.rb +318 -0
- data/lib/github_cli/vendor/thor/base.rb +641 -0
- data/lib/github_cli/vendor/thor/core_ext/dir_escape.rb +0 -0
- data/lib/github_cli/vendor/thor/core_ext/file_binary_read.rb +9 -0
- data/lib/github_cli/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
- data/lib/github_cli/vendor/thor/core_ext/ordered_hash.rb +100 -0
- data/lib/github_cli/vendor/thor/empty.txt +0 -0
- data/lib/github_cli/vendor/thor/error.rb +35 -0
- data/lib/github_cli/vendor/thor/group.rb +285 -0
- data/lib/github_cli/vendor/thor/invocation.rb +170 -0
- data/lib/github_cli/vendor/thor/parser/argument.rb +74 -0
- data/lib/github_cli/vendor/thor/parser/arguments.rb +171 -0
- data/lib/github_cli/vendor/thor/parser/option.rb +121 -0
- data/lib/github_cli/vendor/thor/parser/options.rb +178 -0
- data/lib/github_cli/vendor/thor/parser.rb +4 -0
- data/lib/github_cli/vendor/thor/rake_compat.rb +71 -0
- data/lib/github_cli/vendor/thor/runner.rb +321 -0
- data/lib/github_cli/vendor/thor/shell/basic.rb +389 -0
- data/lib/github_cli/vendor/thor/shell/color.rb +144 -0
- data/lib/github_cli/vendor/thor/shell/html.rb +123 -0
- data/lib/github_cli/vendor/thor/shell.rb +88 -0
- data/lib/github_cli/vendor/thor/task.rb +132 -0
- data/lib/github_cli/vendor/thor/util.rb +266 -0
- data/lib/github_cli/vendor/thor/version.rb +3 -0
- data/lib/github_cli/vendor/thor.rb +379 -0
- data/lib/github_cli/vendor.rb +7 -5
- data/lib/github_cli/version.rb +3 -1
- metadata +45 -22
- data/bin/ghc +0 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: github_api
|
16
|
-
requirement: &
|
16
|
+
requirement: &2153158300 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0.6'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2153158300
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &2153157680 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2153157680
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: aruba
|
38
|
-
requirement: &
|
38
|
+
requirement: &2153156940 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2153156940
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rake
|
49
|
-
requirement: &
|
49
|
+
requirement: &2153156320 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *2153156320
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: communist
|
60
|
-
requirement: &
|
60
|
+
requirement: &2153155500 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *2153155500
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: ronn
|
71
|
-
requirement: &
|
71
|
+
requirement: &2153154540 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ! '>='
|
@@ -76,13 +76,12 @@ dependencies:
|
|
76
76
|
version: '0'
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *2153154540
|
80
80
|
description: CLI-based access to GitHub API v3
|
81
81
|
email:
|
82
82
|
- ''
|
83
83
|
executables:
|
84
84
|
- gcli
|
85
|
-
- ghc
|
86
85
|
extensions: []
|
87
86
|
extra_rdoc_files: []
|
88
87
|
files:
|
@@ -97,7 +96,6 @@ files:
|
|
97
96
|
- README.md
|
98
97
|
- Rakefile
|
99
98
|
- bin/gcli
|
100
|
-
- bin/ghc
|
101
99
|
- features/blob.feature
|
102
100
|
- features/collaborator.feature
|
103
101
|
- features/commit.feature
|
@@ -217,6 +215,37 @@ files:
|
|
217
215
|
- lib/github_cli/ui.rb
|
218
216
|
- lib/github_cli/util.rb
|
219
217
|
- lib/github_cli/vendor.rb
|
218
|
+
- lib/github_cli/vendor/thor.rb
|
219
|
+
- lib/github_cli/vendor/thor/actions.rb
|
220
|
+
- lib/github_cli/vendor/thor/actions/create_file.rb
|
221
|
+
- lib/github_cli/vendor/thor/actions/create_link.rb
|
222
|
+
- lib/github_cli/vendor/thor/actions/directory.rb
|
223
|
+
- lib/github_cli/vendor/thor/actions/empty_directory.rb
|
224
|
+
- lib/github_cli/vendor/thor/actions/file_manipulation.rb
|
225
|
+
- lib/github_cli/vendor/thor/actions/inject_into_file.rb
|
226
|
+
- lib/github_cli/vendor/thor/base.rb
|
227
|
+
- lib/github_cli/vendor/thor/core_ext/dir_escape.rb
|
228
|
+
- lib/github_cli/vendor/thor/core_ext/file_binary_read.rb
|
229
|
+
- lib/github_cli/vendor/thor/core_ext/hash_with_indifferent_access.rb
|
230
|
+
- lib/github_cli/vendor/thor/core_ext/ordered_hash.rb
|
231
|
+
- lib/github_cli/vendor/thor/empty.txt
|
232
|
+
- lib/github_cli/vendor/thor/error.rb
|
233
|
+
- lib/github_cli/vendor/thor/group.rb
|
234
|
+
- lib/github_cli/vendor/thor/invocation.rb
|
235
|
+
- lib/github_cli/vendor/thor/parser.rb
|
236
|
+
- lib/github_cli/vendor/thor/parser/argument.rb
|
237
|
+
- lib/github_cli/vendor/thor/parser/arguments.rb
|
238
|
+
- lib/github_cli/vendor/thor/parser/option.rb
|
239
|
+
- lib/github_cli/vendor/thor/parser/options.rb
|
240
|
+
- lib/github_cli/vendor/thor/rake_compat.rb
|
241
|
+
- lib/github_cli/vendor/thor/runner.rb
|
242
|
+
- lib/github_cli/vendor/thor/shell.rb
|
243
|
+
- lib/github_cli/vendor/thor/shell/basic.rb
|
244
|
+
- lib/github_cli/vendor/thor/shell/color.rb
|
245
|
+
- lib/github_cli/vendor/thor/shell/html.rb
|
246
|
+
- lib/github_cli/vendor/thor/task.rb
|
247
|
+
- lib/github_cli/vendor/thor/util.rb
|
248
|
+
- lib/github_cli/vendor/thor/version.rb
|
220
249
|
- lib/github_cli/version.rb
|
221
250
|
- man/gcli-config.1.ronn
|
222
251
|
- man/gcli-repo.1.ronn
|
@@ -247,18 +276,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
247
276
|
- - ! '>='
|
248
277
|
- !ruby/object:Gem::Version
|
249
278
|
version: '0'
|
250
|
-
segments:
|
251
|
-
- 0
|
252
|
-
hash: 183483969768155757
|
253
279
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
254
280
|
none: false
|
255
281
|
requirements:
|
256
282
|
- - ! '>='
|
257
283
|
- !ruby/object:Gem::Version
|
258
284
|
version: '0'
|
259
|
-
segments:
|
260
|
-
- 0
|
261
|
-
hash: 183483969768155757
|
262
285
|
requirements: []
|
263
286
|
rubyforge_project:
|
264
287
|
rubygems_version: 1.8.10
|
data/bin/ghc
DELETED