capistrano-php-fpm 0.1.0 → 0.1.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 +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +34 -0
- data/README.md +2 -6
- data/capistrano-php-fpm.gemspec +1 -1
- data/lib/capistrano/tasks/php-fpm.rake +1 -1
- data/script/bootstrap +3 -0
- data/script/release +3 -0
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3152f2577adc477f1256d80b157c02a4e0dbf7d0
|
|
4
|
+
data.tar.gz: 3d8caf535354a268de68af4d3f1d93ddc56e89e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deb0a48bd1a14c21a5624d8d3383447063425266e0bdceaf1c7b2c76e9f3a2ffaee1d539dd263ee0419867407d9d6f71affeb1ba501bf9da5e91ad1408d2705a
|
|
7
|
+
data.tar.gz: fb83ffb3fe35f0d48df4907d4dafd7442ebf2816c2335649480a5e72e98ac6536e3ef0889be63679d9cfb6bb411efedc939662765d9d48563c11c911d4eefe40
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
capistrano-php-fpm (0.1.1)
|
|
5
|
+
capistrano (>= 3.0.0)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
capistrano (3.4.0)
|
|
11
|
+
i18n
|
|
12
|
+
rake (>= 10.0.0)
|
|
13
|
+
sshkit (~> 1.3)
|
|
14
|
+
colorize (0.7.4)
|
|
15
|
+
i18n (0.7.0)
|
|
16
|
+
net-scp (1.2.1)
|
|
17
|
+
net-ssh (>= 2.6.5)
|
|
18
|
+
net-ssh (2.9.2)
|
|
19
|
+
rake (10.4.2)
|
|
20
|
+
sshkit (1.7.1)
|
|
21
|
+
colorize (>= 0.7.0)
|
|
22
|
+
net-scp (>= 1.1.2)
|
|
23
|
+
net-ssh (>= 2.8.0)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
bundler (~> 1.10)
|
|
30
|
+
capistrano-php-fpm!
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
|
|
33
|
+
BUNDLED WITH
|
|
34
|
+
1.10.5
|
data/README.md
CHANGED
|
@@ -27,9 +27,7 @@ Require in Capfile to use the default task:
|
|
|
27
27
|
require 'capistrano/php-fpm'
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
The task will run
|
|
31
|
-
|
|
32
|
-
The task will run before `deploy:updated` as part of Capistrano's default deploy,
|
|
30
|
+
The task will run after `deploy:updated` as part of Capistrano's default deploy,
|
|
33
31
|
or can be run in isolation with `cap production php_fpm:reload`
|
|
34
32
|
|
|
35
33
|
Configurable options:
|
|
@@ -41,9 +39,7 @@ set :php_fpm_roles, :all # default
|
|
|
41
39
|
|
|
42
40
|
## Development
|
|
43
41
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
42
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `capistrano-php-fpm.gemspec`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
47
43
|
|
|
48
44
|
## Contributing
|
|
49
45
|
|
data/capistrano-php-fpm.gemspec
CHANGED
data/script/bootstrap
ADDED
data/script/release
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-php-fpm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emil Kilhage
|
|
@@ -59,14 +59,18 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".gitignore"
|
|
62
63
|
- CODE_OF_CONDUCT.md
|
|
63
64
|
- Gemfile
|
|
65
|
+
- Gemfile.lock
|
|
64
66
|
- LICENSE
|
|
65
67
|
- README.md
|
|
66
68
|
- Rakefile
|
|
67
69
|
- capistrano-php-fpm.gemspec
|
|
68
70
|
- lib/capistrano/php-fpm.rb
|
|
69
71
|
- lib/capistrano/tasks/php-fpm.rake
|
|
72
|
+
- script/bootstrap
|
|
73
|
+
- script/release
|
|
70
74
|
homepage: https://github.com/glooby/capistrano-php-fpm
|
|
71
75
|
licenses:
|
|
72
76
|
- MIT
|