Sha256: 97ea79f0b48bc899e29d783b35e9f3930cade9d2b23a36dff29211d42004de25

Contents?: true

Size: 367 Bytes

Versions: 11

Compression:

Stored size: 367 Bytes

Contents

require "bundler/gem_tasks"

# Get your spec rake tasks working in RSpec 2.0

require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
                                    # Put spec opts in a file named .rspec in root
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mongoid-audit-0.3.2 Rakefile
mongoid-audit-0.3.1 Rakefile
mongoid-audit-0.3.0 Rakefile
mongoid-audit-0.2.0 Rakefile
mongoid-audit-0.1.7 Rakefile
mongoid-audit-0.1.6 Rakefile
mongoid-audit-0.1.5 Rakefile
mongoid-audit-0.1.4 Rakefile
mongoid-audit-0.1.3 Rakefile
mongoid-audit-0.1.2 Rakefile
mongoid-audit-0.1.1 Rakefile