Sha256: 67aaf1f9c96c4743e0212920150c7df28ad3a6fabac7e3745b399d7e6e84dc95

Contents?: true

Size: 364 Bytes

Versions: 11

Compression:

Stored size: 364 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

namespace :spec do
  desc 'Run integration specs'
  task :integration do
    puts `docker-compose exec cotton-tail bundle exec rspec integration`
  end

  desc 'Run all specs'
  task all: %w[spec spec:integration]
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cotton-tail-0.7.0 Rakefile
cotton-tail-0.6.1 Rakefile
cotton-tail-0.6.0 Rakefile
cotton-tail-0.5.0 Rakefile
cotton-tail-0.4.1 Rakefile
cotton-tail-0.4.0 Rakefile
cotton-tail-0.3.0 Rakefile
cotton-tail-0.2.1 Rakefile
cotton-tail-0.2.0 Rakefile
cotton-tail-0.1.2 Rakefile
cotton-tail-0.1.1 Rakefile