Sha256: d7cea251f072af16a1044b6a9e61f684c918af9109c2a999cc781291c5a67c9c
Contents?: true
Size: 485 Bytes
Versions: 58
Compression:
Stored size: 485 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'yard' require 'rubocop/rake_task' require 'parallel_tests/tasks' YARD::Rake::YardocTask.new(:doc) do |t| # The dash has to be between the two to "divide" the source files and # miscellaneous documentation files that contain no code t.files = ['lib/**/*.rb', '-', 'LICENSE.txt', 'IMPLEMENTATION_DETAILS.md'] end RuboCop::RakeTask.new RSpec::Core::RakeTask.new(:spec) task default: ['parallel:spec', :rubocop]
Version data entries
58 entries across 58 versions & 1 rubygems