class Fastlane::Actions::EnBuildNumberAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_build_number.rb, line 20
def self.authors
  # So no one will ever forget your contribution to fastlane :) You are awesome btw!
  ["Nicolae Ghimbovschi"]
end
description() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/ciutils/actions/en_build_number.rb, line 12
def self.description
  "Get the value for build number from environment"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_build_number.rb, line 25
def self.is_supported?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_build_number.rb, line 16
def self.return_value
  "Returns the value of env BUILD_NUMBER, else returns 1. Value is string"
end
run(params) click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_build_number.rb, line 4
def self.run(params)
  return Helper::CiutilsHelper.en_ci_build_number()
end