Sha256: 04ab3c1cd6c1f5a5b3fc8d2984f66fef9c688af8ae464fc4a2e6c8f13a69ca5c
Contents?: true
Size: 576 Bytes
Versions: 1
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" require "rake/testtask" Rake::TestTask.new(:test) do |t| t.description = "Run all but TLS tests" t.options = "--exclude=/_tls$/" t.pattern = "test/**/*_test.rb" end namespace :test do Rake::TestTask.new(:all) do |t| t.description = "Run all tests" t.pattern = "test/**/*_test.rb" end end require "rubocop/rake_task" RuboCop::RakeTask.new do |task| task.requires << "rubocop-minitest" end require "yard" YARD::Rake::YardocTask.new task default: [:test, *(:rubocop if RUBY_ENGINE == "ruby")]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
amqp-client-1.1.6 | Rakefile |