Sha256: 1303a799a15712c4d5d8c345157bd17024eee155635f7f24400b643fc484d145

Contents?: true

Size: 336 Bytes

Versions: 4

Compression:

Stored size: 336 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task default: :spec

require 'yard'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mongoid-geospatial-5.0.0 Rakefile
mongoid-geospatial-4.0.1 Rakefile
mongoid-geospatial-4.0.0 Rakefile
mongoid-geospatial-3.9.0 Rakefile