Sha256: 6e34b36853f07305a0b4da19080cda86f02469ee6f26a8487006dc5bda946dab
Contents?: true
Size: 381 Bytes
Versions: 32
Compression:
Stored size: 381 Bytes
Contents
module Fastlane module Actions class CarthageAction < Action def self.run(params) Actions.sh('carthage bootstrap') end def self.description "Runs `carthage bootstrap` for your project" end def self.author "bassrock" end def self.is_supported?(platform) platform == :ios end end end end
Version data entries
32 entries across 32 versions & 1 rubygems