fastlane/lib/fastlane/actions/version_get_podspec.rb in fastlane-2.187.0 vs fastlane/lib/fastlane/actions/version_get_podspec.rb in fastlane-2.188.0
- old
+ new
@@ -26,20 +26,19 @@
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :path,
env_name: "FL_VERSION_PODSPEC_PATH",
description: "You must specify the path to the podspec file",
- is_string: true,
code_gen_sensitive: true,
default_value: Dir["*.podspec"].last,
default_value_dynamic: true,
verify_block: proc do |value|
UI.user_error!("Please pass a path to the `version_get_podspec` action") if value.length == 0
end),
FastlaneCore::ConfigItem.new(key: :require_variable_prefix,
env_name: "FL_VERSION_BUMP_PODSPEC_VERSION_REQUIRE_VARIABLE_PREFIX",
description: "true by default, this is used for non CocoaPods version bumps only",
- is_string: false,
+ type: Boolean,
default_value: true)
]
end
def self.output