class XcodeUtils::Command::Carthage::Clean
Public Class Methods
new(argv)
click to toggle source
Calls superclass method
XcodeUtils::Command::Carthage::new
# File lib/xcutils/carthage.rb, line 40 def initialize(argv) super @additional_args = argv.remainder! end
options()
click to toggle source
# File lib/xcutils/carthage.rb, line 36 def self.options [] end
Public Instance Methods
run()
click to toggle source
# File lib/xcutils/carthage.rb, line 48 def run XcodeUtils::Carthage::XcodeConfig.new.clean system("rm -rf ./Carthage") end
validate!()
click to toggle source
# File lib/xcutils/carthage.rb, line 45 def validate! end