Sha256: ea4c99da683280d8749fef57de43d5939fddefbb453f3359d5462548f701b7ef

Contents?: true

Size: 1.87 KB

Versions: 57

Compression:

Stored size: 1.87 KB

Contents

require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'coveralls/rake/task'
require 'yard'
require 'yard-rspec'
Coveralls::RakeTask.new

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.rspec_opts = ['--backtrace '] if ENV['DEBUG']
end

# desc "Prepare dummy application"
# task :prepare do
#  ENV["RAILS_ENV"] ||= 'test'
#  require File.expand_path("./spec/dummy/config/environment", File.dirname(__FILE__))
#  Dummy::Application.load_tasks
#  Rake::Task["db:test:prepare"].invoke
# end
YARD::Config.options[:load_plugins] = true
YARD::Config.load_plugins

YARD::Rake::YardocTask.new do |t|
  t.files = ['lib/**/*.rb', 'spec/**/*_spec.rb'] # optional
  t.options = ['--any', '--extra', '--opts', '--markup-provider=redcarpet', '--markup=markdown', '--debug'] # optional
  t.stats_options = ['--list-undoc'] # optional
end

unless ENV['TRAVIS']
  require 'rvm-tester'
  RVM::Tester::TesterTask.new(:suite) do |t|
    t.rubies = %w(1.9.3 2.0.0 2.1.0) # which versions to test (required!)
    t.bundle_install = true # updates Gemfile.lock, default is true
    t.use_travis = true # looks for Rubies in .travis.yml (on by default)
    t.command = 'bundle exec rake' # runs plain "rake" by default
    t.env = { 'VERBOSE' => '1', 'RAILS_ENV' => 'test', 'RACK_ENV' => 'test' } # set any ENV vars
    t.num_workers = 5 # defaults to 3
    t.verbose = true # shows more output, off by default
  end
end

desc 'Default: run the unit tests.'
task default: [:all]

desc 'Test the plugin under all supported Rails versions.'
task :all do |_t|
  if ENV['TRAVIS']
    exec(' bundle exec phare &&  bundle exec rake  spec && bundle exec rake coveralls:push')
  else
    exec('bundle exec rubocop -a . && bundle exec phare && bundle exec rake spec')
  end
end

task :docs do
  exec(' bundle exec rubocop -a .  && bundle exec phare  && bundle exec inch --pedantic && bundle exec yard')
end

Version data entries

57 entries across 57 versions & 2 rubygems

Version Path
capistrano_multiconfig_parallel-0.15.3 Rakefile
capistrano_multiconfig_parallel-0.15.2 Rakefile
capistrano_multiconfig_parallel-0.15.1 Rakefile
capistrano_multiconfig_parallel-0.15.0 Rakefile
capistrano_multiconfig_parallel-0.14.0 Rakefile
capistrano_multiconfig_parallel-0.13.2 Rakefile
capistrano_multiconfig_parallel-0.13.1 Rakefile
capistrano_multiconfig_parallel-0.13.0 Rakefile
capistrano_multiconfig_parallel-0.12.9 Rakefile
capistrano_multiconfig_parallel-0.12.8 Rakefile
capistrano_multiconfig_parallel-0.12.7 Rakefile
capistrano_multiconfig_parallel-0.12.6 Rakefile
capistrano_multiconfig_parallel-0.12.5 Rakefile
capistrano_multiconfig_parallel-0.12.3 Rakefile
capistrano_multiconfig_parallel-0.12.2 Rakefile
capistrano_multiconfig_parallel-0.12.1 Rakefile
capistrano_multiconfig_parallel-0.12.0 Rakefile
capistrano_multiconfig_parallel-0.11.6 Rakefile
capistrano_multiconfig_parallel-0.11.5 Rakefile
capistrano_multiconfig_parallel-0.11.4 Rakefile