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

available_options, details, output, sh

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

.run(_params) ⇒ Object



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

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