Sha256: 8ddd960102c1898765b2316c40fb1d6100baaf41c6476dbbd25f876a22b8c9c8
Contents?: true
Size: 929 Bytes
Versions: 294
Compression:
Stored size: 929 Bytes
Contents
require 'open3' require 'fileutils' require 'fastlane_core' require 'screengrab/runner' require 'screengrab/reports_generator' 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
294 entries across 294 versions & 1 rubygems