Sha256: 9165deb881693348a7c7520d88bb9b409cdd45bc60a66853d14fdcc649a76455

Contents?: true

Size: 918 Bytes

Versions: 1

Compression:

Stored size: 918 Bytes

Contents

require 'json'
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


class String
  def classify
    split('_').collect!(&:capitalize).join
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fastlane-0.1.9 lib/fastlane.rb