Sha256: 54294d43d6c8585f8462cdb3ae87a06a40024130508a9a5feafc5fcaa18aff2e
Contents?: true
Size: 676 Bytes
Versions: 6
Compression:
Stored size: 676 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core' require 'rspec/core/rake_task' require 'solr_wrapper' require 'fcrepo_wrapper' require 'rubocop/rake_task' require 'active_fedora/rake_support' desc 'Run style checker' RuboCop::RakeTask.new(:rubocop) do |task| task.requires << 'rubocop-rspec' task.fail_on_error = true end desc 'Run test suite' task :spec do RSpec::Core::RakeTask.new(:spec) end desc 'Spin up test servers and run specs' task :spec_with_app_load do with_test_server do Rake::Task['spec'].invoke end end desc 'Spin up Solr & Fedora and run the test suite' task ci: :rubocop do Rake::Task['spec_with_app_load'].invoke end task default: :ci
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
hydra-pcdm-1.0.1 | Rakefile |
hydra-pcdm-1.0.0 | Rakefile |
hydra-pcdm-0.11.0 | Rakefile |
hydra-pcdm-0.10.0 | Rakefile |
hydra-pcdm-0.9.0 | Rakefile |
hydra-pcdm-0.8.2 | Rakefile |