blue-resque-scheduler 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +21 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/blue-resque-scheduler.gemspec +23 -0
- data/lib/blue/resque/scheduler.rb +35 -0
- data/lib/blue/resque/scheduler/capistrano/integration.rb +34 -0
- data/lib/blue/resque/scheduler/version.rb +7 -0
- data/templates/monit.conf.erb +5 -0
- metadata +88 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Josh Sharpe
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Blue::Resque::Scheduler
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'blue-resque-scheduler'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install blue-resque-scheduler
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'blue/resque/scheduler/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "blue-resque-scheduler"
|
8
|
+
spec.version = Blue::Resque::Scheduler::VERSION
|
9
|
+
spec.authors = ["Josh Sharpe"]
|
10
|
+
spec.email = ["josh.m.sharpe@gmail.com"]
|
11
|
+
spec.description = %q{A Resque Scheduler plugin for the Blue deployment framework}
|
12
|
+
spec.summary = %q{Sets up monitoring for Resque Scheduler}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require "blue/resque/scheduler/version"
|
2
|
+
require "blue/resque/scheduler/capistrano/integration"
|
3
|
+
|
4
|
+
module Blue
|
5
|
+
module Resque
|
6
|
+
module Scheduler
|
7
|
+
|
8
|
+
def self.pid_path
|
9
|
+
@pid_path ||= File.join(Blue.shared_path, 'pids', 'resque_scheduler.pid')
|
10
|
+
end
|
11
|
+
|
12
|
+
def resque_scheduler_monitoring
|
13
|
+
if Blue.const_defined?(:Monit)
|
14
|
+
file "/etc/monit/conf.d/resque_scheduler.conf",
|
15
|
+
:ensure => :present,
|
16
|
+
:mode => '700',
|
17
|
+
:backup => false,
|
18
|
+
:content => template(File.join(File.dirname(__FILE__), '..', '..', '..', 'templates', 'monit.conf.erb'), binding),
|
19
|
+
:notify => service('monit')
|
20
|
+
|
21
|
+
elsif Blue.const_defined?(:God)
|
22
|
+
# Define this yo'self homie.
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.included(klass)
|
27
|
+
klass.add_role(:resque_scheduler)
|
28
|
+
klass.class_eval do
|
29
|
+
recipe :resque_scheduler_monitoring
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Blue
|
2
|
+
module Resque
|
3
|
+
module Scheduler
|
4
|
+
module Capistrano
|
5
|
+
module Integration
|
6
|
+
|
7
|
+
def self.load(capistrano_config)
|
8
|
+
capistrano_config.load do
|
9
|
+
|
10
|
+
namespace :blue do
|
11
|
+
namespace :resque do
|
12
|
+
namespace :scheduler do
|
13
|
+
desc "Trigger Resque Scheduler restarts"
|
14
|
+
task :restart do
|
15
|
+
run "kill -QUIT $(cat #{Blue::Resque::Scheduler.pid_path}) && rm -rf #{Blue::Resque::Scheduler.pid_path}"
|
16
|
+
sudo "monit restart resque_scheduler"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
after 'deploy:create_symlink', 'blue:resque:scheduler:restart'
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
if Capistrano::Configuration.instance
|
32
|
+
Blue::Resque::Scheduler::Capistrano::Integration.load(Capistrano::Configuration.instance)
|
33
|
+
end
|
34
|
+
|
@@ -0,0 +1,5 @@
|
|
1
|
+
check process resque_scheduler
|
2
|
+
with pidfile <%= Blue::Resque::Scheduler.pid_path %>
|
3
|
+
start program = "/bin/sh -c 'cd <%= Blue.rails_current %> ; bundle exec rake resque:scheduler RAILS_ENV=<%= Blue.env %> BACKGROUND=yes PIDFILE=<%= Blue::Resque::Scheduler.pid_path %> >> log/resque_scheduler.log 2>&1'" as uid <%= Blue.config.user %> and gid <%= Blue.config.group %> with timeout 60 seconds
|
4
|
+
stop program = "/bin/sh -c 'cd <%= Blue.rails_current %> ; && kill -QUIT $(cat <%= Blue::Resque::Scheduler.pid_path %>) && rm -f <%= Blue::Resque::Scheduler.pid_path %> ; exit 0;'"
|
5
|
+
|
metadata
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blue-resque-scheduler
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Josh Sharpe
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-05-26 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: A Resque Scheduler plugin for the Blue deployment framework
|
47
|
+
email:
|
48
|
+
- josh.m.sharpe@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- LICENSE.txt
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- blue-resque-scheduler.gemspec
|
59
|
+
- lib/blue/resque/scheduler.rb
|
60
|
+
- lib/blue/resque/scheduler/capistrano/integration.rb
|
61
|
+
- lib/blue/resque/scheduler/version.rb
|
62
|
+
- templates/monit.conf.erb
|
63
|
+
homepage: ''
|
64
|
+
licenses:
|
65
|
+
- MIT
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ! '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ! '>='
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
requirements: []
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 1.8.25
|
85
|
+
signing_key:
|
86
|
+
specification_version: 3
|
87
|
+
summary: Sets up monitoring for Resque Scheduler
|
88
|
+
test_files: []
|