class Fastlane::Helper::MyHelper

Public Class Methods

show_message() click to toggle source

class methods that you define here become available in your action as `Helper::MyHelper.your_method`

# File lib/fastlane/plugin/my/helper/my_helper.rb, line 11
def self.show_message
  UI.message("Hello from the my plugin helper!")
end