Sha256: 699db0083e4fa4d656e31e43decf5046dfd4bf51c4a75b91078a0a1a3fc8e134

Contents?: true

Size: 890 Bytes

Versions: 162

Compression:

Stored size: 890 Bytes

Contents

require 'open3'
require 'fileutils'

require 'fastlane_core'

require 'screengrab/runner'
require 'screengrab/detect_values'
require 'screengrab/dependency_checker'
require 'screengrab/options'
require 'screengrab/android_environment'

module Screengrab
  # Use this to just setup the configuration attribute and set it later somewhere else
  class << self
    attr_accessor :config
    attr_accessor :android_environment

    def config=(value)
      @config = value
      DetectValues.set_additional_default_values
    end

    def screengrabfile_name
      "Screengrabfile"
    end
  end

  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
  UI = FastlaneCore::UI
  ROOT = Pathname.new(File.expand_path('../..', __FILE__))
  DESCRIPTION = "Automated localized screenshots of your Android app on every device".freeze
end

Version data entries

162 entries across 162 versions & 1 rubygems

Version Path
fastlane-2.0.2 screengrab/lib/screengrab.rb
fastlane-2.0.1 screengrab/lib/screengrab.rb