capistrano-rdws 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: bc01eb56ceea3e36ac6f6e8ceaace68bcec2eb4d
4
+ data.tar.gz: b37fdeeb8f0d2cb2a997a2068fba7a1204ac9f16
5
+ SHA512:
6
+ metadata.gz: 7f25005404d7e8878c862c89a71a51f03c840d5f41df3d0f557ccbd6cc1b128da1dc2cf8d87f371c96b9c50f06e66948cca40ca4bceb64fd9cb1120f15fc629a
7
+ data.tar.gz: 1a0dd6fbfe333eddca41f082682e06573a2c46b1a9ab7bd7502728bf7cb9b03ffb7c57414ac120180d4dcb8067088cc9b96c2c1d4d7a5745658567cde62ceda1
data/.DS_Store ADDED
Binary file
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 capistrano-rdws.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Rydkin Maxim
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,43 @@
1
+ # Capistrano::Rdws
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'capistrano-rdws'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install capistrano-rdws
18
+
19
+ ## Usage
20
+
21
+ List of tasks:
22
+
23
+ $ cap db:data:dump
24
+ $ cap db:create
25
+
26
+ $ cap release:pack
27
+
28
+ $ cap unicorn:start
29
+ $ cap unicorn:stop
30
+ $ cap unicorn:force_stop
31
+ $ cap unicorn:restart
32
+
33
+ $ cap logs:tail[logfile]
34
+
35
+ TODO: Write usage instructions here
36
+
37
+ ## Contributing
38
+
39
+ 1. Fork it
40
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
41
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
42
+ 4. Push to the branch (`git push origin my-new-feature`)
43
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'capistrano/rdws/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "capistrano-rdws"
8
+ spec.version = Capistrano::Rdws::VERSION
9
+ spec.authors = ["Rydkin Maxim"]
10
+ spec.email = ["maks.rydkin@gmail.com"]
11
+ spec.description = "This gem is a bundle of capistrano 3 recipes used for RDWS projects"
12
+ spec.summary = ""
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
+ spec.add_development_dependency 'capistrano', '~> 3.1'
24
+ spec.add_development_dependency 'capistrano-bundler', '~> 1.1'
25
+
26
+ end
data/lib/.DS_Store ADDED
Binary file
File without changes
Binary file
@@ -0,0 +1,11 @@
1
+ # require "capistrano/rdws/version"
2
+ require "capistrano/rdws/unicorn"
3
+ require "capistrano/rdws/db"
4
+ require "capistrano/rdws/release"
5
+ require "capistrano/rdws/logs"
6
+
7
+ # module Capistrano
8
+ # module Rdws
9
+ # # Your code goes here...
10
+ # end
11
+ # end
@@ -0,0 +1 @@
1
+ load File.expand_path("../../tasks/db.rake", __FILE__)
@@ -0,0 +1 @@
1
+ load File.expand_path("../../tasks/logs.rake", __FILE__)
@@ -0,0 +1 @@
1
+ load File.expand_path("../../tasks/release.rake", __FILE__)
@@ -0,0 +1 @@
1
+ load File.expand_path("../../tasks/unicorn.rake", __FILE__)
@@ -0,0 +1,5 @@
1
+ module Capistrano
2
+ module Rdws
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,30 @@
1
+ namespace :db do
2
+ namespace :data do
3
+ desc 'Make yaml_db dump'
4
+ task :dump do
5
+ on roles(:db) do
6
+ within release_path do
7
+ with rails_env: fetch(:stage) do
8
+ execute :rake, "db:data:dump"
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
14
+
15
+ desc 'create db'
16
+ task :create do
17
+ on roles(:db) do
18
+ within release_path do
19
+ with rails_env: fetch(:stage) do
20
+ # add test for existing db
21
+ # if test
22
+ execute :rake, "db:create"
23
+ # else
24
+ # end
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,15 @@
1
+ namespace :logs do
2
+ desc "tail log file from shared_path/log/logfile.log, e.g. 'rake logs:tail[logfile]'"
3
+ task :tail, :file do |t, args|
4
+ if args[:file]
5
+ on roles(:app) do
6
+ execute "tail -f #{shared_path}/log/#{args[:file]}.log"
7
+ end
8
+ else
9
+ puts "please specify a logfile e.g: 'rake logs:tail[logfile]'"
10
+ puts "will tail 'shared_path/log/logfile.log'"
11
+ puts "remember if you use zsh you'll need to format it as:"
12
+ puts "rake 'logs:tail[logfile]' (single quotes)"
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,16 @@
1
+ namespace :release do
2
+ desc "apply all release tasks"
3
+ task :pack do
4
+ on roles(:app) do
5
+ within release_path do
6
+ with rails_env: fetch(:stage) do
7
+ # add test for existing db
8
+ # if test
9
+ execute :rake, "release:pack"
10
+ # else
11
+ # end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,48 @@
1
+ namespace :unicorn do
2
+ pid_path = "#{fetch(:shared_path)}/pids"
3
+ unicorn_pid = "#{fetch(:pid_path)}/unicorn.pid"
4
+
5
+ def run_unicorn
6
+ within release_path do
7
+ execute :bundle, "exec unicorn -D -c config/unicorn.rb -E #{fetch(:stage)}"
8
+ end
9
+ end
10
+
11
+ desc 'Start unicorn'
12
+ task :start do
13
+ on roles(:app) do
14
+ run_unicorn
15
+ end
16
+ end
17
+
18
+ desc 'Stop unicorn'
19
+ task :stop do
20
+ on roles(:app) do
21
+ if test "[ -f #{unicorn_pid} ]"
22
+ execute :kill, "-QUIT `cat #{unicorn_pid}`"
23
+ end
24
+ end
25
+ end
26
+
27
+ desc 'Force stop unicorn (kill -9)'
28
+ task :force_stop do
29
+ on roles(:app) do
30
+ if test "[ -f #{unicorn_pid} ]"
31
+ execute :kill, "-9 `cat #{unicorn_pid}`"
32
+ execute :rm, unicorn_pid
33
+ end
34
+ end
35
+ end
36
+
37
+ desc 'Restart unicorn'
38
+ task :restart do
39
+ on roles(:app) do
40
+ if test "[ -f #{unicorn_pid} ]"
41
+ execute :kill, "-USR2 `cat #{unicorn_pid}`"
42
+ else
43
+ run_unicorn
44
+ end
45
+ end
46
+ end
47
+
48
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-rdws
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Rydkin Maxim
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-16 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
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
+ - !ruby/object:Gem::Dependency
42
+ name: capistrano
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: capistrano-bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ description: This gem is a bundle of capistrano 3 recipes used for RDWS projects
70
+ email:
71
+ - maks.rydkin@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".DS_Store"
77
+ - ".gitignore"
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - capistrano-rdws.gemspec
83
+ - lib/.DS_Store
84
+ - lib/capistrano-rdws.rb
85
+ - lib/capistrano/.DS_Store
86
+ - lib/capistrano/rdws.rb
87
+ - lib/capistrano/rdws/db.rb
88
+ - lib/capistrano/rdws/logs.rb
89
+ - lib/capistrano/rdws/release.rb
90
+ - lib/capistrano/rdws/unicorn.rb
91
+ - lib/capistrano/rdws/version.rb
92
+ - lib/capistrano/tasks/db.rake
93
+ - lib/capistrano/tasks/logs.rake
94
+ - lib/capistrano/tasks/release.rake
95
+ - lib/capistrano/tasks/unicorn.rake
96
+ homepage: ''
97
+ licenses:
98
+ - MIT
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.1.11
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: ''
120
+ test_files: []