class Fastlane::Actions::GsheetMetadataAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 29 def self.available_options [ # FastlaneCore::ConfigItem.new(key: :your_option, # env_name: "GSHEET_METADATA_YOUR_OPTION", # description: "A description of your option", # optional: false, # type: String) ] end
description()
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 12 def self.description "Generate metadata from Google Spreadsheet" end
details()
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 24 def self.details # Optional: "Use a Google Spreadsheet and the plugin will generate txt files for every languages" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 39 def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform # # [:ios, :mac, :android].include?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 20 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/gsheet_metadata/actions/gsheet_metadata_action.rb, line 7 def self.run(params) Helper::GsheetMetadataHelper.metadata UI.message("The gsheet_metadata plugin is working!") end