Added UUID support in Ruby library
diff --git a/test/rb/integration/TestClient.rb b/test/rb/integration/TestClient.rb
index 403cc4c..1876529 100755
--- a/test/rb/integration/TestClient.rb
+++ b/test/rb/integration/TestClient.rb
@@ -247,6 +247,14 @@
     Thrift::Test::Xtruct.new({'string_thing' => 'hi!', 'i32_thing' => 4 })
   end
 
+  def test_uuid
+    p 'test_uuid'
+    val = '00112233-4455-6677-8899-aabbccddeeff'
+    ret = @client.testUuid(val)
+    assert_equal(ret, val)
+    assert_kind_of(String, ret)
+  end
+
   def test_struct
     p 'test_struct'
     ret = @client.testStruct(get_struct)