fb_graph 0.0.1

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.
Files changed (49) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +17 -0
  5. data/Rakefile +49 -0
  6. data/VERSION +1 -0
  7. data/fb_graph.gemspec +107 -0
  8. data/lib/fb_graph/connections/collection.rb +31 -0
  9. data/lib/fb_graph/connections/feed.rb +9 -0
  10. data/lib/fb_graph/connections/home.rb +9 -0
  11. data/lib/fb_graph/connections/likes.rb +12 -0
  12. data/lib/fb_graph/connections/picture.rb +14 -0
  13. data/lib/fb_graph/connections/posts.rb +15 -0
  14. data/lib/fb_graph/connections/statuses.rb +12 -0
  15. data/lib/fb_graph/connections/tagged.rb +9 -0
  16. data/lib/fb_graph/connections.rb +6 -0
  17. data/lib/fb_graph/node.rb +62 -0
  18. data/lib/fb_graph/page.rb +14 -0
  19. data/lib/fb_graph/post.rb +39 -0
  20. data/lib/fb_graph/status.rb +18 -0
  21. data/lib/fb_graph/user.rb +31 -0
  22. data/lib/fb_graph.rb +26 -0
  23. data/spec/fake_json/pages/platform_private.json +13 -0
  24. data/spec/fake_json/pages/platform_public.json +13 -0
  25. data/spec/fake_json/pages/statuses/platform_private.json +258 -0
  26. data/spec/fake_json/pages/statuses/platform_public.json +6 -0
  27. data/spec/fake_json/users/arjun_private.json +99 -0
  28. data/spec/fake_json/users/arjun_public.json +7 -0
  29. data/spec/fake_json/users/home/arjun_private.json +6 -0
  30. data/spec/fake_json/users/home/arjun_public.json +6 -0
  31. data/spec/fake_json/users/home/me_private.json +383 -0
  32. data/spec/fake_json/users/home/me_public.json +6 -0
  33. data/spec/fake_json/users/likes/arjun_private.json +1394 -0
  34. data/spec/fake_json/users/likes/arjun_public.json +6 -0
  35. data/spec/fake_json/users/statuses/arjun_private.json +233 -0
  36. data/spec/fake_json/users/statuses/arjun_public.json +6 -0
  37. data/spec/fb_graph/connections/collection_spec.rb +15 -0
  38. data/spec/fb_graph/connections/home_spec.rb +38 -0
  39. data/spec/fb_graph/connections/likes_spec.rb +33 -0
  40. data/spec/fb_graph/connections/picture_spec.rb +29 -0
  41. data/spec/fb_graph/connections/statuses_spec.rb +83 -0
  42. data/spec/fb_graph/node_spec.rb +13 -0
  43. data/spec/fb_graph/page_spec.rb +19 -0
  44. data/spec/fb_graph/user_spec.rb +41 -0
  45. data/spec/fb_graph_spec.rb +13 -0
  46. data/spec/helpers/fake_json_helper.rb +9 -0
  47. data/spec/spec.opts +3 -0
  48. data/spec/spec_helper.rb +18 -0
  49. metadata +155 -0
