Sha256: dba58365fa2b327fa5a75377a390411d13dbe7f27b99d4735c6e0378818571b9

Contents?: true

Size: 1.37 KB

Versions: 21

Compression:

Stored size: 1.37 KB

Contents

# frozen_string_literal: true

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ClWiki'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

# Customized additions to the Rails Engine Rakefile below,
# since the current frankenstein setup has the core clWiki
# with Test::Unit tests and the new Rails Engine bits with RSpec.

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

task :tests do
  errors = %w[test spec].collect do |task|
    Rake::Task[task].invoke
    nil
  rescue StandardError => e
    {task: task, exception: e}
  end.compact

  if errors.any?
    puts errors.map { |e| "Errors running #{e[:task]}! #{e[:exception].inspect}" }.join("\n")
    abort
  end
end

task :rubocop do
  sh 'bundle exec rubocop'
end

task :rubocop_metrics do
  sh 'bundle exec rubocop -c .rubocop-metrics.yml'
end

task default: :tests
task default: :rubocop
task default: :rubocop_metrics

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
clwiki-3.3.2 Rakefile
clwiki-3.3.0 Rakefile
clwiki-3.2.6 Rakefile
clwiki-3.2.5 Rakefile
clwiki-3.2.4 Rakefile
clwiki-3.2.3 Rakefile
clwiki-3.2.2 Rakefile
clwiki-3.2.1 Rakefile
clwiki-3.2.0 Rakefile
clwiki-3.1.6 Rakefile
clwiki-3.1.5 Rakefile
clwiki-3.1.4 Rakefile
clwiki-3.1.3 Rakefile
clwiki-3.1.2 Rakefile
clwiki-3.1.1 Rakefile
clwiki-3.1.0 Rakefile
clwiki-3.0.4 Rakefile
clwiki-3.0.3 Rakefile
clwiki-3.0.2 Rakefile
clwiki-3.0.1 Rakefile