speedflow 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sf +2 -1
- data/bin/speedflow +2 -1
- data/lib/speedflow/commands/flow.rb +2 -1
- data/lib/speedflow/configuration.rb +2 -2
- data/lib/speedflow/core_ext/hash.rb +2 -3
- data/lib/speedflow/flow.rb +1 -1
- data/lib/speedflow/plugin/configuration.rb +1 -1
- data/lib/speedflow/plugin/manager.rb +2 -2
- data/lib/speedflow/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: 812f8aaa50045d5830a11875c2ef123e09bce60e
|
4
|
+
data.tar.gz: 13c84fc4bb343f1a91b5ae6c1cc9780a1dac2065
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4672c8ac79a202b54e74d0952ce87303cb62dfcf5eccc48e2a7952991f2b70aa72f7325c67e1f672a65a8454039c2f2ad228964df624b22b56aa28ab6a217252
|
7
|
+
data.tar.gz: 3f4d9ffc70f35e57d6ede265fb8cdd61dd387cf2267d7235283541c7600d07805dbe3b36ab122dcf40655b791dad1ee72bd500700e2b0534834e71e4a56576f8
|
data/bin/sf
CHANGED
data/bin/speedflow
CHANGED
@@ -109,10 +109,10 @@ module Speedflow
|
|
109
109
|
end
|
110
110
|
|
111
111
|
# File not found exception
|
112
|
-
class ConfigurationFileNotFound <
|
112
|
+
class ConfigurationFileNotFound < RuntimeError
|
113
113
|
end
|
114
114
|
|
115
115
|
# File format exception
|
116
|
-
class ConfigurationFileFormat <
|
116
|
+
class ConfigurationFileFormat < RuntimeError
|
117
117
|
end
|
118
118
|
end
|
@@ -6,8 +6,7 @@ class Hash
|
|
6
6
|
# hash - Default hash.
|
7
7
|
# block - Used to work outside
|
8
8
|
#
|
9
|
-
#
|
10
|
-
# rubocop:disable MethodLength, PerceivedComplexity, CyclomaticComplexity
|
9
|
+
# rubocop:disable PerceivedComplexity, CyclomaticComplexity
|
11
10
|
#
|
12
11
|
# Returns Hash.
|
13
12
|
def replace_values(pattern, hash = nil, &block)
|
@@ -26,7 +25,7 @@ class Hash
|
|
26
25
|
end
|
27
26
|
hash
|
28
27
|
end
|
29
|
-
# rubocop:enable
|
28
|
+
# rubocop:enable PerceivedComplexity, CyclomaticComplexity
|
30
29
|
|
31
30
|
# Public: Change Hash values with environment values.
|
32
31
|
#
|
data/lib/speedflow/flow.rb
CHANGED
@@ -120,11 +120,11 @@ module Speedflow
|
|
120
120
|
end
|
121
121
|
|
122
122
|
# Plugin exception
|
123
|
-
class PluginNotFound <
|
123
|
+
class PluginNotFound < RuntimeError
|
124
124
|
end
|
125
125
|
|
126
126
|
# Plugin action exception
|
127
|
-
class PluginActionNotFound <
|
127
|
+
class PluginActionNotFound < RuntimeError
|
128
128
|
end
|
129
129
|
end
|
130
130
|
end
|
data/lib/speedflow/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: speedflow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julien Breux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: require_all
|