Sha256: 4751ca96d13136bdfa795f399b270a9415fdbbda5e0378411601cd0669cd8b1f
Contents?: true
Size: 532 Bytes
Versions: 2
Compression:
Stored size: 532 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 task default: [:test, *(:rubocop if RUBY_ENGINE == "ruby")]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
amqp-client-1.1.5 | Rakefile |
amqp-client-1.1.4 | Rakefile |