Sha256: 5eb25af783a74f3d002b2a5e4f31fd31f667e23ea4baeb4e697795ab838ee8de

Contents?: true

Size: 308 Bytes

Versions: 20

Compression:

Stored size: 308 Bytes

Contents

require 'bundler/gem_tasks'
require 'rubocop/rake_task'

def specs(dir)
  FileList["spec/#{dir}/*_spec.rb"].shuffle.join(' ')
end

desc 'Runs all the specs'
task :spec do
  sh "bundle exec bacon #{specs('**')}"
end

desc 'Lints all the files'
RuboCop::RakeTask.new(:rubocop)

task default: [:spec, :rubocop]

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
xcode-install-2.1.1 Rakefile
xcode-install-2.1.0 Rakefile
xcode-install-2.0.9 Rakefile
xcode-install-2.0.7 Rakefile
xcode-install-2.0.6 Rakefile
xcode-install-2.0.5 Rakefile
xcode-install-2.0.4 Rakefile
xcode-install-2.0.3 Rakefile
xcode-install-2.0.2 Rakefile
xcode-install-2.0.1 Rakefile
xcode-install-2.0.0 Rakefile
xcode-install-1.4.0 Rakefile
xcode-install-1.3.0 Rakefile
xcode-install-1.2.6 Rakefile
xcode-install-1.2.5 Rakefile
xcode-install-1.2.4 Rakefile
xcode-install-1.2.3 Rakefile
xcode-install-1.2.2 Rakefile
xcode-install-1.2.1 Rakefile
xcode-install-1.2.0 Rakefile