capistrano-psw 1.0.0.pre25 → 1.0.0.pre26
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/lib/capistrano/psw/task_loader.rb +7 -11
- data/lib/capistrano/psw/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b45c0181d30ed32ef122ba22294855ca16d5ae4f
|
|
4
|
+
data.tar.gz: da3b76a4f7f672f7ac5cda85fe9aa43406672d54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83dfa5db7424e20d2c4e1d21e8f93a4d1712d86f82ecf636f14564b8ac17a109592278d112a37e30f76acbf5e693a2fb41e20bfa29be9f4282f5414f09ba1587
|
|
7
|
+
data.tar.gz: 4b698689b09e30fd3ea63e3545b668463f36168eca57f8741f764dfaedece2b91af7441f77ec05325c6706d400ed0617f2273f6149bddba3aa66b9e23c897bba
|
|
@@ -13,19 +13,15 @@
|
|
|
13
13
|
module Capistrano
|
|
14
14
|
module Psw
|
|
15
15
|
|
|
16
|
-
# Static method for loading Capistrano tasks from 'resources/lib/capistrano/tasks'.
|
|
17
|
-
#
|
|
18
|
-
# @return n/a
|
|
19
16
|
def self.load_tasks
|
|
20
|
-
puts "
|
|
17
|
+
puts "DEPRECATED. The capistrano-psw tasks are now auto-loaded, and this method is no longer required."
|
|
18
|
+
end
|
|
21
19
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
load task
|
|
28
|
-
end
|
|
20
|
+
$LOAD_PATH.each do |dir|
|
|
21
|
+
if (dir.end_with?("resources/lib/capistrano/tasks"))
|
|
22
|
+
Dir.foreach(dir) do |task|
|
|
23
|
+
if (task.end_with?(".cap"))
|
|
24
|
+
load task
|
|
29
25
|
end
|
|
30
26
|
end
|
|
31
27
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-psw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.
|
|
4
|
+
version: 1.0.0.pre26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lexmark International Technology S.A
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-03-
|
|
11
|
+
date: 2014-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|