Sha256: f64af2e6121d6dc4738a8a693053f2b07abfa1e6f50724547e170c5259f446d6

Contents?: true

Size: 846 Bytes

Versions: 4

Compression:

Stored size: 846 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/action'
require 'fastlane/actions/actions_helper'
require 'fastlane/action_collector'

require 'fastlane_core'

module Fastlane
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore

  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

4 entries across 4 versions & 1 rubygems

Version Path
fastlane-0.10.0 lib/fastlane.rb
fastlane-0.9.0 lib/fastlane.rb
fastlane-0.8.1 lib/fastlane.rb
fastlane-0.8.0 lib/fastlane.rb