class Fastlane::Actions::InstallBrewDependenciesAction
Public Class Methods
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/yalantis_ci/actions/install_brew_dependencies.rb, line 13 def self.is_supported?(platform) true end
run(params)
click to toggle source
# File lib/fastlane/plugin/yalantis_ci/actions/install_brew_dependencies.rb, line 4 def self.run(params) brewfile = File.join(ENV['PWD'], 'Brewfile') sh('brew', 'bundle', '--file', Shellwords.escape(brewfile), '--no-upgrade') if File.exists?(brewfile) end