Class: Screengrab::CommandsGenerator

Inherits:
Object
  • Object
show all
Includes:
Commander::Methods
Defined in:
screengrab/lib/screengrab/commands_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.startObject



18
19
20
# File 'screengrab/lib/screengrab/commands_generator.rb', line 18

def self.start
  self.new.run
end

Instance Method Details

#runObject



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'screengrab/lib/screengrab/commands_generator.rb', line 22

def run
  program :name, 'screengrab'
  program :version, Fastlane::VERSION
  program :description, 'CLI for \'screengrab\' - Automate taking localized screenshots of your Android app on emulators or real devices'
  program :help, 'Authors', 'Andrea Falcone <[email protected]>, Michael Furtak <[email protected]>'
  program :help, 'Website', 'https://fastlane.tools'
  program :help, 'Documentation', 'https://docs.fastlane.tools/actions/screengrab/'
  program :help_formatter, :compact

  global_option('--verbose', 'Shows a more verbose output') { FastlaneCore::Globals.verbose = true }

  always_trace!

  command :run do |c|
    c.syntax = 'fastlane screengrab'
    c.description = 'Take new screenshots based on the Screengrabfile.'

    FastlaneCore::CommanderGenerator.new.generate(Screengrab::Options.available_options, command: c)

    c.action do |args, options|
      o = options.__hash__.dup
      o.delete(:verbose)
      Screengrab.config = FastlaneCore::Configuration.create(Screengrab::Options.available_options, o)
      Screengrab.android_environment = Screengrab::AndroidEnvironment.new(Screengrab.config[:android_home],
                                                                          Screengrab.config[:build_tools_version])

      Screengrab::DependencyChecker.check(Screengrab.android_environment)
      Screengrab::Runner.new.run
    end
  end

  command :init do |c|
    c.syntax = 'fastlane screengrab init'
    c.description = "Creates a new Screengrabfile in the current directory"

    c.action do |args, options|
      require 'screengrab/setup'
      path = Screengrab::Helper.fastlane_enabled? ? FastlaneCore::FastlaneFolder.path : '.'
      is_swift_fastfile = args.include?("swift")
      Screengrab::Setup.create(path, is_swift_fastfile: is_swift_fastfile)
    end
  end

  default_command(:run)

  run!
end