capistrano-php-fpm 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34aefc062882a011227bac86b80af859e5c8d72d
4
- data.tar.gz: 3c0795098334beb3bf68b3324f637049eeda67c9
3
+ metadata.gz: 3152f2577adc477f1256d80b157c02a4e0dbf7d0
4
+ data.tar.gz: 3d8caf535354a268de68af4d3f1d93ddc56e89e4
5
5
  SHA512:
6
- metadata.gz: f648467fa6a0d4d4a406e590e9cd511204af89b6371fc730e5e42b764a1363e64a08c83a6d9ba13538266f47f551fe8a02c0625403b72ea9657b462c5a151b8f
7
- data.tar.gz: 22b60bf3549d8f61de49902658e8cf93c7c54be1ddd6cf4635dd0b5322bd1cedf0361a37a779eb4c39fa7c0714d8b30842625cac44a9c514482db49fb4bf1362
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 before deploy:updated as part of Capistrano's default deploy, or can be run in isolation with cap production php_fpm:reload
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
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano-php-fpm"
7
- spec.version = '0.1.0'
7
+ spec.version = '0.1.1'
8
8
  spec.authors = ["Emil Kilhage"]
9
9
  spec.email = ["emil.kilhage@glooby.com"]
10
10
 
@@ -6,7 +6,7 @@ namespace :php_fpm do
6
6
  end
7
7
  end
8
8
 
9
- before 'deploy:updated', 'php_fpm:reload'
9
+ after 'deploy:updated', 'php_fpm:reload'
10
10
  end
11
11
 
12
12
  namespace :load do
data/script/bootstrap ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+
3
+ bundle install
data/script/release ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+
3
+ rake release
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.0
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