Sha256: 7d4a58c73e754e2bc924eb813d9fd2c6ff0d16456085dffd83431cba134040ff

Contents?: true

Size: 1.75 KB

Versions: 526

Compression:

Stored size: 1.75 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, 'Documentation', 'https://docs.fastlane.tools/actions/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, command: c)

        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, command: c)

        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

526 entries across 526 versions & 2 rubygems

Version Path
fastlane-2.147.0 supply/lib/supply/commands_generator.rb
fastlane-2.146.1 supply/lib/supply/commands_generator.rb
fastlane-2.146.0 supply/lib/supply/commands_generator.rb
fastlane-2.145.0 supply/lib/supply/commands_generator.rb
fastlane-2.144.0 supply/lib/supply/commands_generator.rb
fastlane-2.143.0 supply/lib/supply/commands_generator.rb
fastlane-2.142.0 supply/lib/supply/commands_generator.rb
fastlane-2.141.0 supply/lib/supply/commands_generator.rb
fastlane-2.140.0 supply/lib/supply/commands_generator.rb
fastlane-2.139.0 supply/lib/supply/commands_generator.rb
fastlane-2.138.0 supply/lib/supply/commands_generator.rb
fastlane-2.137.0 supply/lib/supply/commands_generator.rb
fastlane-2.136.0 supply/lib/supply/commands_generator.rb
fastlane-2.135.2 supply/lib/supply/commands_generator.rb
fastlane-2.135.1 supply/lib/supply/commands_generator.rb
fastlane-2.135.0 supply/lib/supply/commands_generator.rb
fastlane-2.134.0 supply/lib/supply/commands_generator.rb
fastlane-2.133.0 supply/lib/supply/commands_generator.rb
fastlane-2.132.0 supply/lib/supply/commands_generator.rb
fastlane-2.132.0.beta.20190930200026 supply/lib/supply/commands_generator.rb