Sha256: 95491d14c7dc5f75d946e7a84e0df0e6e136285da26864fe79bd2327b7ed2cb2
Contents?: true
Size: 1.57 KB
Versions: 14
Compression:
Stored size: 1.57 KB
Contents
module Fastlane module Helper class AwsS3Helper # class methods that you define here become available in your action # as `Helper::S3Helper.your_method` # def self.show_message UI.message("Hello from the s3 plugin helper!") end # # Taken from https://github.com/fastlane/fastlane/blob/9c0494ef5e7d71afc51c73fe0b141b02e8991d9c/fastlane/lib/fastlane/erb_template_helper.rb # Because I need to load from my plugin gem (not main fastlane gem) # require "erb" def self.load(template_name) path = "#{gem_path('fastlane-plugin-aws_s3')}/lib/assets/#{template_name}.erb" load_from_path(path) end 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 def self.render(template, template_vars_hash) Fastlane::ErbalT.new(template_vars_hash).render(template) end # # Taken from https://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 # 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 end end end
Version data entries
14 entries across 14 versions & 1 rubygems