Sha256: 83e1aad9ea70d8f1f6e4770b01a74720355ed3d54c2d29cb709a242cd3488623

Contents?: true

Size: 1.73 KB

Versions: 119

Compression:

Stored size: 1.73 KB

Contents

require "commander"
require "fastlane_core"
require "supply"

HighLine.track_eof = false

module Supply
  class CommandsGenerator
    include Commander::Methods

    def self.start
      new.run
    end

    def run
      program :name, 'supply'
      program :version, Fastlane::VERSION
      program :description, Supply::DESCRIPTION
      program :help, 'Author', 'Felix Krause <supply@krausefx.com>'
      program :help, 'Website', 'https://fastlane.tools'
      program :help, 'GitHub', 'https://github.com/fastlane/fastlane/tree/master/supply'
      program :help_formatter, :compact

      always_trace!

      global_option('--verbose') { FastlaneCore::Globals.verbose = true }

      command :run do |c|
        c.syntax = 'fastlane supply'
        c.description = 'Run a deploy process'

        FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options)

        c.action do |args, options|
          Supply.config = FastlaneCore::Configuration.create(Supply::Options.available_options, options.__hash__)
          load_supplyfile

          Supply::Uploader.new.perform_upload
        end
      end

      command :init do |c|
        c.syntax = 'fastlane supply init'
        c.description = 'Sets up supply for you'

        FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options)

        c.action do |args, options|
          require 'supply/setup'
          Supply.config = FastlaneCore::Configuration.create(Supply::Options.available_options, options.__hash__)
          load_supplyfile

          Supply::Setup.new.perform_download
        end
      end

      default_command :run

      run!
    end

    def load_supplyfile
      Supply.config.load_configuration_file('Supplyfile')
    end
  end
end

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
fastlane-2.20.0.beta.20170302010029 supply/lib/supply/commands_generator.rb
fastlane-2.19.1 supply/lib/supply/commands_generator.rb
fastlane-2.19.0 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170301010932 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170228010016 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170227010016 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170226010028 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170225010031 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170224010025 supply/lib/supply/commands_generator.rb
fastlane-2.18.3 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170223010028 supply/lib/supply/commands_generator.rb
fastlane-2.18.2 supply/lib/supply/commands_generator.rb
fastlane-2.19.0.beta.20170222010016 supply/lib/supply/commands_generator.rb
fastlane-2.18.1 supply/lib/supply/commands_generator.rb
fastlane-2.18.0 supply/lib/supply/commands_generator.rb
fastlane-2.18.0.beta.20170221010026 supply/lib/supply/commands_generator.rb
fastlane-2.18.0.beta.20170220010017 supply/lib/supply/commands_generator.rb
fastlane-2.18.0.beta.20170219010032 supply/lib/supply/commands_generator.rb
fastlane-2.18.0.beta.20170218010103 supply/lib/supply/commands_generator.rb