capistrano-thin 1.2.0 → 2.0.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/CHANGELOG.md +3 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -6
- data/capistrano-thin.gemspec +1 -1
- data/lib/capistrano/thin.rb +0 -1
- metadata +3 -4
- data/lib/capistrano/tasks/deploy.cap +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 102e38a77a27a880b1c6ec5a3f94656064a4c561
|
|
4
|
+
data.tar.gz: 70c7c7110645748eea0b2923e4b3373b0a28e31b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce4b0ad74832ac5e6f508c702c783110537ceaa813dd1a468b6650470628ca00a087841c5cd9b5e2ebb42b91512760ecc7b4eef5950407815ff4e11b9b0c60a3
|
|
7
|
+
data.tar.gz: 2d946dfb3c55970b1611155605e7a38e69780e830cd3a3f9b828c86153eaf2e84cb6619a0372c576d470dacb339f56605af00077601910046b299c6c66094a05
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -6,11 +6,6 @@ Simple Thin specific tasks for Capistrano 3.x, implements the following tasks:
|
|
|
6
6
|
thin:restart
|
|
7
7
|
thin:start
|
|
8
8
|
thin:stop
|
|
9
|
-
|
|
10
|
-
# DEPRECATED - will be removed later
|
|
11
|
-
deploy:restart
|
|
12
|
-
deploy:start
|
|
13
|
-
deploy:stop
|
|
14
9
|
```
|
|
15
10
|
|
|
16
11
|
## Configuration
|
|
@@ -28,7 +23,7 @@ set :thin_config_path, -> { "#{shared_path}/config/thin.yml" }
|
|
|
28
23
|
Add this line to your application's Gemfile:
|
|
29
24
|
|
|
30
25
|
```ruby
|
|
31
|
-
gem 'capistrano-thin', '~>
|
|
26
|
+
gem 'capistrano-thin', '~> 2.0.0'
|
|
32
27
|
```
|
|
33
28
|
|
|
34
29
|
If you use RVM on the server also add the `capistrano-rvm` gem.
|
data/capistrano-thin.gemspec
CHANGED
|
@@ -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-thin"
|
|
7
|
-
spec.version = "
|
|
7
|
+
spec.version = "2.0.0"
|
|
8
8
|
spec.authors = ["Alessandro Lepore"]
|
|
9
9
|
spec.email = ["a.lepore@freegoweb.it"]
|
|
10
10
|
spec.summary = %q{Thin tasks for Capistrano 3.x}
|
data/lib/capistrano/thin.rb
CHANGED
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:
|
|
4
|
+
version: 2.0.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:
|
|
11
|
+
date: 2017-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -81,7 +81,6 @@ files:
|
|
|
81
81
|
- Rakefile
|
|
82
82
|
- capistrano-thin.gemspec
|
|
83
83
|
- lib/capistrano-thin.rb
|
|
84
|
-
- lib/capistrano/tasks/deploy.cap
|
|
85
84
|
- lib/capistrano/tasks/thin.cap
|
|
86
85
|
- lib/capistrano/thin.rb
|
|
87
86
|
homepage: https://github.com/freego/capistrano-thin
|
|
@@ -104,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
103
|
version: '0'
|
|
105
104
|
requirements: []
|
|
106
105
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
106
|
+
rubygems_version: 2.5.1
|
|
108
107
|
signing_key:
|
|
109
108
|
specification_version: 4
|
|
110
109
|
summary: Thin tasks for Capistrano 3.x
|