You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by jm...@apache.org on 2010/04/06 07:55:56 UTC

svn commit: r931027 - /hadoop/avro/trunk/lang/ruby/Rakefile

Author: jmhodges
Date: Tue Apr  6 05:55:56 2010
New Revision: 931027

URL: http://svn.apache.org/viewvc?rev=931027&view=rev
Log:
AVRO-500. Corrected development packaging for ruby.

Modified:
    hadoop/avro/trunk/lang/ruby/Rakefile

Modified: hadoop/avro/trunk/lang/ruby/Rakefile
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/ruby/Rakefile?rev=931027&r1=931026&r2=931027&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/ruby/Rakefile (original)
+++ hadoop/avro/trunk/lang/ruby/Rakefile Tue Apr  6 05:55:56 2010
@@ -16,14 +16,14 @@
 
 require 'rubygems'
 require 'echoe'
-VERSION = File.open('../../share/VERSION.txt').read
+VERSION = File.open('../../share/VERSION.txt').read.sub('-SNAPSHOT', '.pre1').chomp
 Echoe.new('avro', VERSION) do |p|
   p.author = "Apache Software Foundation"
   p.email = "avro-dev@hadoop.apache.org"
   p.summary = "Apache Avro for Ruby"
   p.description = "Apache is a data serialization and RPC format"
   p.url = "http://hadoop.apache.org/avro/"
-  p.runtime_dependencies = %w[rubygems yajl]
+  p.runtime_dependencies = %w[yajl-ruby]
 end
 
 t = Rake::TestTask.new(:interop)