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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b84d3a3647bd9e7b0097cd0c117cad938fbc44a
4
- data.tar.gz: d7dd6dc0d4778fa37b650cf7e1445f17c0272c2e
3
+ metadata.gz: 102e38a77a27a880b1c6ec5a3f94656064a4c561
4
+ data.tar.gz: 70c7c7110645748eea0b2923e4b3373b0a28e31b
5
5
  SHA512:
6
- metadata.gz: f9e8d8b11ad735ffbe28aed7bdfe732f92dc0be4906831c3dfe8661126338f2bbf0b2cdf65f2ba2efa0b570cd0c0260e5c2c6a376f7ba5cd4400edd60fb7682a
7
- data.tar.gz: 6480ba39f95db697a5f74c7719d8d2922114e80a8f5cf573d9470cd3036f4ae46d88558374a2fddf9ebe9b1436e750ac1df9fb9703b84eb166b04980c8c32c35
6
+ metadata.gz: ce4b0ad74832ac5e6f508c702c783110537ceaa813dd1a468b6650470628ca00a087841c5cd9b5e2ebb42b91512760ecc7b4eef5950407815ff4e11b9b0c60a3
7
+ data.tar.gz: 2d946dfb3c55970b1611155605e7a38e69780e830cd3a3f9b828c86153eaf2e84cb6619a0372c576d470dacb339f56605af00077601910046b299c6c66094a05
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.0.0
2
+ * Remove deprecated `deploy:` tasks.
3
+
1
4
  # 1.2.0
2
5
  * Namespace change: deprecate `deploy:` in favour of `thin:`.
3
6
  * Add `thin_config_path` setting.
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Alessandro Lepore
1
+ Copyright (c) 2017 Alessandro Lepore
2
2
 
3
3
  MIT License
4
4
 
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', '~> 1.2.0'
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.
@@ -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 = "1.2.0"
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}
@@ -1,2 +1 @@
1
1
  load File.expand_path('../tasks/thin.cap', __FILE__)
2
- load File.expand_path('../tasks/deploy.cap', __FILE__)
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.2.0
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: 2015-11-04 00:00:00.000000000 Z
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.4.6
106
+ rubygems_version: 2.5.1
108
107
  signing_key:
109
108
  specification_version: 4
110
109
  summary: Thin tasks for Capistrano 3.x
@@ -1,10 +0,0 @@
1
- namespace :deploy do
2
- commands = %w(start stop restart)
3
-
4
- commands.each do |command|
5
- task command do
6
- puts "DEPRECATED - Please use thin:#{command}"
7
- invoke "thin:#{command}"
8
- end
9
- end
10
- end