capistrano3-php5fpm 0.1.0 → 0.1.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 +7 -0
- data/capistrano3-php5fpm.gemspec +19 -0
- metadata +17 -39
- data/Gemfile +0 -4
- data/capistrano-php5fpm.gemspec +0 -21
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7f6c5ccd0b5fbc7556c924c6620d24188ceeadd6e0d046b796b970ad890b3533
|
4
|
+
data.tar.gz: 9588755d781b51587a66876ae5f63d68190b80291e8eee98a97abdac9ab6d6a4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: '0945232d13f723addad0fa6cda82de82b130b00fe113588e5ca1e663621d79cf073c3303c29027dfd21f60ca360046884fa41ba1c6f0ef200a05e3f819397a63'
|
7
|
+
data.tar.gz: 461c24412c75466ffda976540ca2c27fe337576d26860e1f3775d2d44d7be5c290f01756301a8b96558aaa2d216d46c12175f0e868e73d988f0849c74551d50f
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = 'capistrano3-php5fpm'
|
7
|
+
gem.version = '0.1.2'
|
8
|
+
gem.authors = ['Sebastian Krebs']
|
9
|
+
gem.email = ['sebastian@krebs.one']
|
10
|
+
gem.description = %q{Adds support to php5-fpm for Capistrano 3.x}
|
11
|
+
gem.summary = %q{Adds support to php5-fpm for Capistrano 3.x}
|
12
|
+
gem.homepage = 'https://gitlab.com/kingcrunch/capistrano3-php5fpm'
|
13
|
+
gem.license = 'MIT'
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.require_paths = ['lib']
|
17
|
+
|
18
|
+
gem.add_dependency 'capistrano', '>= 3.0.0'
|
19
|
+
end
|
metadata
CHANGED
@@ -1,85 +1,63 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano3-php5fpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Sebastian Krebs
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2023-01-10 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: capistrano
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: 3.0.0
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 3.0.0
|
30
|
-
-
|
31
|
-
name: rake
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: '0'
|
38
|
-
type: :development
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: '0'
|
46
|
-
description: Adds suuport to php5-fpm for Capistrano 3.x
|
27
|
+
description: Adds support to php5-fpm for Capistrano 3.x
|
47
28
|
email:
|
48
|
-
- krebs.
|
29
|
+
- sebastian@krebs.one
|
49
30
|
executables: []
|
50
31
|
extensions: []
|
51
32
|
extra_rdoc_files: []
|
52
33
|
files:
|
53
|
-
- Gemfile
|
54
34
|
- LICENSE.txt
|
55
35
|
- README.md
|
56
|
-
-
|
36
|
+
- capistrano3-php5fpm.gemspec
|
57
37
|
- lib/capistrano-php5fpm.rb
|
58
38
|
- lib/capistrano/php5fpm.rb
|
59
39
|
- lib/capistrano/tasks/php5fpm.rake
|
60
|
-
homepage: https://
|
40
|
+
homepage: https://gitlab.com/kingcrunch/capistrano3-php5fpm
|
61
41
|
licenses:
|
62
42
|
- MIT
|
63
|
-
|
43
|
+
metadata: {}
|
44
|
+
post_install_message:
|
64
45
|
rdoc_options: []
|
65
46
|
require_paths:
|
66
47
|
- lib
|
67
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
-
none: false
|
69
49
|
requirements:
|
70
|
-
- -
|
50
|
+
- - ">="
|
71
51
|
- !ruby/object:Gem::Version
|
72
52
|
version: '0'
|
73
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
54
|
requirements:
|
76
|
-
- -
|
55
|
+
- - ">="
|
77
56
|
- !ruby/object:Gem::Version
|
78
57
|
version: '0'
|
79
58
|
requirements: []
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
summary: Adds suuport to php5-fpm for Capistrano 3.x
|
59
|
+
rubygems_version: 3.3.25
|
60
|
+
signing_key:
|
61
|
+
specification_version: 4
|
62
|
+
summary: Adds support to php5-fpm for Capistrano 3.x
|
85
63
|
test_files: []
|
data/Gemfile
DELETED
data/capistrano-php5fpm.gemspec
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = 'capistrano3-php5fpm'
|
7
|
-
spec.version = '0.1.0'
|
8
|
-
spec.authors = ['Sebastian Krebs']
|
9
|
-
spec.email = ['krebs.seb@gmail.com']
|
10
|
-
spec.description = %q{Adds suuport to php5-fpm for Capistrano 3.x}
|
11
|
-
spec.summary = %q{Adds suuport to php5-fpm for Capistrano 3.x}
|
12
|
-
spec.homepage = 'https://github.com/KingCrunch/capistrano-php5fpm'
|
13
|
-
spec.license = 'MIT'
|
14
|
-
|
15
|
-
spec.files = `git ls-files`.split($/)
|
16
|
-
spec.require_paths = ['lib']
|
17
|
-
|
18
|
-
spec.add_dependency 'capistrano', '>= 3.0.0'
|
19
|
-
|
20
|
-
spec.add_development_dependency 'rake'
|
21
|
-
end
|