class Fastlane::Helper::JiraUtilHelper

Public Class Methods

show_message() click to toggle source

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

# File lib/fastlane/plugin/jira_util/helper/jira_util_helper.rb, line 11
def self.show_message
  UI.message("Hello from the jira_util plugin helper!")
end
transform_keys_to_symbols(value) click to toggle source
# File lib/fastlane/plugin/jira_util/helper/jira_util_helper.rb, line 15
def self.transform_keys_to_symbols(value)
  return value if not value.is_a?(Hash)
  return value.inject({}){|memo,(k,v)| memo[k.to_sym] = Helper::JiraUtilHelper.transform_keys_to_symbols(v); memo}
end