Sha256: 25a1ba8ff3ba7de95ee03ec8a4b79f88bbf9b315be4f54dee13f5dc0de51883b
Contents?: true
Size: 378 Bytes
Versions: 4
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" require "rake/testtask" Rake.application.options.trace = false Rake::TestTask.new do |t| t.libs << "lib" t.libs << "spec" t.warning = false t.test_files = FileList['spec/**/*_spec.rb'] end task(:spec) do begin Rake::Task[:test].execute rescue RuntimeError exit(1) end end task(default: :spec)
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
tapioca-0.4.4 | Rakefile |
tapioca-0.4.3 | Rakefile |
tapioca-0.4.2 | Rakefile |
tapioca-0.4.1 | Rakefile |