Class: Fastlane::Actions::CryptexAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/cryptex/actions/cryptex_action.rb

Class Method Summary collapse

Class Method Details

.authorsObject



16
17
18
# File 'lib/fastlane/plugin/cryptex/actions/cryptex_action.rb', line 16

def self.authors
  ["Helmut Januschka"]
end

.available_optionsObject



20
21
22
# File 'lib/fastlane/plugin/cryptex/actions/cryptex_action.rb', line 20

def self.available_options
  Cryptex::Options.available_options
end

.descriptionObject



12
13
14
# File 'lib/fastlane/plugin/cryptex/actions/cryptex_action.rb', line 12

def self.description
  "Secure Git-Backed Storage"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/fastlane/plugin/cryptex/actions/cryptex_action.rb', line 24

def self.is_supported?(platform)
  true
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
# 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