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

Version Path
spark_api-2.0.0 Rakefile
spark_api-1.6.3 Rakefile
spark_api-1.6.2 Rakefile
spark_api-1.6.1 Rakefile
spark_api-1.5.7 Rakefile
spark_api-1.6.0 Rakefile
spark_api-1.5.6 Rakefile
spark_api-1.5.5 Rakefile
spark_api-1.5.4 Rakefile
spark_api-1.5.3 Rakefile
spark_api-1.5.2 Rakefile
spark_api-1.5.1 Rakefile
spark_api-1.5.0 Rakefile
spark_api-1.4.34 Rakefile
spark_api-1.4.32 Rakefile
spark_api-1.4.31 Rakefile
spark_api-1.4.29 Rakefile
spark_api-1.4.28 Rakefile
spark_api-1.4.27 Rakefile
spark_api-1.4.26 Rakefile