Sha256: 765151d9872947b5af2a7d9fb212136928af2015740045a0698cfa05338a8b98

Contents?: true

Size: 434 Bytes

Versions: 111

Compression:

Stored size: 434 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 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

111 entries across 111 versions & 4 rubygems

Version Path
fastlane-2.155.3 fastlane/swift/formatting/Rakefile
fastlane-2.155.2 fastlane/swift/formatting/Rakefile
fastlane-2.155.1 fastlane/swift/formatting/Rakefile
fastlane-2.155.0 fastlane/swift/formatting/Rakefile
fastlane-2.154.0 fastlane/swift/formatting/Rakefile
fastlane-2.153.1 fastlane/swift/formatting/Rakefile
fastlane-2.153.0 fastlane/swift/formatting/Rakefile
fastlane-2.152.0 fastlane/swift/formatting/Rakefile
fastlane-2.151.2 fastlane/swift/formatting/Rakefile
fastlane-2.151.1 fastlane/swift/formatting/Rakefile
fastlane-2.151.0 fastlane/swift/formatting/Rakefile