Sha256: d48c3eca89ff8dbf939a20e198848f08f7b3415fa409d0b474c6ec439db41f33
Contents?: true
Size: 439 Bytes
Versions: 3
Compression:
Stored size: 439 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] %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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
revealing-1.8.0 | Rakefile |
revealing-1.7.1 | Rakefile |
revealing-1.7.0 | Rakefile |