From 60a8a0dcdb6706199165bdbb8f4838bad75adb69 Mon Sep 17 00:00:00 2001 From: Jeff Hodges Date: Fri, 4 Jun 2010 05:32:09 +0000 Subject: [PATCH] AVRO-500. Corrected development packaging for ruby. git-svn-id: https://svn.apache.org/repos/asf/avro/branches/branch-1.3@951274 13f79535-47bb-0310-9956-ffa450edef68 --- lang/ruby/Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/ruby/Rakefile b/lang/ruby/Rakefile index f5f4e7a3bd0..09ddcdb2653 100644 --- a/lang/ruby/Rakefile +++ b/lang/ruby/Rakefile @@ -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)