class Fastlane::Actions::CryptexAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/cryptex/actions/cryptex_action.rb, line 16
def self.authors
  ["Helmut Januschka"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/cryptex/actions/cryptex_action.rb, line 20
def self.available_options
  Cryptex::Options.available_options
end
description() click to toggle source
# File lib/fastlane/plugin/cryptex/actions/cryptex_action.rb, line 12
def self.description
  "Secure Git-Backed Storage"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/cryptex/actions/cryptex_action.rb, line 24
def self.is_supported?(platform)
  true
end
run(params) click to toggle source
# File lib/fastlane/plugin/cryptex/actions/cryptex_action.rb, line 4
def self.run(params)
  UI.message("The cryptex plugin is working!")

  params.load_configuration_file("Cryptexfile")

  Cryptex::Runner.new.run(params)
end