capistrano-thin 1.0.0 → 1.1.0
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/capistrano-thin.gemspec +2 -2
- data/lib/capistrano/tasks/thin.cap +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 654257ff44226c934d50981a6c772b58449da010
|
|
4
|
+
data.tar.gz: d604ca74d1910c63a224ba2607e139906d730f8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d4871286836cef7eac49832c68b5ba613b49a97380a69e845330f455419870e4ddc600d5faaa9192055b1ea03a4e856ff423d689986ad1fb46d2498bbb3c87e
|
|
7
|
+
data.tar.gz: 857e47b91631c839243268ff769eecff98f6a014cfcc7ac4ffdb4f2c9c3f17b4150aeaad16b3ed14191a7158be252d1e9c0ed841c33a8cf3d26f8b5dcf2333c0
|
data/capistrano-thin.gemspec
CHANGED
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "capistrano-thin"
|
|
7
|
-
spec.version = '1.
|
|
7
|
+
spec.version = '1.1.0'
|
|
8
8
|
spec.authors = ["Alessandro Lepore"]
|
|
9
9
|
spec.email = ["a.lepore@freegoweb.it"]
|
|
10
10
|
spec.summary = %q{Thin support for Capistrano 3.x}
|
|
11
11
|
spec.description = %q{Thin support for Capistrano 3.x}
|
|
12
|
-
spec.homepage = ""
|
|
12
|
+
spec.homepage = "https://github.com/freego/capistrano-thin"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files`.split($/)
|
|
@@ -5,7 +5,7 @@ namespace :deploy do
|
|
|
5
5
|
task command do
|
|
6
6
|
on roles(:app), in: :sequence, wait: 5 do
|
|
7
7
|
within current_path do
|
|
8
|
-
execute :bundle, "exec thin #{command} -
|
|
8
|
+
execute :bundle, "exec thin #{command} -C config/thin/#{fetch(:stage)}.yml"
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-thin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alessandro Lepore
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -82,7 +82,7 @@ files:
|
|
|
82
82
|
- lib/capistrano-thin.rb
|
|
83
83
|
- lib/capistrano/tasks/thin.cap
|
|
84
84
|
- lib/capistrano/thin.rb
|
|
85
|
-
homepage:
|
|
85
|
+
homepage: https://github.com/freego/capistrano-thin
|
|
86
86
|
licenses:
|
|
87
87
|
- MIT
|
|
88
88
|
metadata: {}
|
|
@@ -102,8 +102,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
102
|
version: '0'
|
|
103
103
|
requirements: []
|
|
104
104
|
rubyforge_project:
|
|
105
|
-
rubygems_version: 2.
|
|
105
|
+
rubygems_version: 2.3.0
|
|
106
106
|
signing_key:
|
|
107
107
|
specification_version: 4
|
|
108
108
|
summary: Thin support for Capistrano 3.x
|
|
109
109
|
test_files: []
|
|
110
|
+
has_rdoc:
|