fastlane-plugin-svn_commit 0.1.0 → 0.1.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dee14abb4196dde3cad35e8998e15ac82dda8c66
|
4
|
+
data.tar.gz: aa5c0a2775cce9144932a6699c11bfcac18a6c5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e618ef679a7270938c134003a034b71bebbeafbef4a8af60096395ab7f73cc49a7e499e8961ba7c594fc35a71893563b5102a92f77bf58aaeedb1f927454eb91
|
7
|
+
data.tar.gz: 12f72bcbe610f890a2106d76c8b3482dab24ede5ad44b44ee8cb62dce1e9c4ecfac9087ffe3e5439993a3ca2e159f2bb3c8e215152e614137d5c23fde054eff5
|
@@ -28,23 +28,13 @@ module Fastlane
|
|
28
28
|
# Optional:
|
29
29
|
"commit to svn repos with fastlane"
|
30
30
|
end
|
31
|
-
|
32
31
|
def self.available_options
|
33
32
|
[
|
34
33
|
FastlaneCore::ConfigItem.new(key: :path,
|
35
|
-
|
36
|
-
|
37
|
-
verify_block: proc do |value|
|
38
|
-
if value.kind_of?(String)
|
39
|
-
UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value)
|
40
|
-
else
|
41
|
-
value.each do |x|
|
42
|
-
UI.user_error!("Couldn't find file at path '#{x}'") unless File.exist?(x)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end),
|
34
|
+
description: "The file you want to commit",
|
35
|
+
is_string: false),
|
46
36
|
FastlaneCore::ConfigItem.new(key: :message,
|
47
|
-
|
37
|
+
description: "The commit message that should be used")
|
48
38
|
]
|
49
39
|
end
|
50
40
|
|