hubbard 0.0.14 → 0.0.15
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/VERSION +1 -1
- data/bin/hubbard +5 -0
- data/hubbard.gemspec +5 -5
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.15
|
data/bin/hubbard
CHANGED
data/hubbard.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{hubbard}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.15"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Matthew Foemmel"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-03-01}
|
|
13
13
|
s.default_executable = %q{hubbard}
|
|
14
14
|
s.description = %q{Hubbard is a command line tool for managing git repositories.}
|
|
15
15
|
s.email = %q{git@foemmel.com}
|
|
@@ -61,9 +61,9 @@ Gem::Specification.new do |s|
|
|
|
61
61
|
s.rubygems_version = %q{1.3.5}
|
|
62
62
|
s.summary = %q{Hubbard is a command line tool for managing git repositories.}
|
|
63
63
|
s.test_files = [
|
|
64
|
-
"spec/
|
|
65
|
-
"spec/
|
|
66
|
-
"spec/
|
|
64
|
+
"spec/yaml_spec.rb",
|
|
65
|
+
"spec/hubbard_spec.rb",
|
|
66
|
+
"spec/spec_helper.rb"
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hubbard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Foemmel
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-
|
|
12
|
+
date: 2010-03-01 00:00:00 -06:00
|
|
13
13
|
default_executable: hubbard
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -96,6 +96,6 @@ signing_key:
|
|
|
96
96
|
specification_version: 3
|
|
97
97
|
summary: Hubbard is a command line tool for managing git repositories.
|
|
98
98
|
test_files:
|
|
99
|
+
- spec/yaml_spec.rb
|
|
99
100
|
- spec/hubbard_spec.rb
|
|
100
101
|
- spec/spec_helper.rb
|
|
101
|
-
- spec/yaml_spec.rb
|