Sha256: ad00e0f389c158f9f6f544ec4e6f571a244a3d4c711bb8ab93f167f03bd8c859

Contents?: true

Size: 1.11 KB

Versions: 29

Compression:

Stored size: 1.11 KB

Contents

# installs, starts, stops and reindexes solr using the sunspot gem

namespace :rubber do

  namespace :solr_sunspot do

    desc "start solr"
    task :start, :roles => :solr_sunspot, :except => { :no_release => true } do 
      run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec sunspot-solr start --port=8983 --data-directory=#{shared_path}/solr/data --pid-dir=#{shared_path}/pids"
    end
    desc "stop solr"
    task :stop, :roles => :solr_sunspot, :except => { :no_release => true } do 
      run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec sunspot-solr stop --port=8983 --data-directory=#{shared_path}/solr/data --pid-dir=#{shared_path}/pids"
    end
    desc "reindex the whole database"
    task :reindex, :roles => :solr_sunspot do
      stop
      run "rm -rf #{shared_path}/solr/data"
      start
      run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec rake sunspot:solr:reindex"
    end
    
    task :setup_solr_data_dir, :roles => :solr_sunspot  do
      run "mkdir -p #{shared_path}/solr/data"
    end

    after 'deploy:setup', 'rubber:solr_sunspot:setup_solr_data_dir'
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
rubber-3.2.2 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-3.2.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-3.2.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-3.1.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-3.0.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-3.0.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.16.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.15.2 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.15.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.15.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.14.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.13.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.13.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.12.2 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.12.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.12.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.11.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.10.2 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.10.1 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb
rubber-2.10.0 templates/solr_sunspot/config/rubber/deploy-solr_sunspot.rb