Sha256: 9daacc6551da0e277558fbe5467f2935de9b9780f986845f5755fde0c1c32d48
Contents?: true
Size: 382 Bytes
Versions: 1
Compression:
Stored size: 382 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastlane-0.11.0 | lib/fastlane/actions/install_carthage.rb |