Author: cutting
Date: Thu Mar 13 20:43:05 2014
New Revision: 1577311
URL: http://svn.apache.org/r1577311
Log:
AVRO-1459. Ruby: Fix a typo in Rakefile that breaks 'gem install'. Contributed
by Tomas Svarovsky.
Modified:
avro/trunk/CHANGES.txt
avro/trunk/lang/ruby/Rakefile
Modified: avro/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1577311&r1=1577310&r2=1577311&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Thu Mar 13 20:43:05 2014
@@ -49,6 +49,9 @@ Trunk (not yet released)
AVRO-1473. Java: Fix references to names in the empty namespace.
(Gabriel Reid via cutting)
+ AVRO-1459. Ruby: Fix a typo in Rakefile that breaks 'gem install'.
+ (Tomas Svarovsky via cutting)
+
Avro 1.7.6 (15 January 2014)
NEW FEATURES
Modified: avro/trunk/lang/ruby/Rakefile
URL:
http://svn.apache.org/viewvc/avro/trunk/lang/ruby/Rakefile?rev=1577311&r1=1577310&r2=1577311&view=diff
==============================================================================
--- avro/trunk/lang/ruby/Rakefile (original)
+++ avro/trunk/lang/ruby/Rakefile Thu Mar 13 20:43:05 2014
@@ -23,7 +23,7 @@ Echoe.new('avro', VERSION) do |p|
p.summary = "Apache Avro for Ruby"
p.description = "Avro is a data serialization and RPC format"
p.url = "http://hadoop.apache.org/avro/"
- p.runtime_dependencies = %w[multi-json]
+ p.runtime_dependencies = %w[multi_json]
end
t = Rake::TestTask.new(:interop)