j-cap-recipes 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +10 -10
- data/{capistrano-recipes.gemspec → j-cap-recipes.gemspec} +4 -4
- data/lib/{capistrano-recipes → j-cap-recipes}/check.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/database.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/delayed_job.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/hpusher.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/log.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/monit.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/nginx.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/rails.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/rake.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/setup.rb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/check.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/database.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/delayed_job.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/hpusher.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/log.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/monit.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/nginx.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/rails.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/rake.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/setup.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/templates/database.yml.erb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/templates/nginx/site.conf.erb +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/tasks/unicorn.rake +0 -0
- data/lib/{capistrano-recipes → j-cap-recipes}/unicorn.rb +0 -0
- data/lib/j-cap-recipes/version.rb +5 -0
- data/lib/j-cap-recipes.rb +3 -0
- metadata +48 -40
- checksums.yaml +0 -7
- data/lib/capistrano-recipes/version.rb +0 -5
- data/lib/capistrano-recipes.rb +0 -1
data/README.md
CHANGED
@@ -21,19 +21,19 @@ Or install it yourself as:
|
|
21
21
|
|
22
22
|
In the `Capfile` to include all recipes add:
|
23
23
|
|
24
|
-
require '
|
24
|
+
require 'j-cap-recipes'
|
25
25
|
|
26
26
|
If you want to load only specified recipe:
|
27
27
|
|
28
|
-
require '
|
29
|
-
require '
|
30
|
-
require '
|
31
|
-
require '
|
32
|
-
require '
|
33
|
-
require '
|
34
|
-
require '
|
35
|
-
require '
|
36
|
-
require '
|
28
|
+
require 'j-cap-recipes/setup'
|
29
|
+
require 'j-cap-recipes/check'
|
30
|
+
require 'j-cap-recipes/nginx'
|
31
|
+
require 'j-cap-recipes/monit'
|
32
|
+
require 'j-cap-recipes/database'
|
33
|
+
require 'j-cap-recipes/delayed_job'
|
34
|
+
require 'j-cap-recipes/log'
|
35
|
+
require 'j-cap-recipes/rails'
|
36
|
+
require 'j-cap-recipes/unicorn'
|
37
37
|
|
38
38
|
### Nginx
|
39
39
|
### Setup
|
@@ -1,16 +1,16 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require '
|
4
|
+
require 'j-cap-recipes/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "j-cap-recipes"
|
8
|
-
spec.version =
|
8
|
+
spec.version = JCap::Recipes::VERSION
|
9
9
|
spec.authors = ["Michael Nikitochkin"]
|
10
10
|
spec.email = ["miry.sof@gmail.com"]
|
11
|
-
spec.description = %q{}
|
11
|
+
spec.description = %q{A litle knife to deploy Rails application}
|
12
12
|
spec.summary = %q{Capistrano 3 recipes for nginx, monit, rails log, setup, unicorn}
|
13
|
-
spec.homepage = "https://github.com/jetthoughts/
|
13
|
+
spec.homepage = "https://github.com/jetthoughts/j-cap-recipes"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: j-cap-recipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Michael Nikitochkin
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-31 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
@@ -20,6 +22,7 @@ dependencies:
|
|
20
22
|
type: :development
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ~>
|
25
28
|
- !ruby/object:Gem::Version
|
@@ -27,32 +30,36 @@ dependencies:
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rake
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
|
-
- - '>='
|
35
|
+
- - ! '>='
|
32
36
|
- !ruby/object:Gem::Version
|
33
37
|
version: '0'
|
34
38
|
type: :development
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
|
-
- - '>='
|
43
|
+
- - ! '>='
|
39
44
|
- !ruby/object:Gem::Version
|
40
45
|
version: '0'
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: capistrano
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- - '>='
|
51
|
+
- - ! '>='
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: 3.0.0
|
48
54
|
type: :development
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- - '>='
|
59
|
+
- - ! '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: 3.0.0
|
55
|
-
description:
|
62
|
+
description: A litle knife to deploy Rails application
|
56
63
|
email:
|
57
64
|
- miry.sof@gmail.com
|
58
65
|
executables: []
|
@@ -64,56 +71,57 @@ files:
|
|
64
71
|
- LICENSE.txt
|
65
72
|
- README.md
|
66
73
|
- Rakefile
|
67
|
-
-
|
68
|
-
- lib/
|
69
|
-
- lib/
|
70
|
-
- lib/
|
71
|
-
- lib/
|
72
|
-
- lib/
|
73
|
-
- lib/
|
74
|
-
- lib/
|
75
|
-
- lib/
|
76
|
-
- lib/
|
77
|
-
- lib/
|
78
|
-
- lib/
|
79
|
-
- lib/
|
80
|
-
- lib/
|
81
|
-
- lib/
|
82
|
-
- lib/
|
83
|
-
- lib/
|
84
|
-
- lib/
|
85
|
-
- lib/
|
86
|
-
- lib/
|
87
|
-
- lib/
|
88
|
-
- lib/
|
89
|
-
- lib/
|
90
|
-
- lib/
|
91
|
-
- lib/
|
92
|
-
- lib/
|
93
|
-
- lib/
|
94
|
-
homepage: https://github.com/jetthoughts/
|
74
|
+
- j-cap-recipes.gemspec
|
75
|
+
- lib/j-cap-recipes.rb
|
76
|
+
- lib/j-cap-recipes/check.rb
|
77
|
+
- lib/j-cap-recipes/database.rb
|
78
|
+
- lib/j-cap-recipes/delayed_job.rb
|
79
|
+
- lib/j-cap-recipes/hpusher.rb
|
80
|
+
- lib/j-cap-recipes/log.rb
|
81
|
+
- lib/j-cap-recipes/monit.rb
|
82
|
+
- lib/j-cap-recipes/nginx.rb
|
83
|
+
- lib/j-cap-recipes/rails.rb
|
84
|
+
- lib/j-cap-recipes/rake.rb
|
85
|
+
- lib/j-cap-recipes/setup.rb
|
86
|
+
- lib/j-cap-recipes/tasks/check.rake
|
87
|
+
- lib/j-cap-recipes/tasks/database.rake
|
88
|
+
- lib/j-cap-recipes/tasks/delayed_job.rake
|
89
|
+
- lib/j-cap-recipes/tasks/hpusher.rake
|
90
|
+
- lib/j-cap-recipes/tasks/log.rake
|
91
|
+
- lib/j-cap-recipes/tasks/monit.rake
|
92
|
+
- lib/j-cap-recipes/tasks/nginx.rake
|
93
|
+
- lib/j-cap-recipes/tasks/rails.rake
|
94
|
+
- lib/j-cap-recipes/tasks/rake.rake
|
95
|
+
- lib/j-cap-recipes/tasks/setup.rake
|
96
|
+
- lib/j-cap-recipes/tasks/templates/database.yml.erb
|
97
|
+
- lib/j-cap-recipes/tasks/templates/nginx/site.conf.erb
|
98
|
+
- lib/j-cap-recipes/tasks/unicorn.rake
|
99
|
+
- lib/j-cap-recipes/unicorn.rb
|
100
|
+
- lib/j-cap-recipes/version.rb
|
101
|
+
homepage: https://github.com/jetthoughts/j-cap-recipes
|
95
102
|
licenses:
|
96
103
|
- MIT
|
97
|
-
metadata: {}
|
98
104
|
post_install_message:
|
99
105
|
rdoc_options: []
|
100
106
|
require_paths:
|
101
107
|
- lib
|
102
108
|
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
103
110
|
requirements:
|
104
|
-
- - '>='
|
111
|
+
- - ! '>='
|
105
112
|
- !ruby/object:Gem::Version
|
106
113
|
version: '0'
|
107
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
|
+
none: false
|
108
116
|
requirements:
|
109
|
-
- - '>='
|
117
|
+
- - ! '>='
|
110
118
|
- !ruby/object:Gem::Version
|
111
119
|
version: '0'
|
112
120
|
requirements: []
|
113
121
|
rubyforge_project:
|
114
|
-
rubygems_version:
|
122
|
+
rubygems_version: 1.8.25
|
115
123
|
signing_key:
|
116
|
-
specification_version:
|
124
|
+
specification_version: 3
|
117
125
|
summary: Capistrano 3 recipes for nginx, monit, rails log, setup, unicorn
|
118
126
|
test_files: []
|
119
127
|
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: b3d5e582dd6bba0e66897050d7504864c7036b2d
|
4
|
-
data.tar.gz: 3296129f3d621be7b6e24c1f68637084b558cda1
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 24378404474c10c3198f77f7759b4a930323a9518f63c7738023f84e76c75011555f16715d779c30cd23c097dc746443070759e8ed0c2c71d1b993c57df00a3d
|
7
|
-
data.tar.gz: 3bdf34bb0b3c812fe94238badef699e5e999cd9cacae669663bd1e0ff32614631a245bbabfbdfe743ddbd3156a4ce0c1a924a8f98372e6a0dfcf3b7c8d40e5db
|
data/lib/capistrano-recipes.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
Dir.glob('lib/capistrano/tasks/*.rb').each { |r| require r }
|