Split out thrift/thrift.rb, add top level thrift.rb in prep for gemmification
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668901 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/rb/lib/thrift.rb b/lib/rb/lib/thrift.rb
new file mode 100644
index 0000000..99a7568
--- /dev/null
+++ b/lib/rb/lib/thrift.rb
@@ -0,0 +1,28 @@
+#
+# Copyright (c) 2006- Facebook
+# Distributed under the Thrift Software License
+#
+# See accompanying file LICENSE or visit the Thrift site at:
+# http://developers.facebook.com/thrift/
+#
+# Author: Mark Slee <mcslee@facebook.com>
+#
+
+$:.unshift File.dirname(__FILE__)
+
+require 'thrift/exceptions'
+require 'thrift/types'
+require 'thrift/tprocessor'
+require 'thrift/thrift_client'
+require 'thrift/thrift_struct'
+
+require 'thrift/protocol/tprotocol'
+
+require 'thrift/transport/tsocket'
+require 'thrift/transport/ttransport'
+
+require 'thrift/server/tserver'
+
+
+
+