Skip to content

Commit

Permalink
AVRO-500. Corrected development packaging for ruby.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/avro/branches/branch-1.3@951274 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Jeff Hodges committed Jun 4, 2010
1 parent 256ac33 commit 60a8a0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/ruby/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 60a8a0d

Please sign in to comment.