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.
@@ -0,0 +1,4 @@
1
+ pkg/
2
+ *.swp
3
+ *~
4
+ *.gemspec
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
- * Gems: <http://gemcutter.org/gems/hub>
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
@@ -38,6 +38,7 @@ begin
38
38
  gemspec.version = Hub::Version
39
39
  gemspec.authors = ["Chris Wanstrath"]
40
40
  gemspec.email = "chris@ozmm.org"
41
+ gemspec.executables = ["hub"]
41
42
  gemspec.post_install_message = <<-message
42
43
 
43
44
  ------------------------------------------------------------
@@ -1,3 +1,3 @@
1
1
  module Hub
2
- Version = '0.1.0'
2
+ Version = '0.1.1'
3
3
  end
@@ -85,7 +85,9 @@ class HubTest < Test::Unit::TestCase
85
85
  end
86
86
 
87
87
  def test_version
88
- assert_equal "git version 1.6.4.2\nhub version 0.1.0\n", hub('--version')
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.0
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