Sha256: ab9f201d09a5d74d486a31ac4f2171d8ad9f660b8a980de63114ccdca41ac2cd
Contents?: true
Size: 1.26 KB
Versions: 5
Compression:
Stored size: 1.26 KB
Contents
require 'fastlane_core' require 'fastlane/version' require 'fastlane/tools' require 'fastlane/actions/actions_helper' # has to be before fast_file require 'fastlane/fast_file' require 'fastlane/runner' require 'fastlane/setup/setup' require 'fastlane/lane' require 'fastlane/fastlane_folder' require 'fastlane/junit_generator' require 'fastlane/lane_manager' require 'fastlane/action' require 'fastlane/action_collector' require 'fastlane/supported_platforms' require 'fastlane/configuration_helper' require 'fastlane/one_off' require 'fastlane/command_line_handler' require 'fastlane/documentation/docs_generator' require 'fastlane/other_action' require 'fastlane/plugins/plugins' module Fastlane Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore UI = FastlaneCore::UI class << self def load_actions Fastlane::Actions.load_default_actions Fastlane::Actions.load_helpers if Fastlane::FastlaneFolder.path actions_path = File.join(Fastlane::FastlaneFolder.path, 'actions') Fastlane::Actions.load_external_actions(actions_path) if File.directory?(actions_path) end end def plugin_manager @plugin_manager ||= Fastlane::PluginManager.new end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
fastlane-1.95.0 | lib/fastlane.rb |
fastlane-1.94.1 | lib/fastlane.rb |
fastlane-1.94.0 | lib/fastlane.rb |
fastlane-1.93.1 | lib/fastlane.rb |
fastlane-1.93.0 | lib/fastlane.rb |