capistrano-mountaintop 1.0.1 → 1.0.2
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/Rakefile +1 -1
- data/capistrano-mountaintop.gemspec +2 -2
- data/lib/capistrano/mountaintop.rb +6 -1
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
18
18
|
gem.email = "josh@technicalpickles.com"
|
|
19
19
|
gem.homepage = "http://github.com/technicalpickles/capistrano-mountaintop"
|
|
20
20
|
gem.authors = ["Joshua Nichols"]
|
|
21
|
-
gem.version = "1.0.
|
|
21
|
+
gem.version = "1.0.2"
|
|
22
22
|
end
|
|
23
23
|
Jeweler::RubygemsDotOrgTasks.new
|
|
24
24
|
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{capistrano-mountaintop}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Joshua Nichols"]
|
|
12
|
-
s.date = %q{2011-04-
|
|
12
|
+
s.date = %q{2011-04-08}
|
|
13
13
|
s.description = %q{Announce capistrano deploys from a mountaintop with campfire}
|
|
14
14
|
s.email = %q{josh@technicalpickles.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -28,7 +28,12 @@ module Capistrano
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
task :finished do
|
|
31
|
-
|
|
31
|
+
begin
|
|
32
|
+
campfire_room.paste fetch(:full_log)
|
|
33
|
+
rescue Faraday::Error::ParsingError
|
|
34
|
+
# nah, it's cool. happens particularly when color is involved
|
|
35
|
+
# TODO sanitze full_log instead
|
|
36
|
+
end
|
|
32
37
|
end
|
|
33
38
|
end
|
|
34
39
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-mountaintop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Joshua Nichols
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-04-
|
|
18
|
+
date: 2011-04-08 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|