Sha256: b72bda23303709751ae865d46fb6aab98a18b7a3a4e7f2f0c6982ec533c837ad
Contents?: true
Size: 906 Bytes
Versions: 17
Compression:
Stored size: 906 Bytes
Contents
require 'fastlane/core_ext/string' # this has to be above most of the other requires require 'fastlane/version' require 'fastlane/fast_file' require 'fastlane/dependency_checker' require 'fastlane/runner' require 'fastlane/setup' require 'fastlane/fastlane_folder' require 'fastlane/junit_generator' require 'fastlane/lane_manager' require 'fastlane/actions/actions_helper' require 'fastlane_core' # Third Party code require 'colored' module Fastlane Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore FastlaneCore::UpdateChecker.verify_latest_version('fastlane', Fastlane::VERSION) Fastlane::Actions.load_default_actions 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
Version data entries
17 entries across 17 versions & 1 rubygems