class Fastlane::Helper::AwsS3Helper
Public Class Methods
gem_path(gem_name)
click to toggle source
Taken from github.com/fastlane/fastlane/blob/f0dd4d0f4ecc74d9f7f62e0efc33091d975f2043/fastlane_core/lib/fastlane_core/helper.rb#L248-L259 Unsure best other way to do this so using this logic for now since its deprecated in fastlane proper
# File lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb, line 36 def self.gem_path(gem_name) if !Helper.is_test? and Gem::Specification.find_all_by_name(gem_name).any? return Gem::Specification.find_by_name(gem_name).gem_dir else return './' end end
load(template_name)
click to toggle source
# File lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb, line 16 def self.load(template_name) path = "#{gem_path('fastlane-plugin-aws_s3')}/lib/assets/#{template_name}.erb" load_from_path(path) end
load_from_path(template_filepath)
click to toggle source
# File lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb, line 21 def self.load_from_path(template_filepath) unless File.exist?(template_filepath) UI.user_error!("Could not find Template at path '#{template_filepath}'") end File.read(template_filepath) end
render(template, template_vars_hash)
click to toggle source
# File lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb, line 28 def self.render(template, template_vars_hash) Fastlane::ErbalT.new(template_vars_hash).render(template) end
show_message()
click to toggle source
class methods that you define here become available in your action as `Helper::S3Helper.your_method`
# File lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb, line 7 def self.show_message UI.message("Hello from the s3 plugin helper!") end