git-hub 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.
- data/.gitignore +4 -0
- data/README.md +2 -1
- data/Rakefile +1 -0
- data/lib/hub/version.rb +1 -1
- data/test/hub_test.rb +3 -1
- metadata +2 -1
data/.gitignore
ADDED
data/README.md
CHANGED
|
@@ -172,7 +172,8 @@ Meta
|
|
|
172
172
|
* Home: <http://github.com/defunkt/hub>
|
|
173
173
|
* Bugs: <http://github.com/defunkt/hub/issues>
|
|
174
174
|
* List: <http://groups.google.com/group/github>
|
|
175
|
-
*
|
|
175
|
+
* Test: <http://runcoderun.com/defunkt/hub>
|
|
176
|
+
* Gems: <http://gemcutter.org/gems/git-hub>
|
|
176
177
|
|
|
177
178
|
|
|
178
179
|
Author
|
data/Rakefile
CHANGED
data/lib/hub/version.rb
CHANGED
data/test/hub_test.rb
CHANGED
|
@@ -85,7 +85,9 @@ class HubTest < Test::Unit::TestCase
|
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
def test_version
|
|
88
|
-
|
|
88
|
+
out = hub('--version')
|
|
89
|
+
assert_includes "git version 1.6", out
|
|
90
|
+
assert_includes "hub version 0.1", out
|
|
89
91
|
end
|
|
90
92
|
|
|
91
93
|
def test_help
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-hub
|
|
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
|
- Chris Wanstrath
|
|
@@ -23,6 +23,7 @@ extra_rdoc_files:
|
|
|
23
23
|
- LICENSE
|
|
24
24
|
- README.md
|
|
25
25
|
files:
|
|
26
|
+
- .gitignore
|
|
26
27
|
- .kick
|
|
27
28
|
- LICENSE
|
|
28
29
|
- README.md
|