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.
Files changed (32) hide show
  1. data/README.md +10 -10
  2. data/{capistrano-recipes.gemspec → j-cap-recipes.gemspec} +4 -4
  3. data/lib/{capistrano-recipes → j-cap-recipes}/check.rb +0 -0
  4. data/lib/{capistrano-recipes → j-cap-recipes}/database.rb +0 -0
  5. data/lib/{capistrano-recipes → j-cap-recipes}/delayed_job.rb +0 -0
  6. data/lib/{capistrano-recipes → j-cap-recipes}/hpusher.rb +0 -0
  7. data/lib/{capistrano-recipes → j-cap-recipes}/log.rb +0 -0
  8. data/lib/{capistrano-recipes → j-cap-recipes}/monit.rb +0 -0
  9. data/lib/{capistrano-recipes → j-cap-recipes}/nginx.rb +0 -0
  10. data/lib/{capistrano-recipes → j-cap-recipes}/rails.rb +0 -0
  11. data/lib/{capistrano-recipes → j-cap-recipes}/rake.rb +0 -0
  12. data/lib/{capistrano-recipes → j-cap-recipes}/setup.rb +0 -0
  13. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/check.rake +0 -0
  14. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/database.rake +0 -0
  15. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/delayed_job.rake +0 -0
  16. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/hpusher.rake +0 -0
  17. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/log.rake +0 -0
  18. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/monit.rake +0 -0
  19. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/nginx.rake +0 -0
  20. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/rails.rake +0 -0
  21. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/rake.rake +0 -0
  22. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/setup.rake +0 -0
  23. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/templates/database.yml.erb +0 -0
  24. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/templates/nginx/site.conf.erb +0 -0
  25. data/lib/{capistrano-recipes → j-cap-recipes}/tasks/unicorn.rake +0 -0
  26. data/lib/{capistrano-recipes → j-cap-recipes}/unicorn.rb +0 -0
  27. data/lib/j-cap-recipes/version.rb +5 -0
  28. data/lib/j-cap-recipes.rb +3 -0
  29. metadata +48 -40
  30. checksums.yaml +0 -7
  31. data/lib/capistrano-recipes/version.rb +0 -5
  32. 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 'capistrano-recipes'
24
+ require 'j-cap-recipes'
25
25
 
26
26
  If you want to load only specified recipe:
27
27
 
28
- require 'capistrano-recipes/setup'
29
- require 'capistrano-recipes/check'
30
- require 'capistrano-recipes/nginx'
31
- require 'capistrano-recipes/monit'
32
- require 'capistrano-recipes/database'
33
- require 'capistrano-recipes/delayed_job'
34
- require 'capistrano-recipes/log'
35
- require 'capistrano-recipes/rails'
36
- require 'capistrano-recipes/unicorn'
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 'capistrano-recipes/version'
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 = Capistrano::Recipes::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/capistrano-recipes"
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
@@ -0,0 +1,5 @@
1
+ module JCap
2
+ module Recipes
3
+ VERSION = "0.0.3"
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ puts "hello"
2
+
3
+ Dir.glob('lib/capistrano/tasks/*.rb').each { |r| p r; require r }
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.2
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-30 00:00:00.000000000 Z
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
- - capistrano-recipes.gemspec
68
- - lib/capistrano-recipes.rb
69
- - lib/capistrano-recipes/check.rb
70
- - lib/capistrano-recipes/database.rb
71
- - lib/capistrano-recipes/delayed_job.rb
72
- - lib/capistrano-recipes/hpusher.rb
73
- - lib/capistrano-recipes/log.rb
74
- - lib/capistrano-recipes/monit.rb
75
- - lib/capistrano-recipes/nginx.rb
76
- - lib/capistrano-recipes/rails.rb
77
- - lib/capistrano-recipes/rake.rb
78
- - lib/capistrano-recipes/setup.rb
79
- - lib/capistrano-recipes/tasks/check.rake
80
- - lib/capistrano-recipes/tasks/database.rake
81
- - lib/capistrano-recipes/tasks/delayed_job.rake
82
- - lib/capistrano-recipes/tasks/hpusher.rake
83
- - lib/capistrano-recipes/tasks/log.rake
84
- - lib/capistrano-recipes/tasks/monit.rake
85
- - lib/capistrano-recipes/tasks/nginx.rake
86
- - lib/capistrano-recipes/tasks/rails.rake
87
- - lib/capistrano-recipes/tasks/rake.rake
88
- - lib/capistrano-recipes/tasks/setup.rake
89
- - lib/capistrano-recipes/tasks/templates/database.yml.erb
90
- - lib/capistrano-recipes/tasks/templates/nginx/site.conf.erb
91
- - lib/capistrano-recipes/tasks/unicorn.rake
92
- - lib/capistrano-recipes/unicorn.rb
93
- - lib/capistrano-recipes/version.rb
94
- homepage: https://github.com/jetthoughts/capistrano-recipes
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: 2.0.3
122
+ rubygems_version: 1.8.25
115
123
  signing_key:
116
- specification_version: 4
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
@@ -1,5 +0,0 @@
1
- module Capistrano
2
- module Recipes
3
- VERSION = "0.0.2"
4
- end
5
- end
@@ -1 +0,0 @@
1
- Dir.glob('lib/capistrano/tasks/*.rb').each { |r| require r }