jqr-github 0.3.4 → 0.3.4.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.
- data/History.txt +14 -0
- data/Manifest +13 -13
- data/Rakefile +42 -0
- data/github.gemspec +32 -0
- data/lib/commands/commands.rb +15 -2
- data/setup.rb +1551 -0
- data/spec/ui_spec.rb +9 -0
- metadata +19 -22
- data/github-gem.gemspec +0 -26
data/spec/ui_spec.rb
CHANGED
@@ -392,6 +392,15 @@ EOF
|
|
392
392
|
end
|
393
393
|
end
|
394
394
|
|
395
|
+
# -- rebuild-gems --
|
396
|
+
specify "rebuild-gems user repo should request a gem rebuild" do
|
397
|
+
running :'rebuild-gems', "user", "repo" do
|
398
|
+
setup_url_for
|
399
|
+
@command.should_receive(:sh).with('curl http://github.com/user/repo/rebuild_gems"')
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
403
|
+
|
395
404
|
# -- fallthrough --
|
396
405
|
specify "should fall through to actual git commands" do
|
397
406
|
running :commit do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jqr-github
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.4
|
4
|
+
version: 0.3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Wanstrath, Kevin Ballard, Scott Chacon
|
@@ -9,47 +9,46 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
13
|
-
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
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:
|
12
|
+
date: 2009-04-02 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
25
16
|
description: The official `github` command line helper for simplifying your GitHub experience.
|
26
17
|
email: chris@ozmm.org
|
27
18
|
executables:
|
28
|
-
- github
|
29
19
|
- gh
|
20
|
+
- github
|
30
21
|
extensions: []
|
31
22
|
|
32
23
|
extra_rdoc_files:
|
33
|
-
- bin/github
|
34
24
|
- bin/gh
|
35
|
-
-
|
25
|
+
- bin/github
|
26
|
+
- lib/commands/commands.rb
|
27
|
+
- lib/commands/helpers.rb
|
28
|
+
- lib/commands/network.rb
|
36
29
|
- lib/github/command.rb
|
30
|
+
- lib/github/extensions.rb
|
37
31
|
- lib/github/helper.rb
|
38
32
|
- lib/github.rb
|
39
33
|
- LICENSE
|
40
34
|
- README
|
41
35
|
files:
|
36
|
+
- bin/gh
|
42
37
|
- bin/github
|
43
|
-
-
|
38
|
+
- github.gemspec
|
39
|
+
- History.txt
|
44
40
|
- lib/commands/commands.rb
|
45
41
|
- lib/commands/helpers.rb
|
46
|
-
- lib/
|
42
|
+
- lib/commands/network.rb
|
47
43
|
- lib/github/command.rb
|
44
|
+
- lib/github/extensions.rb
|
48
45
|
- lib/github/helper.rb
|
49
46
|
- lib/github.rb
|
50
47
|
- LICENSE
|
51
48
|
- Manifest
|
49
|
+
- Rakefile
|
52
50
|
- README
|
51
|
+
- setup.rb
|
53
52
|
- spec/command_spec.rb
|
54
53
|
- spec/extensions_spec.rb
|
55
54
|
- spec/github_spec.rb
|
@@ -57,8 +56,6 @@ files:
|
|
57
56
|
- spec/spec_helper.rb
|
58
57
|
- spec/ui_spec.rb
|
59
58
|
- spec/windoze_spec.rb
|
60
|
-
- github-gem.gemspec
|
61
|
-
- bin/gh
|
62
59
|
has_rdoc: true
|
63
60
|
homepage: http://github.com/
|
64
61
|
post_install_message:
|
@@ -81,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
78
|
requirements:
|
82
79
|
- - ">="
|
83
80
|
- !ruby/object:Gem::Version
|
84
|
-
version: "
|
81
|
+
version: "1.2"
|
85
82
|
version:
|
86
83
|
requirements: []
|
87
84
|
|
data/github-gem.gemspec
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |s|
|
2
|
-
s.name = "github"
|
3
|
-
s.version = "0.3.4"
|
4
|
-
|
5
|
-
s.specification_version = 2 if s.respond_to? :specification_version=
|
6
|
-
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Chris Wanstrath, Kevin Ballard, Scott Chacon"]
|
9
|
-
s.date = %q{2008-05-18}
|
10
|
-
s.default_executable = %q{gh}
|
11
|
-
s.description = %q{The official `github` command line helper for simplifying your GitHub experience.}
|
12
|
-
s.email = %q{chris@ozmm.org}
|
13
|
-
s.executables = ["github", "gh"]
|
14
|
-
s.extra_rdoc_files = ["bin/github", "bin/gh", "lib/github/extensions.rb", "lib/github/command.rb", "lib/github/helper.rb", "lib/github.rb", "LICENSE", "README"]
|
15
|
-
s.files = ["bin/github", "lib/commands/network.rb", "lib/commands/commands.rb", "lib/commands/helpers.rb", "lib/github/extensions.rb", "lib/github/command.rb", "lib/github/helper.rb", "lib/github.rb", "LICENSE", "Manifest", "README", "spec/command_spec.rb", "spec/extensions_spec.rb", "spec/github_spec.rb", "spec/helper_spec.rb", "spec/spec_helper.rb", "spec/ui_spec.rb", "spec/windoze_spec.rb", "github-gem.gemspec"]
|
16
|
-
s.has_rdoc = true
|
17
|
-
s.homepage = %q{http://github.com/}
|
18
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Github", "--main", "README"]
|
19
|
-
s.require_paths = ["lib"]
|
20
|
-
s.rubyforge_project = %q{github}
|
21
|
-
s.rubygems_version = %q{1.1.1}
|
22
|
-
s.summary = %q{The official `github` command line helper for simplifying your GitHub experience.}
|
23
|
-
|
24
|
-
# s.add_dependency(%q<launchy>, [">= 0"])
|
25
|
-
s.add_dependency('json_pure', [">= 0"])
|
26
|
-
end
|