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: 0ce0a80b9079e94bfef58ea0f63a54e93ed36ba8
4
- data.tar.gz: 4bdecd8181987d75f3248fe5669043d528567e9b
3
+ metadata.gz: dee14abb4196dde3cad35e8998e15ac82dda8c66
4
+ data.tar.gz: aa5c0a2775cce9144932a6699c11bfcac18a6c5a
5
5
  SHA512:
6
- metadata.gz: 4bd8fbd75f4b52fc6577480f7939c99f9272d6683863604b5ef3e31b4eac162deeed63d9c0bbca79a6b092fbbf3955ed75545938b65099f6c0eab105f4d20aa9
7
- data.tar.gz: 68f9700ef0f00fae32589f8154b926faf8504e3debbebe029dd65815a78ad22de2a18f2f487f4f4e81c96c18dc1b2606054fe0a58c4f2880ac080313c75c7a2b
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
- description: "The file you want to commit",
36
- s_string: false,
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
- description: "The commit message that should be used")
37
+ description: "The commit message that should be used")
48
38
  ]
49
39
  end
50
40
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module SvnCommit
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-svn_commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - cleexiang