class Fastlane::Actions::GetGradlePropertyAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/bowl/actions/get_gradle_property_action.rb, line 48
def self.authors
  ["Benjamin Wulff"]
end
available_options() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/bowl/actions/get_gradle_property_action.rb, line 34
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :app_project_dir,
                            env_name: "BOWL_APP_PROJECT_DIR",
                         description: "The path to the application source folder in the Android project (default: android/app)",
                            optional: true,
                                type: String,
                       default_value: "android/app"),
    FastlaneCore::ConfigItem.new(key: :key,
                         description: "The property key",
                                type: String)
  ]
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/bowl/actions/get_gradle_property_action.rb, line 52
def self.is_supported?(platform)
  platform == :android
end
run(params) click to toggle source
# File lib/fastlane/plugin/bowl/actions/get_gradle_property_action.rb, line 9
def self.run(params)
  app_project_dir ||= params[:app_project_dir]
  regex = Regexp.new(/(?<key>#{params[:key]}\s+)(?<eql>=\s+)?(?<left>[\'\"]?)(?<value>[a-zA-Z0-9\.\_]*)(?<right>[\'\"]?)(?<comment>.*)/)
  value = ""
  found = false
  Dir.glob("#{app_project_dir}/build.gradle") do |path|
    begin
      File.open(path, 'r') do |file|
        file.each_line do |line|
          unless line.match(regex) and !found
            next
          end
          key, eql, left, value, right, comment = line.match(regex).captures
          break
        end
        file.close
      end
    end
  end
  return value
end