Sha256: bec1e50b30d23614bafb3b9305464e866edf09c5769d3658d501337de10c0e1c

Contents?: true

Size: 507 Bytes

Versions: 6

Compression:

Stored size: 507 Bytes

Contents

# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'engine_cart/rake_task'
require 'rubocop/rake_task'

Dir.glob('lib/tasks/*.rake').each { |r| import r }

desc 'Run test suite'
task :spec do
  RSpec::Core::RakeTask.new
end

desc 'Run style checker'
RuboCop::RakeTask.new(:rubocop) do |task|
  task.fail_on_error = true
end

desc 'Continuous Integration (generate test app and run tests)'
task ci: ['rubocop', 'engine_cart:generate', 'spec']

task default: :ci

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
active_fedora-noid-2.2.0 Rakefile
active_fedora-noid-2.1.0 Rakefile
active_fedora-noid-2.0.2 Rakefile
active_fedora-noid-2.0.1 Rakefile
active_fedora-noid-2.0.0 Rakefile
active_fedora-noid-2.0.0.beta6 Rakefile