Sha256: eb4536001a2bb9d89a694a9de337d1f56a6ea4fc5e95930553793056b83469d7

Contents?: true

Size: 412 Bytes

Versions: 16

Compression:

Stored size: 412 Bytes

Contents

require "bundler/gem_tasks"

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

task :bootstrap, :use_bundle_dir? do |t, args|
  if args[:use_bundle_dir?]
    sh "bundle install --path ./travis_bundle_dir"
  else
    sh "bundle install"
  end
end

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

task :default => "spec:ci"

Version data entries

16 entries across 16 versions & 4 rubygems

Version Path
cocoapods-gitlab_license_report-1.0.3 Rakefile
cocoapods-gitlab_license_report-1.0.2 Rakefile
cocoapods-gitlab_license_report-1.0.1 Rakefile
cocoapods-gitlab_license_report-1.0.0 Rakefile
cocoapods-acknowledgements-1.3.0 Rakefile
cocoapods-acknowledgements-1.2.0 Rakefile
cocoapods-acknowledgements-1.1.3 Rakefile
cocoapods-acknowledgements-1.1.2 Rakefile
cocoapods-acknowledgements-1.1.1 Rakefile
cocoapods-acknowledgements-1.1.0 Rakefile
cocoapods-acknowledgements-1.0.0 Rakefile
cocoapods-try-release-fix-0.1.2 Rakefile
cocoapods-browser-0.1.1 Rakefile
cocoapods-browser-0.1.0 Rakefile
cocoapods-browser-0.0.4 Rakefile
cocoapods-try-release-fix-0.1.1 Rakefile