Sha256: 2e1f3e78fc545b891c82844471c04a9497f73e15b89492c4f91f95dd519cce55

Contents?: true

Size: 298 Bytes

Versions: 6

Compression:

Stored size: 298 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 :specs do
  sh "bundle exec bacon #{specs('**')}"
end

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

task default: :specs

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cocoapods-playgrounds-1.2.2 Rakefile
cocoapods-playgrounds-1.2.1 Rakefile
cocoapods-playgrounds-1.2.0 Rakefile
cocoapods-playgrounds-1.1.0 Rakefile
cocoapods-playgrounds-1.0.0 Rakefile
cocoapods-playgrounds-0.1.0 Rakefile