Sha256: f49d023bfa28103013a05d379537cdfb58bf62ec461bd0621c3d452e78026fbc
Contents?: true
Size: 782 Bytes
Versions: 9
Compression:
Stored size: 782 Bytes
Contents
$lib = File.expand_path('../', File.dirname(__FILE__)) require "pathname" require "Helper" require "time" class AndroidConfig attr_accessor :keyFilePath, :packageName, :accountID, :appID, :baseExecutePath def initialize(configYMLObj, configFilePath, baseExecutePath) @keyFilePath = Helper.unwrapRequiredParameter(configYMLObj,"keyFilePath") if Pathname.new(keyFilePath).absolute? configDir = File.dirname(configFilePath) @keyFilePath = "#{configDir}#{keyFilePath}" end @accountID = configYMLObj["playConsoleDeveloperAccountID"] @appID = configYMLObj["playConsoleAppID"] @baseExecutePath = baseExecutePath @packageName = Helper.unwrapRequiredParameter(configYMLObj,"packageName") end end
Version data entries
9 entries across 9 versions & 1 rubygems