greenhouse 0.0.8 → 0.0.9
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 +0 -3
- data/lib/greenhouse/version.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fce2d1b9935a0e274bd3fb71dad2caabc941711
|
|
4
|
+
data.tar.gz: bbac9793912cc2c3bb352fc0c7625b1c1218b2b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb6088d05f0bc0718ee9782247426eeaeef9c7dc18c348e58e54c773da4894d8c3d31835a37014599bb018a17df4ddf2ce234208890e5e22b42a299140b0b2c4
|
|
7
|
+
data.tar.gz: f060d28c108e25fcf2dec6cab6e05d21c48b9fd8882190c4629fdcfbfc261014dfa68165b98d43329d0b66d1084ed34e1025093363bb0f30c2fdce7e93df9025
|
|
@@ -16,13 +16,10 @@ module Greenhouse
|
|
|
16
16
|
|
|
17
17
|
def bundle(cmd='install')
|
|
18
18
|
puts "Running Bundler for #{@project.title.cyan}..."
|
|
19
|
-
raise "hi"
|
|
20
19
|
@project.bundle(cmd)
|
|
21
20
|
true
|
|
22
21
|
rescue Exception => e
|
|
23
22
|
puts "Error running Bundler for #{@project.title.cyan}".red
|
|
24
|
-
puts "#{e.class.name}: #{e.message}"
|
|
25
|
-
puts e.backtrace
|
|
26
23
|
# TODO? prompt to continue?
|
|
27
24
|
false
|
|
28
25
|
end
|
data/lib/greenhouse/version.rb
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
module Greenhouse
|
|
2
|
-
VERSION = "0.0.
|
|
2
|
+
VERSION = "0.0.9"
|
|
3
3
|
end
|
|
4
4
|
|
|
5
5
|
__END__
|
|
6
|
+
0.0.9:
|
|
7
|
+
* Removing a really stupid debug raise call that got missed in the last release (need to write specs!!)
|
|
8
|
+
|
|
6
9
|
0.0.8:
|
|
7
10
|
* Fix for git failures when remote branches don't yet exist
|
|
8
11
|
* Printing untracked remote branches in status
|