Class: Fastlane::Actions::CarthageAction

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

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, available_options, details, output, sh, step_text

Class Method Details

.authorObject



12
13
14
# File 'lib/fastlane/actions/install_carthage.rb', line 12

def self.author
  "bassrock"
end

.descriptionObject



8
9
10
# File 'lib/fastlane/actions/install_carthage.rb', line 8

def self.description
  "Runs `carthage bootstrap` for your project"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/fastlane/actions/install_carthage.rb', line 16

def self.is_supported?(platform)
  platform == :ios
end

.run(params) ⇒ Object



4
5
6
# File 'lib/fastlane/actions/install_carthage.rb', line 4

def self.run(params)
  Actions.sh('carthage bootstrap')
end