fastlane/lib/fastlane/actions/git_submodule_update.rb in fastlane-2.181.0 vs fastlane/lib/fastlane/actions/git_submodule_update.rb in fastlane-2.182.0
- old
+ new
@@ -11,24 +11,23 @@
#####################################################
# @!group Documentation
#####################################################
def self.description
- "Executes a git submodule command"
+ "Executes a git submodule update command"
end
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :recursive,
- description: "Should the submodules be updated recursively",
- type: Boolean,
- default_value: false),
+ description: "Should the submodules be updated recursively?",
+ type: Boolean,
+ default_value: false),
FastlaneCore::ConfigItem.new(key: :init,
- description: "Should the submodules be initiated before update",
- type: Boolean,
- is_string: false,
- default_value: false)
+ description: "Should the submodules be initiated before update?",
+ type: Boolean,
+ default_value: false)
]
end
def self.output
end
@@ -40,9 +39,18 @@
["braunico"]
end
def self.is_supported?(platform)
return true
+ end
+
+ def self.example_code
+ [
+ 'git_submodule_update',
+ 'git_submodule_update(recursive: true)',
+ 'git_submodule_update(init: true)',
+ 'git_submodule_update(recursive: true, init: true)'
+ ]
end
def self.category
:source_control
end