Sha256: f728b804dbc2c86c82f89cb02236bffc14666c1ac7038d4a0594c160d3df1cf9
Contents?: true
Size: 508 Bytes
Versions: 6
Compression:
Stored size: 508 Bytes
Contents
require 'rake/clean' require 'bundler' Bundler::GemHelper.install_tasks # load rake tasks defined in lib/tasks that are not loaded in lib/valkyrie_active_fedora.rb load "lib/tasks/valkyrie_active_fedora_dev.rake" CLEAN.include %w(**/.DS_Store tmp *.log *.orig *.tmp **/*~) desc 'setup jetty and run tests' task ci: ['valkyrie_active_fedora:ci'] desc 'run tests' task spec: ['valkyrie_active_fedora:rubocop', 'valkyrie_active_fedora:rspec'] task rcov: ['valkyrie_active_fedora:rcov'] task default: [:ci]
Version data entries
6 entries across 6 versions & 1 rubygems