Sha256: 90eaae7196a6be85c07d8087f512b931b15e31c7d73c48be952be15000d139fe

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

require "bundler/gem_tasks"

desc "Run unit tests"
task :default => 'test:unit'
task :test    => 'test:unit'

# ----- Test tasks ------------------------------------------------------------

require 'rake/testtask'
require 'rspec/core/rake_task'

namespace :test do

  RSpec::Core::RakeTask.new(:spec)

  Rake::TestTask.new(:all) do |test|
    test.verbose = false
    test.warning = false
    test.deps = [ :spec ] unless defined?(JRUBY_VERSION)
  end
end

namespace :bundle do
  desc 'Install gem dependencies'
  task :install do
    puts '-'*80
    Bundler.with_clean_env do
      sh 'bundle install'
    end
    puts '-'*80
  end
end

# ----- Documentation tasks ---------------------------------------------------

require 'yard'
YARD::Rake::YardocTask.new(:doc) do |t|
  t.options = %w| --embed-mixins --markup=markdown |
end

# ----- Code analysis tasks ---------------------------------------------------

if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
  require 'cane/rake_task'
  Cane::RakeTask.new(:quality) do |cane|
    cane.abc_max = 15
    cane.no_style = true
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elasticsearch-rails-6.1.1 Rakefile
elasticsearch-rails-6.1.0 Rakefile