Sha256: 207a31014326c80383a4ccda38cc945bbbcf52c4e5ec59be1b2b1568d52eba3d
Contents?: true
Size: 549 Bytes
Versions: 14
Compression:
Stored size: 549 Bytes
Contents
namespace :jetty do desc "Copies the default Solr & Fedora configs into the bundled Hydra Testing Server" task :config do Rake::Task['sufia:jetty:download_jars'].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
14 entries across 14 versions & 1 rubygems