Sha256: 95afa632cec07d11fad9df4e22b4aca45bf4038b8cbda315d94759a6667f25e5
Contents?: true
Size: 704 Bytes
Versions: 48
Compression:
Stored size: 704 Bytes
Contents
require "rubygems" require 'rubygems/user_interaction' require 'rspec' require 'rspec/core/rake_task' require 'ci/reporter/rake/rspec' require 'bundler/gem_tasks' RSpec::Core::RakeTask.new do |t| t.rspec_opts = ["-c", "-f progress"] t.pattern = 'spec/**/*_spec.rb' end desc "Run all the tests" task :default => :spec desc "Generate (and test) supported Spark API paths and methods" RSpec::Core::RakeTask.new(:api_support) do |t| t.rspec_opts = ["--require spec/formatters/api_support_formatter", "--format ApiSupportFormatter", "--color", "--tag support"] t.pattern = 'spec/unit/spark_api/models/**/*_spec.rb' t.verbose = false end
Version data entries
48 entries across 48 versions & 1 rubygems