recipiez 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/recipiez/version.rb +1 -1
- data/recipes/campfire.rb +2 -2
- metadata +2 -2
data/lib/recipiez/version.rb
CHANGED
data/recipes/campfire.rb
CHANGED
@@ -11,9 +11,9 @@ Capistrano::Configuration.instance(true).load do
|
|
11
11
|
announcement = "#{announced_deployer} has deployed #{application} to #{announced_stage}"
|
12
12
|
campfire_room.speak announcement
|
13
13
|
begin
|
14
|
-
command = %(git log --pretty=format:"* #{"[%h, %an] %s"}" #{previous_revision}..#{
|
14
|
+
command = %(git log --pretty=format:"* #{"[%h, %an] %s"}" #{previous_revision}..#{latest_revision})
|
15
15
|
puts command
|
16
|
-
rev_log = %x( git log --pretty=format:"* #{"[%h, %an] %s"}" #{previous_revision}..#{
|
16
|
+
rev_log = %x( git log --pretty=format:"* #{"[%h, %an] %s"}" #{previous_revision}..#{latest_revision} )
|
17
17
|
campfire_room.paste rev_log
|
18
18
|
rescue Faraday::Error::ParsingError
|
19
19
|
# FIXME deal with crazy color output instead of rescuing
|