capistrano-locally 0.2.3 → 0.2.4
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/bin/console +0 -0
- data/bin/setup +0 -0
- data/lib/capistrano/locally.rb +1 -1
- data/lib/capistrano/locally/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c07e682743413f8a5862183256c902c94586d7a
|
|
4
|
+
data.tar.gz: 1550959f694ff3119370a5f037846c7c98a1d370
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85e2c0495839a06b69cef6e3280f7e4443d7c5c5900424f150f112fc938c5f00eca84110c2b51a991897dc4678b3bee4b5e8b009b3fa2e3297ce6b03ec2d86f6
|
|
7
|
+
data.tar.gz: bd7bb851af86f7398992b01a992cbf429db0d356904d0b7801e70a3a4c8dabc6dd72bfe0b96e8131fdec355799c3d96927f413037943f949a2121e6a14d26233
|
data/bin/console
CHANGED
|
File without changes
|
data/bin/setup
CHANGED
|
File without changes
|
data/lib/capistrano/locally.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Capistrano
|
|
|
13
13
|
|
|
14
14
|
def on(hosts, options={}, &block)
|
|
15
15
|
return unless hosts
|
|
16
|
-
localhosts, remotehosts = hosts.partition { |h| h.hostname.to_s == 'localhost' }
|
|
16
|
+
localhosts, remotehosts = Array(hosts).partition { |h| h.hostname.to_s == 'localhost' }
|
|
17
17
|
localhost = Configuration.env.filter(localhosts).first
|
|
18
18
|
|
|
19
19
|
unless localhost.nil?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-locally
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takuto Komazaki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
version: '0'
|
|
111
111
|
requirements: []
|
|
112
112
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.
|
|
113
|
+
rubygems_version: 2.5.1
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: Capistrano plugin to simplify "localhost" deployment.
|