greenhouse 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/lib/greenhouse/tasks/project_task.rb +3 -1
- data/lib/greenhouse/version.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6027cc41bf0c1a926c85278dd081e434c06fae2d
|
|
4
|
+
data.tar.gz: c5b70d6f770987c6b2693e082914fecf30af4f43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c57213c213b37f6792878f8b2c137c99306e7fb95e4ef5329ad28185d38bfa7e16046ab8d3b92e506c2747879bd9ccaeeda015bd16747c000e0fa71b05f112b
|
|
7
|
+
data.tar.gz: f6f746e1e7ac782bb6dd55f999795e9aa56f689078aa9227a27f77c3261ea222c7d703f67898c77c8793525dbcf99b5bbabb12d9b72cc92a0915a382349113ed
|
|
@@ -283,7 +283,9 @@ module Greenhouse
|
|
|
283
283
|
end
|
|
284
284
|
|
|
285
285
|
print "Pushing local branches..."
|
|
286
|
-
@project.repository.
|
|
286
|
+
@project.repository.branches.local.each do |branch|
|
|
287
|
+
@project.repository.push('origin', branch.name)
|
|
288
|
+
end
|
|
287
289
|
puts "\e[32mSuccess.\e[0m"
|
|
288
290
|
return true
|
|
289
291
|
end
|
data/lib/greenhouse/version.rb
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
module Greenhouse
|
|
2
|
-
VERSION = "0.0.
|
|
2
|
+
VERSION = "0.0.5"
|
|
3
3
|
end
|
|
4
4
|
|
|
5
5
|
__END__
|
|
6
|
+
0.0.5:
|
|
7
|
+
* Fix for pushing projects by ensuring each branch is pushed individually
|
|
8
|
+
|
|
6
9
|
0.0.4:
|
|
7
10
|
* Fixed bug with new not referencing the active binary
|
|
8
11
|
* Fixed a couple off by one errors in resource files
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: greenhouse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Rebec
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-05-
|
|
11
|
+
date: 2013-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|