Sha256: e76d36d03deb9564f9eed8554ed3151e7e0e73a95e5814ed911727af987e8116

Contents?: true

Size: 578 Bytes

Versions: 17

Compression:

Stored size: 578 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

17 entries across 17 versions & 1 rubygems

Version Path
spark_api-1.3.24 Rakefile
spark_api-1.3.23 Rakefile
spark_api-1.3.21 Rakefile
spark_api-1.3.20 Rakefile
spark_api-1.3.19 Rakefile
spark_api-1.3.18 Rakefile
spark_api-1.3.17 Rakefile
spark_api-1.3.16 Rakefile
spark_api-1.3.15 Rakefile
spark_api-1.3.14 Rakefile
spark_api-1.3.13 Rakefile
spark_api-1.3.10 Rakefile
spark_api-1.3.9 Rakefile
spark_api-1.3.6 Rakefile
spark_api-1.3.3 Rakefile
spark_api-1.3.1 Rakefile
spark_api-1.3.0 Rakefile