Sha256: ad52ed535fee2f50f5c3a346191fd560ba53f25a2065b3cbc771044e8677c79c
Contents?: true
Size: 453 Bytes
Versions: 22
Compression:
Stored size: 453 Bytes
Contents
require "rake/clean" CLOBBER.include "pkg" require "bundler/gem_helper" Bundler::GemHelper.install_tasks(name: "sentry-ruby") require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec).tap do |task| task.rspec_opts = "--order rand" task.exclude_pattern = "spec/isolated/**/*_spec.rb" end task :isolated_specs do Dir["spec/isolated/*"].each do |file| sh "bundle exec rspec #{file}" end end task :default => [:spec, :isolated_specs]
Version data entries
22 entries across 22 versions & 2 rubygems