class Fastlane::Helper::RamDiskHelper

Public Class Methods

mac?() click to toggle source
# File lib/fastlane/plugin/ram_disk/helper/ram_disk_helper.rb, line 15
def self.mac?
  require 'rbconfig'

  platform = RbConfig::CONFIG['host_os']
  platform.include?('darwin')
end
show_message() click to toggle source

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

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