Class: Fastlane::Actions::PhraseappAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::PhraseappAction
- Defined in:
- lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .return_value ⇒ Object
- .run(params) ⇒ Object
Class Method Details
.authors ⇒ Object
16 17 18 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb', line 16 def self. ["Issarapong Poesua"] end |
.available_options ⇒ Object
29 30 31 32 33 34 35 36 37 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb', line 29 def self. [ FastlaneCore::ConfigItem.new(key: :command, env_name: "PHRASEAPP_COMMAND", description: "Arguments will be passed to Phraseapp CLI", optional: false, type: String) ] end |
.description ⇒ Object
12 13 14 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb', line 12 def self.description "a phraseapp-cli tool wrapper" end |
.details ⇒ Object
24 25 26 27 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb', line 24 def self.details # Optional: "a phraseapp-cli tool wrapper" end |
.is_supported?(platform) ⇒ Boolean
39 40 41 42 43 44 45 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_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 ⇒ Object
20 21 22 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_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) ⇒ Object
7 8 9 10 |
# File 'lib/fastlane/plugin/phraseapp/actions/phraseapp_action.rb', line 7 def self.run(params) raise 'phraseapp-cli is not installed 💣' unless Helper::PhraseappHelper.cli_exist? Helper::PhraseappHelper.execute(command: params[:command]) end |