class Fastlane::Actions::HelloTestAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 13
def self.authors
  ["Gianfranco Manganiello"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 26
def self.available_options
  [
    # FastlaneCore::ConfigItem.new(key: :your_option,
    #                         env_name: "HELLO_TEST_YOUR_OPTION",
    #                      description: "A description of your option",
    #                         optional: false,
    #                             type: String)
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 9
def self.description
  "test"
end
details() click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 21
def self.details
  # Optional:
  "test for example"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 36
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
  #
  # [:ios, :mac, :android].include?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 17
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(filter: nil, platform: nil) click to toggle source
# File lib/fastlane/plugin/hello_test/actions/hello_test_action.rb, line 4
def self.run(filter: nil, platform: nil)
  UI.message("The hello_test plugin is working!")
  puts 'Hello!...'
end