Class: Fastlane::Actions::GooglePlayTrackVersionCodesAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/google_play_track_version_codes.rb

Constant Summary collapse

OPTIONS =

Supply::Options.available_options keys that apply to this action.

[
  :package_name,
  :track,
  :key,
  :issuer,
  :json_key,
  :json_key_data,
  :root_url,
  :timeout
]

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



54
55
56
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 54

def self.authors
  ["panthomakos"]
end

.available_optionsObject



38
39
40
41
42
43
44
45
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 38

def self.available_options
  require 'supply'
  require 'supply/options'

  Supply::Options.available_options.select do |option|
    OPTIONS.include?(option.key)
  end
end

.categoryObject



68
69
70
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 68

def self.category
  :misc
end

.descriptionObject



30
31
32
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 30

def self.description
  "Retrieves version codes for a Google Play track"
end

.detailsObject



34
35
36
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 34

def self.details
  "More information: [https://docs.fastlane.tools/actions/supply/](https://docs.fastlane.tools/actions/supply/)"
end

.example_codeObject



62
63
64
65
66
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 62

def self.example_code
  [
    'google_play_track_version_codes'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



58
59
60
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 58

def self.is_supported?(platform)
  platform == :android
end

.outputObject



47
48
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 47

def self.output
end

.return_valueObject



50
51
52
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 50

def self.return_value
  "Array of integers representing the version codes for the given Google Play track"
end

.run(params) ⇒ Object



16
17
18
19
20
21
22
23
24
# File 'fastlane/lib/fastlane/actions/google_play_track_version_codes.rb', line 16

def self.run(params)
  require 'supply'
  require 'supply/options'
  require 'supply/reader'

  Supply.config = params

  Supply::Reader.new.track_version_codes
end