Sha256: b65226c92e0b392a0b2eb627c28a89957ae8ec7f533907b4e423a457acaceeab
Contents?: true
Size: 369 Bytes
Versions: 5
Compression:
Stored size: 369 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) require 'rubocop/rake_task' RuboCop::RakeTask.new namespace :test do task :coverage do ENV['COVERAGE'] = 'true' Rake::Task['test'].invoke end end task(:doc_stats) { ruby '-S yard stats' } task default: %i[spec doc_stats rubocop]
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
accept_language-1.0.0 | Rakefile |
accept_language-0.1.3 | Rakefile |
accept_language-0.1.2 | Rakefile |
accept_language-0.1.1 | Rakefile |
accept_language-0.1.0 | Rakefile |