class Fastlane::Actions::BmbuildAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 16
def self.authors
  ["Bemobile"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 28
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :app_information,
                             env_name: "APP_INFORMATION",
                          description: "The app information",
                             optional: false,
                                 type: Hash)
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 12
def self.description
  "TODO"
end
details() click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 24
def self.details
  "TODO"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 38
def self.is_supported?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 20
def self.return_value
  "TODO # If your method provides a return value, you can describe here what it does"
end
run(params) click to toggle source
# File lib/fastlane/plugin/testbm/actions/bmbuild_action.rb, line 6
def self.run(params)
  app_information = params[:app_information]
  other_action.gradle(task:"assemble", build_type: app_information[:android][:build_type])
  UI.message("Version built!")
end