capistrano-campout 1.1.1 → 1.1.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/CHANGELOG.md +8 -0
- data/lib/capistrano-campout/version.rb +1 -1
- data/lib/capistrano-campout.rb +9 -9
- metadata +7 -7
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 1.1.2 (Apr 10, 2012)
|
|
2
|
+
|
|
3
|
+
We need to be in the glorious prescence of a capistrano instance to load capistrano things. Else rake tasks go boom.
|
|
4
|
+
|
|
5
|
+
## 1.1.1 (Apr 10, 2012)
|
|
6
|
+
|
|
7
|
+
Forgot template changes to remove ssl_verify
|
|
8
|
+
|
|
1
9
|
## 1.1.0 (Apr 10, 2012)
|
|
2
10
|
|
|
3
11
|
Switched to [broach](https://github.com/Manfred/broach) instead of [tinder](https://github.com/collectiveidea/tinder) due to Tinder's reliance on ActiveSupport and the side-effect issues of ActiveSupport with capistrano (See [Issue #169](https://github.com/capistrano/capistrano/issues/169), [Issue #170](https://github.com/capistrano/capistrano/issues/170), and [Pull Request #175](https://github.com/capistrano/capistrano/pull/175) )
|
data/lib/capistrano-campout.rb
CHANGED
|
@@ -26,14 +26,14 @@ end
|
|
|
26
26
|
|
|
27
27
|
if Capistrano::Configuration.instance
|
|
28
28
|
Capistrano::Configuration.instance.extend(Capistrano::Campout)
|
|
29
|
-
end
|
|
30
29
|
|
|
31
|
-
Capistrano::Configuration.instance(:must_exist).load do
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
Capistrano::Configuration.instance(:must_exist).load do
|
|
31
|
+
if(campout_core.settings.valid?)
|
|
32
|
+
# load the recipes
|
|
33
|
+
Dir.glob(File.join(File.dirname(__FILE__), '/capistrano-campout/recipes/*.rb')).sort.each { |f| load f }
|
|
34
|
+
before "deploy", "campout:pre_announce"
|
|
35
|
+
else
|
|
36
|
+
logger.info "The campout configuration is not valid. Make sure that the campfire settings are specified in the campout configuration file(s)"
|
|
37
|
+
end
|
|
38
38
|
end
|
|
39
|
-
end
|
|
39
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-campout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-04-10 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70096047971620 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: '2.11'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70096047971620
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: broach
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &70096047971080 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: '0.2'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *70096047971080
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: grit
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &70096047970600 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
41
41
|
- - ! '>='
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '2.4'
|
|
44
44
|
type: :runtime
|
|
45
45
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *70096047970600
|
|
47
47
|
description: ! " Capistrano::Campout is a gem extension to capistrano to post/speak
|
|
48
48
|
messages and paste logs from a capistrano deployment \n to a campfire room. Settings
|
|
49
49
|
are configurable using ERB in a \"config/campout.yml\" or \"config/campout.local.yml\"
|