class Fastlane::Helper::ReleaseHelperHelper

Public Class Methods

git_log(pretty, start) click to toggle source

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

# File lib/fastlane/plugin/release_helper/helper/release_helper_helper.rb, line 11
def self.git_log(pretty, start)
  command = "git log --pretty='#{pretty}' --reverse #{start}..HEAD"
  Actions.sh(command, log: false).chomp
end
parse_commit(params) click to toggle source
# File lib/fastlane/plugin/release_helper/helper/release_helper_helper.rb, line 16
def self.parse_commit(params) 
  UI.message(params)
end
show_message() click to toggle source
# File lib/fastlane/plugin/release_helper/helper/release_helper_helper.rb, line 20
def self.show_message
  UI.message("Hello from the release_helper plugin helper!")
end