Sha256: b23bf1c7cc5d0b23dac6f31eff7fc5241cfffa8ba08ee6ab428f49c043cc18f6

Contents?: true

Size: 454 Bytes

Versions: 4

Compression:

Stored size: 454 Bytes

Contents

# frozen_string_literal: true

task(default: %w[setup])

task(setup: [:brew, :lint])

task(:brew) do
  raise '`brew` is required. Please install brew. https://brew.sh/' unless system('which brew')

  puts('➡️  Brew')
  sh('brew update')
  sh('brew bundle')
end

task(:lint) do
  Dir.chdir('..') do
    sh("swiftformat . --config formatting/.swiftformat --verbose --selfrequired waitWithPolling --exclude Fastfile.swift --swiftversion 4.0")
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fastlane-2.225.0 fastlane/swift/formatting/Rakefile
fastlane-2.224.0 fastlane/swift/formatting/Rakefile
fastlane-2.223.1 fastlane/swift/formatting/Rakefile
fastlane-2.223.0 fastlane/swift/formatting/Rakefile