jqr-github 0.3.4
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.
- data/LICENSE +18 -0
- data/Manifest +23 -0
- data/README +164 -0
- data/bin/gh +8 -0
- data/bin/github +8 -0
- data/github-gem.gemspec +26 -0
- data/lib/commands/commands.rb +205 -0
- data/lib/commands/helpers.rb +397 -0
- data/lib/commands/network.rb +113 -0
- data/lib/github/command.rb +129 -0
- data/lib/github/extensions.rb +39 -0
- data/lib/github/helper.rb +4 -0
- data/lib/github.rb +173 -0
- data/spec/command_spec.rb +82 -0
- data/spec/extensions_spec.rb +36 -0
- data/spec/github_spec.rb +85 -0
- data/spec/helper_spec.rb +280 -0
- data/spec/spec_helper.rb +138 -0
- data/spec/ui_spec.rb +604 -0
- data/spec/windoze_spec.rb +36 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jqr-github
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Wanstrath, Kevin Ballard, Scott Chacon
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-05-18 00:00:00 -07:00
|
13
|
+
default_executable: gh
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: json_pure
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: The official `github` command line helper for simplifying your GitHub experience.
|
26
|
+
email: chris@ozmm.org
|
27
|
+
executables:
|
28
|
+
- github
|
29
|
+
- gh
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files:
|
33
|
+
- bin/github
|
34
|
+
- bin/gh
|
35
|
+
- lib/github/extensions.rb
|
36
|
+
- lib/github/command.rb
|
37
|
+
- lib/github/helper.rb
|
38
|
+
- lib/github.rb
|
39
|
+
- LICENSE
|
40
|
+
- README
|
41
|
+
files:
|
42
|
+
- bin/github
|
43
|
+
- lib/commands/network.rb
|
44
|
+
- lib/commands/commands.rb
|
45
|
+
- lib/commands/helpers.rb
|
46
|
+
- lib/github/extensions.rb
|
47
|
+
- lib/github/command.rb
|
48
|
+
- lib/github/helper.rb
|
49
|
+
- lib/github.rb
|
50
|
+
- LICENSE
|
51
|
+
- Manifest
|
52
|
+
- README
|
53
|
+
- spec/command_spec.rb
|
54
|
+
- spec/extensions_spec.rb
|
55
|
+
- spec/github_spec.rb
|
56
|
+
- spec/helper_spec.rb
|
57
|
+
- spec/spec_helper.rb
|
58
|
+
- spec/ui_spec.rb
|
59
|
+
- spec/windoze_spec.rb
|
60
|
+
- github-gem.gemspec
|
61
|
+
- bin/gh
|
62
|
+
has_rdoc: true
|
63
|
+
homepage: http://github.com/
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options:
|
66
|
+
- --line-numbers
|
67
|
+
- --inline-source
|
68
|
+
- --title
|
69
|
+
- Github
|
70
|
+
- --main
|
71
|
+
- README
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: "0"
|
85
|
+
version:
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project: github
|
89
|
+
rubygems_version: 1.2.0
|
90
|
+
signing_key:
|
91
|
+
specification_version: 2
|
92
|
+
summary: The official `github` command line helper for simplifying your GitHub experience.
|
93
|
+
test_files: []
|
94
|
+
|