You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/08/30 19:41:21 UTC

svn commit: r990878 - /avro/trunk/lang/ruby/Rakefile

Author: cutting
Date: Mon Aug 30 17:41:20 2010
New Revision: 990878

URL: http://svn.apache.org/viewvc?rev=990878&view=rev
Log:
Fix Ruby dist target to not automatically update Manifest.

Modified:
    avro/trunk/lang/ruby/Rakefile

Modified: avro/trunk/lang/ruby/Rakefile
URL: http://svn.apache.org/viewvc/avro/trunk/lang/ruby/Rakefile?rev=990878&r1=990877&r2=990878&view=diff
==============================================================================
--- avro/trunk/lang/ruby/Rakefile (original)
+++ avro/trunk/lang/ruby/Rakefile Mon Aug 30 17:41:20 2010
@@ -53,7 +53,7 @@ SHARE = HERE + '/../../share'
 SCHEMAS = SHARE + '/test/schemas'
 BUILD = HERE + '/../../build'
 
-task :dist => [:manifest, :gem] do
+task :dist => [:gem] do
   mkdir_p "../../dist/ruby"
   cp "pkg/avro-#{VERSION}.gem", "../../dist/ruby"
 end