Sha256: 45e005e7c20fb4d7ee53276ff32d1a2675baedca7e76e9ccd8d7cb68fd9a3b7d
Contents?: true
Size: 473 Bytes
Versions: 4
Compression:
Stored size: 473 Bytes
Contents
# frozen_string_literal: true require 'rspec/core/rake_task' require 'rubocop/rake_task' RSpec::Core::RakeTask.new('spec:units') do |task| task.rspec_opts = '--tag ~integration' end RSpec::Core::RakeTask.new('spec:integration') do |task| task.rspec_opts = '--tag integration' end RuboCop::RakeTask.new do |task| task.options = ['lib/'] end desc 'Run all specs and linter' task 'spec:all' => ['spec:units', 'spec:integration'] do end task default: ['spec:units']
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
steamrb-0.1.3 | Rakefile |
steamrb-0.1.2 | Rakefile |
steamrb-0.1.1 | Rakefile |
steamrb-0.1.0 | Rakefile |