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/06/04 07:32:09 UTC

svn commit: r951274 - in /avro/branches/branch-1.3: ./ lang/ruby/Rakefile

Author: jmhodges
Date: Fri Jun  4 05:32:09 2010
New Revision: 951274

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

Modified:
    avro/branches/branch-1.3/   (props changed)
    avro/branches/branch-1.3/lang/ruby/Rakefile

Propchange: avro/branches/branch-1.3/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jun  4 05:32:09 2010
@@ -1,2 +1,2 @@
 /avro/trunk:944035,944049
-/hadoop/avro/trunk:930458-930459,930461-930462,930599,931026,935526,938347
+/hadoop/avro/trunk:930458-930459,930461-930462,930599,931026-931027,935526,938347

Modified: avro/branches/branch-1.3/lang/ruby/Rakefile
URL: http://svn.apache.org/viewvc/avro/branches/branch-1.3/lang/ruby/Rakefile?rev=951274&r1=951273&r2=951274&view=diff
==============================================================================
--- avro/branches/branch-1.3/lang/ruby/Rakefile (original)
+++ avro/branches/branch-1.3/lang/ruby/Rakefile Fri Jun  4 05:32:09 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)