Sha256: 21179c5347ddaff943efef5923a9f7a7828ca047f76b6931185459f40b73c32c
Contents?: true
Size: 805 Bytes
Versions: 3
Compression:
Stored size: 805 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | screengrab/lib/screengrab/module.rb |
fastlane_hotfix-2.165.0 | screengrab/lib/screengrab/module.rb |
fastlane_hotfix-2.187.0 | screengrab/lib/screengrab/module.rb |