capistrano-locally 0.2.1 → 0.2.3

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: b02ccd484763f78efb6669f111d9e5c6a08a6832
4
- data.tar.gz: 28638978f8101ebdf6d9e2a2b03da8807b2aaf6b
3
+ metadata.gz: 652349f9962d5d8c158bad782fdac729cff9e134
4
+ data.tar.gz: 9ebb7c24b3f230eb1aefffc120cc496584beee64
5
5
  SHA512:
6
- metadata.gz: 537b9be25aa7b73d334abbecbde10381319b22a03551336ae4b690999781e2fc95fd8f8ac2d3fa528af6fbfb70716c7ea7a063ff08488fcc25f89a502d8207f0
7
- data.tar.gz: 6494aee63653ce939eb06da0e74a05161cfce6b041e45082e7afdafa60cef1b1a6e095a76b31f6dfcd528b0c77259202e5d8d387e39b350dc3c45dc8e83f6121
6
+ metadata.gz: 6474da891c37ff79e251ea59c86e3d30048c2eb1269d7f5866def6b5303edc02f9b52893142ba1bb1c084772cad6393125147733f3c4c9ef89e21b2fa1b817dc
7
+ data.tar.gz: 06c590e5834b11669ac47fbf96e35a35f326de000ce2f3fba02a5aca3fe2a23ead6fd3f2ee02bc267dd2883cb16e69b4c4c6b520f7fb1dd92134614c31dd0ad9
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Takuto Komazaki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -37,9 +37,9 @@ Require in `Capfile`:
37
37
  `config/deploy/staging_and_local.rb`
38
38
 
39
39
  # typically server config is:
40
- server 'my.remotehost.com', roles: w%{app web}, user: 'deploy', key: '/path/to/key.pem'
40
+ server 'my.remotehost.com', roles: %w{app web}, user: 'deploy', key: '/path/to/key.pem'
41
41
  # localhost config is:
42
- server 'localhost', roles: w%{app web} # no need to set SSH configs.
42
+ server 'localhost', roles: %w{app web} # no need to set SSH configs.
43
43
 
44
44
 
45
45
  ## Development
@@ -52,3 +52,6 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
52
52
 
53
53
  Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/capistrano-locally.
54
54
 
55
+ ## License
56
+
57
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/bin/console CHANGED
File without changes
data/bin/setup CHANGED
File without changes
@@ -19,6 +19,7 @@ But when limiting to some simple case that deployment to localhost, SSH isn't so
19
19
  A `capistrano-locally` deploys without SSH only when a target host named "localhost".
20
20
  EOS
21
21
  spec.homepage = "https://github.com/komazarari/capistrano-locally"
22
+ spec.license = "MIT"
22
23
 
23
24
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
25
  spec.bindir = "exe"
@@ -24,7 +24,7 @@ module Capistrano
24
24
  end.new(localhost, &block).run
25
25
  end
26
26
 
27
- original_on(remotehosts, options={}, &block)
27
+ original_on(remotehosts, options, &block)
28
28
  end
29
29
 
30
30
  private
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Locally
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.3"
4
4
  end
5
5
  end
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.1
4
+ version: 0.2.3
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-01-23 00:00:00.000000000 Z
11
+ date: 2016-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -82,6 +82,7 @@ files:
82
82
  - ".gitignore"
83
83
  - ".rspec"
84
84
  - Gemfile
85
+ - LICENSE.txt
85
86
  - README.md
86
87
  - Rakefile
87
88
  - bin/console
@@ -90,7 +91,8 @@ files:
90
91
  - lib/capistrano/locally.rb
91
92
  - lib/capistrano/locally/version.rb
92
93
  homepage: https://github.com/komazarari/capistrano-locally
93
- licenses: []
94
+ licenses:
95
+ - MIT
94
96
  metadata: {}
95
97
  post_install_message:
96
98
  rdoc_options: []