garru-ruby_scribe_client 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +3 -0
- data/LICENSE +0 -0
- data/Manifest +39 -0
- data/README +0 -0
- data/Rakefile +8 -0
- data/etc/scribe_cat.rb +23 -0
- data/lib/ruby_scribe_client/FacebookService.rb +685 -0
- data/lib/ruby_scribe_client/fb303_types.rb +16 -0
- data/lib/ruby_scribe_client/reflection_limited_types.rb +148 -0
- data/lib/ruby_scribe_client/scribe.rb +82 -0
- data/lib/ruby_scribe_client/scribe_types.rb +32 -0
- data/lib/ruby_scribe_client.rb +33 -0
- data/ruby_scribe_client.gemspec +31 -0
- data/vendor/thrift/client.rb +44 -0
- data/vendor/thrift/deprecation.rb +155 -0
- data/vendor/thrift/exceptions.rb +65 -0
- data/vendor/thrift/processor.rb +39 -0
- data/vendor/thrift/protocol/binaryprotocol.rb +213 -0
- data/vendor/thrift/protocol/binaryprotocolaccelerated.rb +19 -0
- data/vendor/thrift/protocol/tbinaryprotocol.rb +2 -0
- data/vendor/thrift/protocol/tprotocol.rb +2 -0
- data/vendor/thrift/protocol.rb +270 -0
- data/vendor/thrift/serializer.rb +27 -0
- data/vendor/thrift/server/httpserver.rb +44 -0
- data/vendor/thrift/server/nonblockingserver.rb +278 -0
- data/vendor/thrift/server/thttpserver.rb +2 -0
- data/vendor/thrift/server/tserver.rb +2 -0
- data/vendor/thrift/server.rb +135 -0
- data/vendor/thrift/struct.rb +272 -0
- data/vendor/thrift/thrift.rb +14 -0
- data/vendor/thrift/transport/httpclient.rb +29 -0
- data/vendor/thrift/transport/socket.rb +153 -0
- data/vendor/thrift/transport/thttpclient.rb +2 -0
- data/vendor/thrift/transport/tsocket.rb +2 -0
- data/vendor/thrift/transport/ttransport.rb +2 -0
- data/vendor/thrift/transport/unixsocket.rb +58 -0
- data/vendor/thrift/transport.rb +319 -0
- data/vendor/thrift/types.rb +83 -0
- data/vendor/thrift.rb +28 -0
- metadata +104 -0
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: garru-ruby_scribe_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gary Tsang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-12 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Ruby Scribe Client. Package and Wrapper for generated ruby interfaces
|
17
|
+
email: ""
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- CHANGELOG
|
24
|
+
- lib/ruby_scribe_client/FacebookService.rb
|
25
|
+
- lib/ruby_scribe_client/fb303_types.rb
|
26
|
+
- lib/ruby_scribe_client/reflection_limited_types.rb
|
27
|
+
- lib/ruby_scribe_client/scribe.rb
|
28
|
+
- lib/ruby_scribe_client/scribe_types.rb
|
29
|
+
- lib/ruby_scribe_client.rb
|
30
|
+
- LICENSE
|
31
|
+
- README
|
32
|
+
files:
|
33
|
+
- CHANGELOG
|
34
|
+
- etc/scribe_cat.rb
|
35
|
+
- lib/ruby_scribe_client/FacebookService.rb
|
36
|
+
- lib/ruby_scribe_client/fb303_types.rb
|
37
|
+
- lib/ruby_scribe_client/reflection_limited_types.rb
|
38
|
+
- lib/ruby_scribe_client/scribe.rb
|
39
|
+
- lib/ruby_scribe_client/scribe_types.rb
|
40
|
+
- lib/ruby_scribe_client.rb
|
41
|
+
- LICENSE
|
42
|
+
- Manifest
|
43
|
+
- Rakefile
|
44
|
+
- README
|
45
|
+
- ruby_scribe_client.gemspec
|
46
|
+
- vendor/thrift/client.rb
|
47
|
+
- vendor/thrift/deprecation.rb
|
48
|
+
- vendor/thrift/exceptions.rb
|
49
|
+
- vendor/thrift/processor.rb
|
50
|
+
- vendor/thrift/protocol/binaryprotocol.rb
|
51
|
+
- vendor/thrift/protocol/binaryprotocolaccelerated.rb
|
52
|
+
- vendor/thrift/protocol/tbinaryprotocol.rb
|
53
|
+
- vendor/thrift/protocol/tprotocol.rb
|
54
|
+
- vendor/thrift/protocol.rb
|
55
|
+
- vendor/thrift/serializer.rb
|
56
|
+
- vendor/thrift/server/httpserver.rb
|
57
|
+
- vendor/thrift/server/nonblockingserver.rb
|
58
|
+
- vendor/thrift/server/thttpserver.rb
|
59
|
+
- vendor/thrift/server/tserver.rb
|
60
|
+
- vendor/thrift/server.rb
|
61
|
+
- vendor/thrift/struct.rb
|
62
|
+
- vendor/thrift/thrift.rb
|
63
|
+
- vendor/thrift/transport/httpclient.rb
|
64
|
+
- vendor/thrift/transport/socket.rb
|
65
|
+
- vendor/thrift/transport/thttpclient.rb
|
66
|
+
- vendor/thrift/transport/tsocket.rb
|
67
|
+
- vendor/thrift/transport/ttransport.rb
|
68
|
+
- vendor/thrift/transport/unixsocket.rb
|
69
|
+
- vendor/thrift/transport.rb
|
70
|
+
- vendor/thrift/types.rb
|
71
|
+
- vendor/thrift.rb
|
72
|
+
has_rdoc: true
|
73
|
+
homepage: http://github.com/garru/ruby_scribe_client
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options:
|
76
|
+
- --line-numbers
|
77
|
+
- --inline-source
|
78
|
+
- --title
|
79
|
+
- Ruby_scribe_client
|
80
|
+
- --main
|
81
|
+
- README
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: "0"
|
89
|
+
version:
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: "1.2"
|
95
|
+
version:
|
96
|
+
requirements: []
|
97
|
+
|
98
|
+
rubyforge_project: ruby_scribe_client
|
99
|
+
rubygems_version: 1.2.0
|
100
|
+
signing_key:
|
101
|
+
specification_version: 2
|
102
|
+
summary: Ruby Scribe Client. Package and Wrapper for generated ruby interfaces
|
103
|
+
test_files: []
|
104
|
+
|