Sha256: 116993281ca1326ddfeee00ca0d49e62dc2a5287f90df127b1c83fcdf69cd766

Contents?: true

Size: 446 Bytes

Versions: 7

Compression:

Stored size: 446 Bytes

Contents

# frozen_string_literal: true

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

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

namespace :spec do
  desc 'Run CI tests'
  task ci: %i[rubocop unit system]

  %w[unit system].each do |type|
    desc "Run #{type} tests"
    RSpec::Core::RakeTask.new(type) do |t|
      t.pattern = "spec/#{type}/**/*_spec.rb"
    end
  end
end

task default: 'spec:ci'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
revealing-1.6.0 Rakefile
revealing-1.5.0 Rakefile
revealing-1.4.0 Rakefile
revealing-1.2.0 Rakefile
revealing-1.1.0 Rakefile
revealing-1.0.8 Rakefile
revealing-1.0.7 Rakefile