Class: Fastlane::Actions::XcakeAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/xcake.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, details, output, return_value, sh, step_text

Class Method Details

.authorsObject



23
24
25
# File 'lib/fastlane/actions/xcake.rb', line 23

def self.authors
  ["jcampbell05"]
end

.available_optionsObject



14
15
16
17
# File 'lib/fastlane/actions/xcake.rb', line 14

def self.available_options
  [
  ]
end

.descriptionObject



10
11
12
# File 'lib/fastlane/actions/xcake.rb', line 10

def self.description
  "Runs `xcake` for the project"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/fastlane/actions/xcake.rb', line 19

def self.is_supported?(platform)
  [:ios, :mac].include? platform
end

.run(params) ⇒ Object



4
5
6
7
8
# File 'lib/fastlane/actions/xcake.rb', line 4

def self.run(params)
  Actions.verify_gem!('xcake')
  require 'xcake'
  Xcake::Command.run
end