Sha256: d33949392204ebf3262bee2d0d64505b3deaf251b3b003305833f232e42ca2cc

Contents?: true

Size: 485 Bytes

Versions: 19

Compression:

Stored size: 485 Bytes

Contents

require 'bundler'
require 'appraisal'

Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new

namespace :spec do
  desc 'Run unit specs only'
  RSpec::Core::RakeTask.new(:unit) do |task|
    task.pattern    = 'spec'
    task.rspec_opts = '--tag "~live"'
  end

  desc 'Run acceptance specs only'
  RSpec::Core::RakeTask.new(:acceptance) do |task|
    task.pattern    = 'spec'
    task.rspec_opts = '--tag "live"'
  end
end

task :default => :spec

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
thinking-sphinx-3.4.2 Rakefile
thinking-sphinx-3.4.1 Rakefile
thinking-sphinx-3.4.0 Rakefile
thinking-sphinx-3.3.0 Rakefile
thinking-sphinx-3.2.0 Rakefile
thinking-sphinx-3.1.4 Rakefile
thinking-sphinx-3.1.3 Rakefile
thinking-sphinx-3.1.2 Rakefile
thinking-sphinx-3.1.1 Rakefile
thinking-sphinx-3.1.0 Rakefile
thinking-sphinx-3.0.6 Rakefile
thinking-sphinx-3.0.5 Rakefile
thinking-sphinx-3.0.4 Rakefile
thinking-sphinx-3.0.3 Rakefile
thinking-sphinx-3.0.2 Rakefile
thinking-sphinx-3.0.1 Rakefile
thinking-sphinx-3.0.0 Rakefile
thinking-sphinx-3.0.0.rc Rakefile
thinking-sphinx-3.0.0.pre Rakefile