Sha256: d32e42186aee176a0612d34b337152d08b29b750a64a1546f8d26281cf33be07
Contents?: true
Size: 443 Bytes
Versions: 7
Compression:
Stored size: 443 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'yard' require 'rubocop/rake_task' 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: [:spec, :rubocop]
Version data entries
7 entries across 7 versions & 1 rubygems