Sha256: 1232e15f269225daf2c6d8e8bc4a4750c03b95b29f59b0c27002f291ef5229f0
Contents?: true
Size: 779 Bytes
Versions: 143
Compression:
Stored size: 779 Bytes
Contents
require 'fastlane_core/helper' require 'fastlane/boolean' require_relative 'detect_values' 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 Boolean = Fastlane::Boolean ROOT = Pathname.new(File.expand_path('../../..', __FILE__)) DESCRIPTION = "Automated localized screenshots of your Android app on every device".freeze end
Version data entries
143 entries across 143 versions & 4 rubygems