Sha256: 22d31388e782f865273b2ac82505900cbbb8f818b312efbf2505b8d1bc70a691

Contents?: true

Size: 1.14 KB

Versions: 9

Compression:

Stored size: 1.14 KB

Contents

require 'bundler'
require 'rspec/core/rake_task'

Bundler::GemHelper.install_tasks

RSpec::Core::RakeTask.new(:spec) do |rspec|
  ENV['SPEC'] = 'spec/ransack/**/*_spec.rb'
  # With Rails 3, using `--backtrace` raises 'invalid option' when testing.
  # With Rails 4 and 5 it can be uncommented to see the backtrace:
  #
  # rspec.rspec_opts = ['--backtrace']
end

RSpec::Core::RakeTask.new(:mongoid) do |rspec|
  ENV['SPEC'] = 'spec/mongoid/**/*_spec.rb'
  rspec.rspec_opts = ['--backtrace']
end

task :default do
  if ENV['DB'] =~ /mongoid/
    Rake::Task["mongoid"].invoke
  else
    Rake::Task["spec"].invoke
  end
end

desc "Open an irb session with Ransack and the sample data used in specs"
task :console do
  require 'pry'
  require File.expand_path('../spec/console.rb', __FILE__)
  ARGV.clear
  Pry.start
end

desc "Open an irb session with Ransack, Mongoid and the sample data used in specs"
task :mongoid_console do
  require 'irb'
  require 'irb/completion'
  require 'pry'
  require 'mongoid'
  require File.expand_path('../lib/ransack.rb', __FILE__)
  require File.expand_path('../spec/mongoid/support/schema.rb', __FILE__)
  ARGV.clear
  Pry.start
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ransack-1.8.10 Rakefile
ransack-1.8.9 Rakefile
ransack-1.8.8 Rakefile
ransack-1.8.7 Rakefile
ransack-1.8.6 Rakefile
ransack-1.8.4 Rakefile
ransack-1.8.3 Rakefile
ransack-1.8.2 Rakefile
ransack-1.8.1 Rakefile