Sha256: 086c90ca7011f29a9d5b53df6843e6fec84276538ba7cfba4a29b0c800e9bc36
Contents?: true
Size: 548 Bytes
Versions: 5
Compression:
Stored size: 548 Bytes
Contents
namespace :jetty do desc "Copies the default Solr & Fedora configs into the bundled Hydra Testing Server" task :config do Rake::Task['hydra_works:jetty:config'].invoke Rake::Task["jetty:config_solr"].invoke end desc "Copies the contents of solr_conf into the Solr development-core and test-core of Testing Server" task :config_solr do FileList['solr_conf/conf/*'].each do |f| cp("#{f}", 'jetty/solr/development-core/conf/', verbose: true) cp("#{f}", 'jetty/solr/test-core/conf/', verbose: true) end end end
Version data entries
5 entries across 5 versions & 1 rubygems