metadata ADDED
@@ -0,0 +1,155 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fb_graph
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - nov matake
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-04-26 00:00:00 +09:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: json
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :development
31
+ version_requirements: *id001
32
+ - !ruby/object:Gem::Dependency
33
+ name: activesupport
34
+ prerelease: false
35
+ requirement: &id002 !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ segments:
40
+ - 0
41
+ version: "0"
42
+ type: :development
43
+ version_requirements: *id002
44
+ - !ruby/object:Gem::Dependency
45
+ name: rest-client
46
+ prerelease: false
47
+ requirement: &id003 !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ segments:
52
+ - 0
53
+ version: "0"
54
+ type: :development
55
+ version_requirements: *id003
56
+ description: Facebook Graph API library for Ruby
57
+ email: nov@matake.jp
58
+ executables: []
59
+
60
+ extensions: []
61
+
62
+ extra_rdoc_files:
63
+ - LICENSE
64
+ - README.rdoc
65
+ files:
66
+ - .document
67
+ - .gitignore
68
+ - LICENSE
69
+ - README.rdoc
70
+ - Rakefile
71
+ - VERSION
72
+ - fb_graph.gemspec
73
+ - lib/fb_graph.rb
74
+ - lib/fb_graph/connections.rb
75
+ - lib/fb_graph/connections/collection.rb
76
+ - lib/fb_graph/connections/feed.rb
77
+ - lib/fb_graph/connections/home.rb
78
+ - lib/fb_graph/connections/likes.rb
79
+ - lib/fb_graph/connections/picture.rb
80
+ - lib/fb_graph/connections/posts.rb
81
+ - lib/fb_graph/connections/statuses.rb
82
+ - lib/fb_graph/connections/tagged.rb
83
+ - lib/fb_graph/node.rb
84
+ - lib/fb_graph/page.rb
85
+ - lib/fb_graph/post.rb
86
+ - lib/fb_graph/status.rb
87
+ - lib/fb_graph/user.rb
88
+ - spec/fake_json/pages/platform_private.json
89
+ - spec/fake_json/pages/platform_public.json
90
+ - spec/fake_json/pages/statuses/platform_private.json
91
+ - spec/fake_json/pages/statuses/platform_public.json
92
+ - spec/fake_json/users/arjun_private.json
93
+ - spec/fake_json/users/arjun_public.json
94
+ - spec/fake_json/users/home/arjun_private.json
95
+ - spec/fake_json/users/home/arjun_public.json
96
+ - spec/fake_json/users/home/me_private.json
97
+ - spec/fake_json/users/home/me_public.json
98
+ - spec/fake_json/users/likes/arjun_private.json
99
+ - spec/fake_json/users/likes/arjun_public.json
100
+ - spec/fake_json/users/statuses/arjun_private.json
101
+ - spec/fake_json/users/statuses/arjun_public.json
102
+ - spec/fb_graph/connections/collection_spec.rb
103
+ - spec/fb_graph/connections/home_spec.rb
104
+ - spec/fb_graph/connections/likes_spec.rb
105
+ - spec/fb_graph/connections/picture_spec.rb
106
+ - spec/fb_graph/connections/statuses_spec.rb
107
+ - spec/fb_graph/node_spec.rb
108
+ - spec/fb_graph/page_spec.rb
109
+ - spec/fb_graph/user_spec.rb
110
+ - spec/fb_graph_spec.rb
111
+ - spec/helpers/fake_json_helper.rb
112
+ - spec/spec.opts
113
+ - spec/spec_helper.rb
114
+ has_rdoc: true
115
+ homepage: http://github.com/nov/fb_graph
116
+ licenses: []
117
+
118
+ post_install_message:
119
+ rdoc_options:
120
+ - --charset=UTF-8
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ segments:
128
+ - 0
129
+ version: "0"
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ segments:
135
+ - 0
136
+ version: "0"
137
+ requirements: []
138
+
139
+ rubyforge_project:
140
+ rubygems_version: 1.3.6
141
+ signing_key:
142
+ specification_version: 3
143
+ summary: Facebook Graph API library for Ruby
144
+ test_files:
145
+ - spec/fb_graph/connections/collection_spec.rb
146
+ - spec/fb_graph/connections/home_spec.rb
147
+ - spec/fb_graph/connections/likes_spec.rb
148
+ - spec/fb_graph/connections/picture_spec.rb
149
+ - spec/fb_graph/connections/statuses_spec.rb
150
+ - spec/fb_graph/node_spec.rb
151
+ - spec/fb_graph/page_spec.rb
152
+ - spec/fb_graph/user_spec.rb
153
+ - spec/fb_graph_spec.rb
154
+ - spec/helpers/fake_json_helper.rb
155
+ - spec/spec_helper.rb