mina-unicorn 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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b80c4fc1b8579624b751d05cd67ed75bdb1681a1
4
+ data.tar.gz: a8cc846739c023060b9bf09b1e3257c4f41450cf
5
+ SHA512:
6
+ metadata.gz: 075d88071b5674b7f21c2a2fb2f918e289974bcc8f411a6ce42b8005e000a9beb9f0d9624ae919357e373c092cd520e6509438cf0d1bc289d0bcf07d48398f29
7
+ data.tar.gz: 55d1d1cdf7d408711ba4d5b53a7712b54b4b79c41bcc29548cc09267ebde51b2183ecebb91cda4626d1a258e3946e1fd8e9224eed1806da85aad950906210d3b
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in mina-unicorn.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 tab
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,61 @@
1
+ # Mina::Unicorn
2
+
3
+ [Mina](https://github.com/nadarei/mina) tasks for handle with
4
+ [Unicorn](http://unicorn.bogomips.org/)
5
+
6
+ This gem provides several mina tasks:
7
+
8
+ mina unicorn:start # Start unicorn
9
+ mina unicorn:stop # Stop unicorn
10
+ mina unicorn:restart # Restart unicorn (with zero-downtime)
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ gem 'mina-unicorn', :require => false
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install mina-unicorn
25
+
26
+ ## Usage
27
+
28
+ Add this to your `config/deploy.rb` file:
29
+
30
+ require 'mina/unicorn'
31
+
32
+ Make sure the following settings are set in your `config/deploy.rb`:
33
+
34
+ * `deploy_to` - deployment path
35
+
36
+ Make sure the following directories exists on your server:
37
+
38
+ * `shared/tmp/sockets` - directory for socket files.
39
+ * `shared/tmp/pids` - direcotry for pid files.
40
+
41
+ OR you can set other directories by setting follow variables:
42
+
43
+ * `unicorn_role` - unicorn user
44
+ * `unicorn_env` - set environment
45
+ * `unicorn_config` - unicorn config file
46
+ * `unicorn_cmd` - bundle exec unicorn
47
+ * `unicorn_pid` - unicorn pid file, default `shared/tmp/pids/unicorn.pid`
48
+
49
+ Then:
50
+
51
+ ```
52
+ $ mina unicorn:start
53
+ ```
54
+
55
+ ## Contributing
56
+
57
+ 1. Fork it ( http://github.com/<my-github-username>/mina-unicorn/fork )
58
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
59
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
60
+ 4. Push to the branch (`git push origin my-new-feature`)
61
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,35 @@
1
+ require 'mina/bundler'
2
+ require 'mina/rails'
3
+
4
+ namespace :unicorn do
5
+ set_default :unicorn_role, -> { user }
6
+ set_default :unicorn_env, -> { fetch(:rails_env, 'production') }
7
+ set_default :unicorn_config, -> { "#{deploy_to}/#{current_path}/config/unicorn.rb" }
8
+ set_default :unicorn_pid, -> { "#{deploy_to}/#{current_path}/tmp/pids/unicorn.pid" }
9
+ set_default :unicorn_cmd, -> { "#{bundle_prefix} unicorn" }
10
+
11
+ desc "Start unicorn service"
12
+ task :start => :environment do
13
+ queue %{
14
+ echo "-----> Starting unicorn service"
15
+ #{echo_cmd %[cd #{deploy_to}/#{current_path}; #{unicorn_cmd} -c #{unicorn_config} -D -E #{unicorn_env}]}
16
+ }
17
+ end
18
+
19
+ desc "Stop unicorn service"
20
+ task :stop => :environment do
21
+ queue %{
22
+ echo "-----> Stoping unicorn service"
23
+ #{echo_cmd %[kill -s QUIT `cat #{unicorn_pid}`]}
24
+ }
25
+ end
26
+
27
+ desc "Restart unicorn service"
28
+ task :restart => :environment do
29
+ queue %{
30
+ echo "-----> Restart unicorn service"
31
+ #{echo_cmd %[kill -s USR2 `cat #{unicorn_pid}`]}
32
+ }
33
+ end
34
+ end
35
+
@@ -0,0 +1,5 @@
1
+ module Mina
2
+ module Unicorn
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ load File.expand_path("../unicorn/tasks.rb", __FILE__)
@@ -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 'mina/unicorn/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mina-unicorn"
8
+ spec.version = Mina::Unicorn::VERSION
9
+ spec.authors = ["tab"]
10
+ spec.email = ["tab@openteam.ru"]
11
+ spec.summary = %q{Unicorn tasks for Mina}
12
+ spec.description = %q{Unicorn tasks for Mina}
13
+ spec.homepage = "https://github.com/openteam/mina-unicorn"
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.5"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mina-unicorn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - tab
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Unicorn tasks for Mina
42
+ email:
43
+ - tab@openteam.ru
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/mina/unicorn.rb
54
+ - lib/mina/unicorn/tasks.rb
55
+ - lib/mina/unicorn/version.rb
56
+ - mina-unicorn.gemspec
57
+ homepage: https://github.com/openteam/mina-unicorn
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.2.2
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Unicorn tasks for Mina
81
+ test_files: []