rsolr 1.1.2 → 2.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
data/tasks/rdoc.rake DELETED
@@ -1,11 +0,0 @@
1
- # Rdoc
2
- require "rdoc/task"
3
-
4
- desc 'Generate documentation for the rsolr gem.'
5
- RDoc::Task.new(:doc) do |rdoc|
6
- rdoc.rdoc_dir = 'doc'
7
- rdoc.title = 'RSolr'
8
- rdoc.options << '--line-numbers' << '--inline-source'
9
- rdoc.rdoc_files.include('README.rdoc')
10
- rdoc.rdoc_files.include('lib/**/*.rb')
11
- end
data/tasks/rsolr.rake DELETED
@@ -1,10 +0,0 @@
1
- namespace :rsolr do
2
-
3
- namespace :solr do
4
- desc "Starts the HTTP server (port 9999) used for running HTTP connection tests"
5
- task :start do
6
- system "cd jetty; java -jar start.jar"
7
- end
8
- end
9
-
10
- end
data/tasks/spec.rake DELETED
@@ -1,2 +0,0 @@
1
- require 'rspec/core/rake_task'
2
- RSpec::Core::RakeTask.new(:spec)