capistrano-notification 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/capistrano-notification.rb +88 -0
- data/spec/capistrano-notification_spec.rb +7 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- metadata +122 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Keita Urashima
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= capistrano-notification
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Keita Urashima. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = 'capistrano-notification'
|
8
|
+
gem.summary = %Q{Capistrano deployment notification}
|
9
|
+
gem.description = %Q{Capistrano deployment notification}
|
10
|
+
gem.email = 'ursm@ursm.jp'
|
11
|
+
gem.homepage = 'http://github.com/ursm/capistrano-notification'
|
12
|
+
gem.authors = ['Keita Urashima']
|
13
|
+
|
14
|
+
gem.add_dependency 'capistrano'
|
15
|
+
gem.add_dependency 'validatable'
|
16
|
+
gem.add_dependency 'shout-bot'
|
17
|
+
|
18
|
+
gem.add_development_dependency 'rspec', '>= 1.2.9'
|
19
|
+
end
|
20
|
+
Jeweler::GemcutterTasks.new
|
21
|
+
rescue LoadError
|
22
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
23
|
+
end
|
24
|
+
|
25
|
+
require 'spec/rake/spectask'
|
26
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
27
|
+
spec.libs << 'lib' << 'spec'
|
28
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
29
|
+
end
|
30
|
+
|
31
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
32
|
+
spec.libs << 'lib' << 'spec'
|
33
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
34
|
+
spec.rcov = true
|
35
|
+
end
|
36
|
+
|
37
|
+
task :spec => :check_dependencies
|
38
|
+
|
39
|
+
task :default => :spec
|
40
|
+
|
41
|
+
require 'rake/rdoctask'
|
42
|
+
Rake::RDocTask.new do |rdoc|
|
43
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
44
|
+
|
45
|
+
rdoc.rdoc_dir = 'rdoc'
|
46
|
+
rdoc.title = "capistrano-notification #{version}"
|
47
|
+
rdoc.rdoc_files.include('README*')
|
48
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
49
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'validatable'
|
2
|
+
require 'shout-bot'
|
3
|
+
|
4
|
+
module CapistranoNotification
|
5
|
+
def self.extended(config)
|
6
|
+
config.set :local_user, ENV['USER'] || ENV['USERNAME'] || 'unknown'
|
7
|
+
config.set :deploy_target, config.fetch(:stage, config.fetch(:rails_env, 'production'))
|
8
|
+
end
|
9
|
+
|
10
|
+
class Base
|
11
|
+
include Validatable
|
12
|
+
|
13
|
+
def self.var(name, opts = {})
|
14
|
+
define_method name do |*args|
|
15
|
+
case args.size
|
16
|
+
when 0
|
17
|
+
if value = instance_variable_get("@#{name}")
|
18
|
+
value
|
19
|
+
else
|
20
|
+
default = opts[:default]
|
21
|
+
send name, default.is_a?(Proc) ? default.call(self) : default
|
22
|
+
end
|
23
|
+
when 1
|
24
|
+
instance_variable_set "@#{name}", args.first
|
25
|
+
else
|
26
|
+
raise ArgumentError, "wrong number of arguments (#{args.size} for 0 or 1)"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
if opts[:required]
|
31
|
+
validates_presence_of name
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def initialize(vars = {})
|
36
|
+
vars.each do |k, v|
|
37
|
+
send k, v
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
validates_presence_of :name
|
42
|
+
end
|
43
|
+
|
44
|
+
class IRC < Base
|
45
|
+
var :name, :default => 'IRC'
|
46
|
+
var :user, :required => true, :default => 'capistrano'
|
47
|
+
var :password
|
48
|
+
var :host, :required => true
|
49
|
+
var :port, :required => true, :default => 6667
|
50
|
+
var :channel, :required => true
|
51
|
+
var :message, :required => true
|
52
|
+
|
53
|
+
def run
|
54
|
+
ShoutBot.shout("irc://#{login}@#{host}:#{port}/#{channel}") do |channel|
|
55
|
+
channel.say message
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def login
|
60
|
+
[user, password].compact.join(':')
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def irc(opts)
|
65
|
+
add IRC.new(opts)
|
66
|
+
end
|
67
|
+
|
68
|
+
def add(notification)
|
69
|
+
task_name = notification.name.downcase.gsub(' ', '_')
|
70
|
+
|
71
|
+
namespace :deploy do
|
72
|
+
namespace :notify do
|
73
|
+
desc "Notify #{name} of the deployment."
|
74
|
+
task task_name, :roles => :app, :except => {:no_release => true} do
|
75
|
+
if notification.valid?
|
76
|
+
notification.run
|
77
|
+
else
|
78
|
+
$stderr.puts notification.errors.full_messages
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
after 'deploy', "deploy:notify:#{task_name}"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
Capistrano.plugin :notification, CapistranoNotification
|
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-notification
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Keita Urashima
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-21 00:00:00 +09:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: capistrano
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
type: :runtime
|
31
|
+
version_requirements: *id001
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: validatable
|
34
|
+
prerelease: false
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
segments:
|
40
|
+
- 0
|
41
|
+
version: "0"
|
42
|
+
type: :runtime
|
43
|
+
version_requirements: *id002
|
44
|
+
- !ruby/object:Gem::Dependency
|
45
|
+
name: shout-bot
|
46
|
+
prerelease: false
|
47
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
53
|
+
version: "0"
|
54
|
+
type: :runtime
|
55
|
+
version_requirements: *id003
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
prerelease: false
|
59
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
segments:
|
64
|
+
- 1
|
65
|
+
- 2
|
66
|
+
- 9
|
67
|
+
version: 1.2.9
|
68
|
+
type: :development
|
69
|
+
version_requirements: *id004
|
70
|
+
description: Capistrano deployment notification
|
71
|
+
email: ursm@ursm.jp
|
72
|
+
executables: []
|
73
|
+
|
74
|
+
extensions: []
|
75
|
+
|
76
|
+
extra_rdoc_files:
|
77
|
+
- LICENSE
|
78
|
+
- README.rdoc
|
79
|
+
files:
|
80
|
+
- .document
|
81
|
+
- .gitignore
|
82
|
+
- LICENSE
|
83
|
+
- README.rdoc
|
84
|
+
- Rakefile
|
85
|
+
- VERSION
|
86
|
+
- lib/capistrano-notification.rb
|
87
|
+
- spec/capistrano-notification_spec.rb
|
88
|
+
- spec/spec.opts
|
89
|
+
- spec/spec_helper.rb
|
90
|
+
has_rdoc: true
|
91
|
+
homepage: http://github.com/ursm/capistrano-notification
|
92
|
+
licenses: []
|
93
|
+
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options:
|
96
|
+
- --charset=UTF-8
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
segments:
|
104
|
+
- 0
|
105
|
+
version: "0"
|
106
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
segments:
|
111
|
+
- 0
|
112
|
+
version: "0"
|
113
|
+
requirements: []
|
114
|
+
|
115
|
+
rubyforge_project:
|
116
|
+
rubygems_version: 1.3.6
|
117
|
+
signing_key:
|
118
|
+
specification_version: 3
|
119
|
+
summary: Capistrano deployment notification
|
120
|
+
test_files:
|
121
|
+
- spec/spec_helper.rb
|
122
|
+
- spec/capistrano-notification_spec.rb
|