capistrano-sneakers 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZWUzN2Y0MTMwZDFlODI0NTQ5ZGZlNmJjZGJlMDliMGI2YTVlY2Y2ZQ==
5
+ data.tar.gz: !binary |-
6
+ YjhjNDI0MjIyOWJiZWYzOTU4YjcyOTRmOTVkZDc0NWU5YWE5NGMxMg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MzlkN2E0YTEwNjVkMDM4YmRmNGQ5MzdkMDc5MGMyNmE2M2M2MjYyODk0MmRi
10
+ ZTIxNjJjNjQxZjE5MWE5MDVlNDE0NWQ2ZGM4ZmZkODdmNGJjM2EzYjU3OGVm
11
+ NWI3OTRmMTdlMTM1ZTM5ZDdmNWU2NjViZWEwNTk4OTljZDNkMTY=
12
+ data.tar.gz: !binary |-
13
+ ZWY2ZThlNDY0ZjdhMmY5ZmQ5ODUwZDJkNzdmNjNkODI4N2Q1Yzc2OGJhZWFj
14
+ YTM4ZTIxOGI2M2U3NTUzMTBhNjBiYTRkN2UzMzk0NjMzZjkzODI5MzkzN2Iw
15
+ ODU2MjVlMTNkMjI4NThiMDAzYTQzOGIyZjA5Yzg2ZGZiMjg0Njc=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in capistrano-sneakers.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Spirit
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,40 @@
1
+ # Capistrano::Sneakers
2
+
3
+ [Sneakers](https://github.com/jondot/sneakers) integration Only for Capistrano3
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'capistrano-sneakers'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install capistrano-sneakers
20
+
21
+ ## Usage
22
+
23
+ ## Usage
24
+ ```ruby
25
+ # Capfile
26
+
27
+ require 'capistrano/sneakers'
28
+ ```
29
+
30
+ ## Contributors
31
+
32
+ - [NaixSpirit](https://github.com/NaixSpirit)
33
+
34
+ ## Contributing
35
+
36
+ 1. Fork it ( https://github.com/NaixSpirit/capistrano-sneakers/fork )
37
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
38
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
39
+ 4. Push to the branch (`git push origin my-new-feature`)
40
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -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 'capistrano/sneakers/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "capistrano-sneakers"
8
+ spec.version = Capistrano::Sneakers::VERSION
9
+ spec.authors = ["Spirit"]
10
+ spec.email = ["neverlandxy.naix@gmail.com"]
11
+ spec.summary = %q{Sneakers integration only for Capistrano3}
12
+ spec.description = %q{Sneakers integration only for Capistrano3}
13
+ spec.homepage = "https://github.com/NaixSpirit/capistrano-sneakers"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
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.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
File without changes
@@ -0,0 +1,11 @@
1
+ require 'capistrano/sneakers/version'
2
+
3
+ cap_version = Gem::Specification.find_by_name('capistrano').version
4
+ if cap_version >= Gem::Version.new('3.0.0')
5
+ #
6
+ # Load Tasks from sneakers "cap" file
7
+ #
8
+ load File.expand_path('../tasks/sneakers.rb', __FILE__)
9
+ else
10
+ raise Gem::LoadError, "Capistrano-Sneakers requires capistrano version 3.0.0 or greater, version detected: #{cap_version}"
11
+ end
@@ -0,0 +1,5 @@
1
+ module Capistrano
2
+ module Sneakers
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,242 @@
1
+ namespace :load do
2
+
3
+ task :defaults do
4
+ set :sneakers_default_hooks, -> { true }
5
+
6
+ set :sneakers_pid, -> { File.join(shared_path, 'tmp', 'pids', 'sneakers.pid') }
7
+ set :sneakers_env, -> { fetch(:rack_env, fetch(:rails_env, fetch(:stage))) }
8
+ set :sneakers_log, -> { File.join(shared_path, 'log', 'sneakers.log') }
9
+ # set :sneakers_timeout, -> { 10 }
10
+ set :sneakers_role, -> { :app }
11
+ set :sneakers_processes, -> { 1 }
12
+ set :sneakers_workers, -> { false } # if this is false it will cause Capistrano to exit
13
+ set :sneakers_run_config, -> { false } # if this is true sneakers will run with preconfigured /config/initializers/sneakers.rb
14
+ set :sneakers_boot_file, -> { false } # Needed for booting daemons dynamically
15
+ # Rbenv and RVM integration
16
+ set :rbenv_map_bins, fetch(:rbenv_map_bins).to_a.concat(%w(sneakers))
17
+ set :rvm_map_bins, fetch(:rvm_map_bins).to_a.concat(%w(sneakers))
18
+ end
19
+ end
20
+
21
+
22
+ namespace :deploy do
23
+
24
+ before :starting, :check_sneakers_hooks do
25
+ invoke 'sneakers:add_default_hooks' if fetch(:sneakers_default_hooks)
26
+ end
27
+
28
+ after :publishing, :restart_sneakers do
29
+ invoke 'sneakers:restart' if fetch(:sneakers_default_hooks)
30
+ end
31
+ end
32
+
33
+ namespace :sneakers do
34
+
35
+ def for_each_sneakers_process(reverse = false, &block)
36
+ pids = processes_sneakers_pids
37
+ pids.reverse! if reverse
38
+ pids.each_with_index do |pid_file, idx|
39
+ within current_path do
40
+ yield(pid_file, idx)
41
+ end
42
+ end
43
+ end
44
+
45
+ def processes_sneakers_pids
46
+ pids = []
47
+ raise "sneaker_processes is nil class, cannot continue, please [set :sneaker_processes]" if fetch(:sneakers_processes).nil?
48
+ fetch(:sneakers_processes).times do |idx|
49
+ pids.push (idx.zero? && fetch(:sneakers_processes) <= 1) ?
50
+ fetch(:sneakers_pid) :
51
+ fetch(:sneakers_pid).gsub(/\.pid$/, "-#{idx}.pid")
52
+
53
+ end
54
+ pids
55
+ end
56
+
57
+ def sneakers_pid_process_exists?(pid_file)
58
+ sneakers_pid_file_exists?(pid_file) and test(*("kill -0 $( cat #{pid_file} )").split(' '))
59
+ end
60
+
61
+ def sneakers_pid_file_exists?(pid_file)
62
+ test(*("[ -f #{pid_file} ]").split(' '))
63
+ end
64
+
65
+ def stop_sneakers(pid_file)
66
+ if fetch(:sneakers_run_config) == true
67
+ execute "kill -SIGTERM `cat #{pid_file}`"
68
+ else
69
+ if fetch(:stop_sneakers_in_background, fetch(:sneakers_run_in_background))
70
+ if fetch(:sneakers_use_signals)
71
+ background "kill -TERM `cat #{pid_file}`"
72
+ else
73
+ background :bundle, :exec, :sneakersctl, 'stop', "#{pid_file}", fetch(:sneakers_timeout)
74
+ end
75
+ else
76
+ execute :bundle, :exec, :sneakersctl, 'stop', "#{pid_file}", fetch(:sneakers_timeout)
77
+ end
78
+ end
79
+ end
80
+
81
+ def quiet_sneakers(pid_file)
82
+ if fetch(:sneakers_use_signals) || fetch(:sneakers_run_config)
83
+ background "kill -USR1 `cat #{pid_file}`"
84
+ else
85
+ begin
86
+ execute :bundle, :exec, :sneakersctl, 'quiet', "#{pid_file}"
87
+ rescue SSHKit::Command::Failed
88
+ # If gems are not installed eq(first deploy) and sneakers_default_hooks as active
89
+ warn 'sneakersctl not found (ignore if this is the first deploy)'
90
+ end
91
+ end
92
+ end
93
+
94
+ def start_sneakers(pid_file, idx = 0)
95
+ if fetch(:sneakers_run_config) == true
96
+ # Use sneakers configuration prebuilt in
97
+ raise "[ set :workers, ['worker1', 'workerN'] ] not configured properly, please configure the workers you wish to use" if fetch(:sneakers_workers).nil? or fetch(:sneakers_workers) == false or !fetch(:sneakers_workers).kind_of? Array
98
+
99
+ workers = fetch(:sneakers_workers).compact.join(',')
100
+
101
+ #run "cmd", env: { 'WORKERS' => workers } #export this to environmental variable
102
+ info "Starting the sneakers processes"
103
+ #workers.each do |worker|
104
+
105
+ with rails_env: fetch(:sneakers_env), workers: workers do
106
+ rake 'sneakers:run'
107
+ end
108
+ #execute :bundle, :exec, :sneakers, args.compact.join(' ')
109
+ else
110
+ # Using custom sneakers setup
111
+ args.push "--index #{idx}"
112
+ args.push "--pidfile #{pid_file}"
113
+ args.push "--environment #{fetch(:sneakers_env)}"
114
+ args.push "--logfile #{fetch(:sneakers_log)}" if fetch(:sneakers_log)
115
+ args.push "--require #{fetch(:sneakers_require)}" if fetch(:sneakers_require)
116
+ args.push "--tag #{fetch(:sneakers_tag)}" if fetch(:sneakers_tag)
117
+ Array(fetch(:sneakers_queue)).each do |queue|
118
+ args.push "--queue #{queue}"
119
+ end
120
+ args.push "--config #{fetch(:sneakers_config)}" if fetch(:sneakers_config)
121
+ args.push "--concurrency #{fetch(:sneakers_concurrency)}" if fetch(:sneakers_concurrency)
122
+ # use sneakers_options for special options
123
+ args.push fetch(:sneakers_options) if fetch(:sneakers_options)
124
+
125
+ if defined?(JRUBY_VERSION)
126
+ args.push '>/dev/null 2>&1 &'
127
+ warn 'Since JRuby doesn\'t support Process.daemon, sneakers will not be running as a daemon.'
128
+ else
129
+ args.push '--daemon'
130
+ end
131
+
132
+ if fetch(:start_sneakers_in_background, fetch(:sneakers_run_in_background))
133
+ background :bundle, :exec, :sneakers, args.compact.join(' ')
134
+ else
135
+ execute :bundle, :exec, :sneakers, args.compact.join(' ')
136
+ end
137
+ end
138
+ end
139
+
140
+ task :add_default_hooks do
141
+ after 'deploy:starting', 'sneakers:quiet'
142
+ after 'deploy:updated', 'sneakers:stop'
143
+ after 'deploy:reverted', 'sneakers:stop'
144
+ after 'deploy:published', 'sneakers:start'
145
+ end
146
+
147
+ desc 'Quiet sneakers (stop processing new tasks)'
148
+ task :quiet do
149
+ on roles fetch(:sneakers_role) do
150
+ if test("[ -d #{current_path} ]") # fixes #11
151
+ for_each_sneakers_process(true) do |pid_file, idx|
152
+ if sneakers_pid_process_exists?(pid_file)
153
+ quiet_sneakers(pid_file)
154
+ end
155
+ end
156
+ end
157
+ end
158
+ end
159
+
160
+ desc 'Stop sneakers'
161
+ task :stop do
162
+ on roles fetch(:sneakers_role) do
163
+ if test("[ -d #{current_path} ]")
164
+ for_each_sneakers_process(true) do |pid_file, idx|
165
+ if sneakers_pid_process_exists?(pid_file)
166
+ stop_sneakers(pid_file)
167
+ end
168
+ end
169
+ end
170
+ end
171
+ end
172
+
173
+ desc 'Start sneakers'
174
+ task :start do
175
+ on roles fetch(:sneakers_role) do
176
+ for_each_sneakers_process do |pid_file, idx|
177
+ start_sneakers(pid_file, idx) unless sneakers_pid_process_exists?(pid_file)
178
+ end
179
+ end
180
+ end
181
+
182
+ desc 'Restart sneakers'
183
+ task :restart do
184
+ invoke 'sneakers:stop'
185
+ invoke 'sneakers:start'
186
+ end
187
+
188
+ desc 'Rolling-restart sneakers'
189
+ task :rolling_restart do
190
+ on roles fetch(:sneakers_role) do
191
+ for_each_sneakers_process(true) do |pid_file, idx|
192
+ if sneakers_pid_process_exists?(pid_file)
193
+ stop_sneakers(pid_file)
194
+ end
195
+ start_sneakers(pid_file, idx)
196
+ end
197
+ end
198
+ end
199
+
200
+ # Delete any pid file not in use
201
+ task :cleanup do
202
+ on roles fetch(:sneakers_role) do
203
+ for_each_sneakers_process do |pid_file, idx|
204
+ if sneakers_pid_file_exists?(pid_file)
205
+ execute "rm #{pid_file}" unless sneakers_pid_process_exists?(pid_file)
206
+ end
207
+ end
208
+ end
209
+ end
210
+
211
+ # TODO : Don't start if all proccess are off, raise warning.
212
+ desc 'Respawn missing sneakers proccesses'
213
+ task :respawn do
214
+ invoke 'sneakers:cleanup'
215
+ on roles fetch(:sneakers_role) do
216
+ for_each_sneakers_process do |pid_file, idx|
217
+ unless sneakers_pid_file_exists?(pid_file)
218
+ start_sneakers(pid_file, idx)
219
+ end
220
+ end
221
+ end
222
+ end
223
+
224
+ def template_sneakers(from, to, role)
225
+ [
226
+ File.join('lib', 'capistrano', 'templates', "#{from}-#{role.hostname}-#{fetch(:stage)}.rb"),
227
+ File.join('lib', 'capistrano', 'templates', "#{from}-#{role.hostname}.rb"),
228
+ File.join('lib', 'capistrano', 'templates', "#{from}-#{fetch(:stage)}.rb"),
229
+ File.join('lib', 'capistrano', 'templates', "#{from}.rb.erb"),
230
+ File.join('lib', 'capistrano', 'templates', "#{from}.rb"),
231
+ File.join('lib', 'capistrano', 'templates', "#{from}.erb"),
232
+ File.expand_path("../../templates/#{from}.rb.erb", __FILE__),
233
+ File.expand_path("../../templates/#{from}.erb", __FILE__)
234
+ ].each do |path|
235
+ if File.file?(path)
236
+ erb = File.read(path)
237
+ upload! StringIO.new(ERB.new(erb).result(binding)), to
238
+ break
239
+ end
240
+ end
241
+ end
242
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-sneakers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Spirit
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ type: :development
15
+ prerelease: false
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.7'
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ type: :development
29
+ prerelease: false
30
+ name: rake
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ~>
34
+ - !ruby/object:Gem::Version
35
+ version: '10.0'
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Sneakers integration only for Capistrano3
42
+ email:
43
+ - neverlandxy.naix@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - capistrano-sneakers.gemspec
54
+ - lib/capistrano-sneakers.rb
55
+ - lib/capistrano/sneakers.rb
56
+ - lib/capistrano/sneakers/version.rb
57
+ - lib/capistrano/tasks/sneakers.rb
58
+ homepage: https://github.com/NaixSpirit/capistrano-sneakers
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.1.5
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Sneakers integration only for Capistrano3
82
+ test_files: []
83
+ has_rdoc: