Sha256: d0e879c35b2391e2ff317d9c5367e7cfa141fe8344c143277f4951fd4c10b849

Contents?: true

Size: 516 Bytes

Versions: 17

Compression:

Stored size: 516 Bytes

Contents

# frozen_string_literal: true

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

17 entries across 17 versions & 1 rubygems

Version Path
thinking-sphinx-5.6.0 Rakefile
thinking-sphinx-5.5.1 Rakefile
thinking-sphinx-5.5.0 Rakefile
thinking-sphinx-5.4.0 Rakefile
thinking-sphinx-5.3.0 Rakefile
thinking-sphinx-5.2.1 Rakefile
thinking-sphinx-5.2.0 Rakefile
thinking-sphinx-5.1.0 Rakefile
thinking-sphinx-5.0.0 Rakefile
thinking-sphinx-4.4.1 Rakefile
thinking-sphinx-4.4.0 Rakefile
thinking-sphinx-4.3.2 Rakefile
thinking-sphinx-4.3.1 Rakefile
thinking-sphinx-4.3.0 Rakefile
thinking-sphinx-4.2.0 Rakefile
thinking-sphinx-4.1.0 Rakefile
thinking-sphinx-4.0.0 Rakefile