class Fastlane::Helper::GradlePropertiesHelper

Public Class Methods

load_property(path, key) click to toggle source
# File lib/fastlane/plugin/gradle_properties/helper/gradle_properties_helper.rb, line 9
def self.load_property(path, key)
  properties = JavaProperties.load(path)
  value = properties[key]
  value
end