From e170392ebbf30d1801a0c6ce9720fa51a6ed38a5 Mon Sep 17 00:00:00 2001 From: Anatol Date: Mon, 24 Feb 2014 23:52:39 -0800 Subject: [PATCH] Fix dependency gem name There is no such gem 'multi-json'. http://rubygems.org/search?utf8=%E2%9C%93&query=multi-json Authors probably mean multi_json --- lang/ruby/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ruby/Rakefile b/lang/ruby/Rakefile index 2cde4407b1e..d1da5d0921c 100644 --- a/lang/ruby/Rakefile +++ b/lang/ruby/Rakefile @@ -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)