Sha256: 3185dba7aaf784c8a1083449c7e849478a97363a8335885610527fe4fa5b1c84

Contents?: true

Size: 577 Bytes

Versions: 9

Compression:

Stored size: 577 Bytes

Contents

require "rubygems"
require 'rubygems/user_interaction'
require 'flexmls_gems/tasks'
require 'flexmls_gems/tasks/spec'
require 'flexmls_gems/tasks/rdoc'

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

9 entries across 9 versions & 1 rubygems

Version Path
spark_api-1.2.1 Rakefile
spark_api-1.2.0 Rakefile
spark_api-1.1.2 Rakefile
spark_api-1.1.1 Rakefile
spark_api-1.1.0 Rakefile
spark_api-1.0.4 Rakefile
spark_api-1.0.2 Rakefile
spark_api-1.0.1 Rakefile
spark_api-1.0.0 Rakefile