Class: Fastlane::Actions::DownloadManifestAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::DownloadManifestAction
- Defined in:
- lib/fastlane/plugin/apprepo/actions/download_manifest.rb
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .is_supported?(_platform) ⇒ Boolean
Class Method Summary collapse
Class Method Details
.authors ⇒ Object
31 32 33 |
# File 'lib/fastlane/plugin/apprepo/actions/download_manifest.rb', line 31 def self. ['[email protected]'] end |
.available_options ⇒ Object
27 28 29 |
# File 'lib/fastlane/plugin/apprepo/actions/download_manifest.rb', line 27 def self. [] end |
.description ⇒ Object
23 24 25 |
# File 'lib/fastlane/plugin/apprepo/actions/download_manifest.rb', line 23 def self.description 'Runs the Apprepo plugin' end |
.is_supported?(_platform) ⇒ Boolean
35 36 37 |
# File 'lib/fastlane/plugin/apprepo/actions/download_manifest.rb', line 35 def self.is_supported?(_platform) true end |
.run(_params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/fastlane/plugin/apprepo/actions/download_manifest.rb', line 4 def self.run(_params) puts _params command :download_manifest do |c| c.syntax = 'apprepo download_manifest' c.description = 'Download metadata only' c.action do |_args, | config = FastlaneCore::Configuration available_opts = Apprepo::Options. = config.create(available_opts, .__hash__) .load_configuration_file('Repofile') Apprepo::Runner.new().download_manifest end end end |