Sha256: a4b5805aa93a8a1c535c5c2c63a2a808a3bd8312c859e726a1f7fc4d090c9991
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require "rdoc/task" require "rubocop/rake_task" require "rspec/core/rake_task" RuboCop::RakeTask.new namespace :spec do desc 'Clean all generated reports' task :clean do system('rm -rf spec/reports') system('rm -rf spec/coverage') end RSpec::Core::RakeTask.new(all: :clean) do |config| options = %w[--color] options += %w[--format documentation] options += %w[--format html --out spec/reports/unit-test-report.html] config.rspec_opts = options end end Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'doc' rdoc.main = 'README.md' rdoc.title = "DataBuilder #{DataBuilder::VERSION}" rdoc.rdoc_files.include('README*', 'lib/**/*.rb') end task default: ['spec:all', :rubocop]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
data_builder-2.0.0 | Rakefile |