You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2016/01/10 21:18:04 UTC

thrift git commit: THRIFT-3127 rb: switch -recurse to --recurse

Repository: thrift
Updated Branches:
  refs/heads/master 65d8564e9 -> 051ed3c80


THRIFT-3127 rb: switch -recurse to --recurse


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/051ed3c8
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/051ed3c8
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/051ed3c8

Branch: refs/heads/master
Commit: 051ed3c80da3e26f331e82e5605e81ecf1300f04
Parents: 65d8564
Author: Roger Meier <ro...@apache.org>
Authored: Sun Jan 10 21:08:33 2016 +0100
Committer: Roger Meier <ro...@apache.org>
Committed: Sun Jan 10 21:17:51 2016 +0100

----------------------------------------------------------------------
 lib/rb/Rakefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/051ed3c8/lib/rb/Rakefile
----------------------------------------------------------------------
diff --git a/lib/rb/Rakefile b/lib/rb/Rakefile
index 0831e68..cdecaa6 100644
--- a/lib/rb/Rakefile
+++ b/lib/rb/Rakefile
@@ -47,15 +47,15 @@ namespace :'gen-rb' do
 
   task :'namespaced_spec' do
     dir = File.dirname(__FILE__) + '/spec'
-    sh THRIFT, '--gen', 'rb:namespaced', '-recurse', '-o', dir, "#{dir}/ThriftNamespacedSpec.thrift"
-    sh THRIFT, '--gen', 'rb:namespaced', '-recurse', '-o', dir, "#{dir}/BaseService.thrift"
-    sh THRIFT, '--gen', 'rb:namespaced', '-recurse', '-o', dir, "#{dir}/ExtendedService.thrift"
+    sh THRIFT, '--gen', 'rb:namespaced', '--recurse', '-o', dir, "#{dir}/ThriftNamespacedSpec.thrift"
+    sh THRIFT, '--gen', 'rb:namespaced', '--recurse', '-o', dir, "#{dir}/BaseService.thrift"
+    sh THRIFT, '--gen', 'rb:namespaced', '--recurse', '-o', dir, "#{dir}/ExtendedService.thrift"
   end
 
   task :'flat_spec' do
     dir = File.dirname(__FILE__) + '/spec'
     mkdir_p("#{dir}/gen-rb/flat")
-    sh THRIFT, '--gen', 'rb', '-recurse', '-out', "#{dir}/gen-rb/flat", "#{dir}/ThriftNamespacedSpec.thrift"
+    sh THRIFT, '--gen', 'rb', '--recurse', '-out', "#{dir}/gen-rb/flat", "#{dir}/ThriftNamespacedSpec.thrift"
   end
 
   task :'benchmark' do