module Fastlane::Flint

Constants

DESCRIPTION
Helper
ROOT
UI
VERSION

Public Class Methods

all_classes() click to toggle source

Return all .rb files inside the “actions” and “helper” directory

# File lib/fastlane/plugin/flint.rb, line 12
def self.all_classes
  Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
end
cert_type_sym(type) click to toggle source
# File lib/fastlane/plugin/flint.rb, line 20
def self.cert_type_sym(type)
  return :development if type == "development"
  return :release if type == "release"
  raise "Unknown cert type: '#{type}'"
end
environments() click to toggle source
# File lib/fastlane/plugin/flint.rb, line 16
def self.environments
  return %w(development release)
end