You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2007/02/19 03:20:25 UTC

svn commit: r509059 - in /lucene/solr/trunk/client/ruby/solr-ruby: README Rakefile

Author: ehatcher
Date: Sun Feb 18 18:20:25 2007
New Revision: 509059

URL: http://svn.apache.org/viewvc?view=rev&rev=509059
Log:
Rename solrb -> solr-ruby

Modified:
    lucene/solr/trunk/client/ruby/solr-ruby/README
    lucene/solr/trunk/client/ruby/solr-ruby/Rakefile

Modified: lucene/solr/trunk/client/ruby/solr-ruby/README
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/solr-ruby/README?view=diff&rev=509059&r1=509058&r2=509059
==============================================================================
--- lucene/solr/trunk/client/ruby/solr-ruby/README (original)
+++ lucene/solr/trunk/client/ruby/solr-ruby/README Sun Feb 18 18:20:25 2007
@@ -1,6 +1,6 @@
-solrb exposes the power of Solr as a Ruby  DSL (domain specific language).
+solr-ruby exposes the power of Solr as a Ruby  DSL (domain specific language).
 
-  Visit the solrb wiki for more information: http://wiki.apache.org/solr/solrb
+  Visit the solr-ruby wiki for more information: http://wiki.apache.org/solr/solr-ruby
 
 USAGE 
 

Modified: lucene/solr/trunk/client/ruby/solr-ruby/Rakefile
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/solr-ruby/Rakefile?view=diff&rev=509059&r1=509058&r2=509059
==============================================================================
--- lucene/solr/trunk/client/ruby/solr-ruby/Rakefile (original)
+++ lucene/solr/trunk/client/ruby/solr-ruby/Rakefile Sun Feb 18 18:20:25 2007
@@ -29,7 +29,7 @@
 # 
 #    rake SOLR_CONSOLE=true
 
-SOLRB_VERSION = '0.0.1'
+SOLR_RUBY_VERSION = '0.0.1'
 
 require 'rubygems'
 require 'rake'
@@ -42,11 +42,11 @@
 task :default => [:test_units]
 
 spec = Gem::Specification.new do |s|
-  s.name = 'solrb'
-  s.version = SOLRB_VERSION
+  s.name = 'solr-ruby'
+  s.version = SOLR_RUBY_VERSION
   s.author = 'Apache Solr'
-  s.email = 'solr-user@lucene.apache.org'
-  s.homepage = 'http://wiki.apache.org/solr/Flare'
+  s.email = 'ruby-dev@lucene.apache.org'
+  s.homepage = 'http://wiki.apache.org/solr/solr-ruby'
   s.platform = Gem::Platform::RUBY
   s.summary = 'Ruby library for working with Apache Solr'
   
@@ -70,7 +70,7 @@
   task :package => "init.rb" do
     File.rm_f("init.rb")
   end
-  Rake::PackageTask.new("solrb-rails", SOLRB_VERSION) do |pkg|
+  Rake::PackageTask.new("solr-ruby-rails", SOLR_RUBY_VERSION) do |pkg|
     pkg.need_zip = true
     pkg.need_tar = true
     pkg.package_dir = "pkg/rails"
@@ -85,9 +85,9 @@
   end
   
   desc "Install the Rails plugin version into the vendor/plugins dir. Need to set PLUGINS_DIR environment variable."
-  task :install_solrb => :package do
+  task :install_solr_ruby => :package do
     plugins_dir = ENV["PLUGINS_DIR"] or raise "You must set PLUGINS_DIR"
-    File.cp_r(File.join("pkg","rails", "solrb-rails-#{SOLRB_VERSION}/"), File.join(plugins_dir, "solrb-rails-#{SOLRB_VERSION}/"))
+    File.cp_r(File.join("pkg","rails", "solr-ruby-rails-#{SOLR_RUBY_VERSION}/"), File.join(plugins_dir, "solr-ruby-rails-#{SOLR_RUBY_VERSION}/"))
   end
 end