j-cap-recipes 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +9 -3
- data/lib/capistrano-recipes/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3d5e582dd6bba0e66897050d7504864c7036b2d
|
|
4
|
+
data.tar.gz: 3296129f3d621be7b6e24c1f68637084b558cda1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24378404474c10c3198f77f7759b4a930323a9518f63c7738023f84e76c75011555f16715d779c30cd23c097dc746443070759e8ed0c2c71d1b993c57df00a3d
|
|
7
|
+
data.tar.gz: 3bdf34bb0b3c812fe94238badef699e5e999cd9cacae669663bd1e0ff32614631a245bbabfbdfe743ddbd3156a4ce0c1a924a8f98372e6a0dfcf3b7c8d40e5db
|
data/README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Capistrano::Recipes
|
|
2
|
+
[](http://badge.fury.io/rb/j-cap-recipes)
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
A simple number of capistrano recipes to deploy rails application using Capistrano v3.
|
|
4
5
|
|
|
5
6
|
## Installation
|
|
6
7
|
|
|
7
8
|
Add this line to your application's Gemfile:
|
|
8
9
|
|
|
9
|
-
gem '
|
|
10
|
+
gem 'j-cap-recipes', require: false, group: :development
|
|
10
11
|
|
|
11
12
|
And then execute:
|
|
12
13
|
|
|
@@ -14,7 +15,7 @@ And then execute:
|
|
|
14
15
|
|
|
15
16
|
Or install it yourself as:
|
|
16
17
|
|
|
17
|
-
$ gem install
|
|
18
|
+
$ gem install j-cap-recipes
|
|
18
19
|
|
|
19
20
|
## Usage
|
|
20
21
|
|
|
@@ -34,6 +35,11 @@ If you want to load only specified recipe:
|
|
|
34
35
|
require 'capistrano-recipes/rails'
|
|
35
36
|
require 'capistrano-recipes/unicorn'
|
|
36
37
|
|
|
38
|
+
### Nginx
|
|
39
|
+
### Setup
|
|
40
|
+
### Check
|
|
41
|
+
### Monit
|
|
42
|
+
|
|
37
43
|
## Contributing
|
|
38
44
|
|
|
39
45
|
1. Fork it
|