Sha256: 5d02c3d4a1d1a138f8375c76194b9335610483e574b2d2ef20e3928fa9a7a739
Contents?: true
Size: 469 Bytes
Versions: 1
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true require 'rake' require 'rspec/core/rake_task' require 'bundler/gem_tasks' require 'rubocop/rake_task' RuboCop::RakeTask.new task default: [:rubocop, :'spec:all'] namespace :spec do desc 'Run all specs' task all: %i[unit integration] RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = 'spec/unit/**/*_spec.rb' end RSpec::Core::RakeTask.new(:integration) do |t| t.pattern = 'spec/integration/**/*_spec.rb' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bitbar-concourse-1.1 | Rakefile |