fb_graph 1.3.9 → 1.4.0

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.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fb_graph
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
5
- prerelease: false
4
+ hash: 7
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
- - 3
9
- - 9
10
- version: 1.3.9
8
+ - 4
9
+ - 0
10
+ version: 1.4.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - nov matake
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-04 00:00:00 +09:00
18
+ date: 2011-02-05 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -136,7 +136,6 @@ extra_rdoc_files:
136
136
  - README.rdoc
137
137
  files:
138
138
  - .document
139
- - .gitignore
140
139
  - LICENSE
141
140
  - README.rdoc
142
141
  - Rakefile
@@ -169,6 +168,7 @@ files:
169
168
  - lib/fb_graph/connections/declined.rb
170
169
  - lib/fb_graph/connections/events.rb
171
170
  - lib/fb_graph/connections/feed.rb
171
+ - lib/fb_graph/connections/former_participants.rb
172
172
  - lib/fb_graph/connections/friend_lists.rb
173
173
  - lib/fb_graph/connections/friends.rb
174
174
  - lib/fb_graph/connections/games.rb
@@ -181,18 +181,22 @@ files:
181
181
  - lib/fb_graph/connections/links.rb
182
182
  - lib/fb_graph/connections/maybe.rb
183
183
  - lib/fb_graph/connections/members.rb
184
+ - lib/fb_graph/connections/messages.rb
184
185
  - lib/fb_graph/connections/movies.rb
185
186
  - lib/fb_graph/connections/music.rb
186
187
  - lib/fb_graph/connections/noreply.rb
187
188
  - lib/fb_graph/connections/notes.rb
189
+ - lib/fb_graph/connections/participants.rb
188
190
  - lib/fb_graph/connections/photos.rb
189
191
  - lib/fb_graph/connections/picture.rb
190
192
  - lib/fb_graph/connections/posts.rb
193
+ - lib/fb_graph/connections/senders.rb
191
194
  - lib/fb_graph/connections/statuses.rb
192
195
  - lib/fb_graph/connections/subscriptions.rb
193
196
  - lib/fb_graph/connections/tagged.rb
194
197
  - lib/fb_graph/connections/television.rb
195
198
  - lib/fb_graph/connections/test_users.rb
199
+ - lib/fb_graph/connections/threads.rb
196
200
  - lib/fb_graph/connections/videos.rb
197
201
  - lib/fb_graph/education.rb
198
202
  - lib/fb_graph/event.rb
@@ -201,6 +205,7 @@ files:
201
205
  - lib/fb_graph/insight.rb
202
206
  - lib/fb_graph/link.rb
203
207
  - lib/fb_graph/location.rb
208
+ - lib/fb_graph/message.rb
204
209
  - lib/fb_graph/node.rb
205
210
  - lib/fb_graph/note.rb
206
211
  - lib/fb_graph/page.rb
@@ -218,6 +223,7 @@ files:
218
223
  - lib/fb_graph/tag.rb
219
224
  - lib/fb_graph/targeting.rb
220
225
  - lib/fb_graph/test_user.rb
226
+ - lib/fb_graph/thread.rb
221
227
  - lib/fb_graph/user.rb
222
228
  - lib/fb_graph/venue.rb
223
229
  - lib/fb_graph/video.rb
@@ -265,6 +271,10 @@ files:
265
271
  - spec/fake_json/query/user/with_valid_token.json
266
272
  - spec/fake_json/query/user/without_token.json
267
273
  - spec/fake_json/statuses/with_likes.json
274
+ - spec/fake_json/thread/former_participants/private.json
275
+ - spec/fake_json/thread/messages/private.json
276
+ - spec/fake_json/thread/participants/private.json
277
+ - spec/fake_json/thread/senders/private.json
268
278
  - spec/fake_json/token_response.json
269
279
  - spec/fake_json/true.json
270
280
  - spec/fake_json/users/accounts/matake_private.json
@@ -322,6 +332,7 @@ files:
322
332
  - spec/fake_json/users/tagged/arjun_private.json
323
333
  - spec/fake_json/users/tagged/arjun_public.json
324
334
  - spec/fake_json/users/television/matake_private.json
335
+ - spec/fake_json/users/threads/me_private.json
325
336
  - spec/fake_json/users/videos/kirk_private.json
326
337
  - spec/fb_graph/album_spec.rb
327
338
  - spec/fb_graph/app_request_spec.rb
@@ -343,6 +354,7 @@ files:
343
354
  - spec/fb_graph/connections/declined_spec.rb
344
355
  - spec/fb_graph/connections/events_spec.rb
345
356
  - spec/fb_graph/connections/feed_spec.rb
357
+ - spec/fb_graph/connections/former_participants_spec.rb
346
358
  - spec/fb_graph/connections/friend_lists_spec.rb
347
359
  - spec/fb_graph/connections/friends_spec.rb
348
360
  - spec/fb_graph/connections/games_spec.rb
@@ -355,18 +367,22 @@ files:
355
367
  - spec/fb_graph/connections/links_spec.rb
356
368
  - spec/fb_graph/connections/maybe_spec.rb
357
369
  - spec/fb_graph/connections/members_spec.rb
370
+ - spec/fb_graph/connections/messages_spec.rb
358
371
  - spec/fb_graph/connections/movies_spec.rb
359
372
  - spec/fb_graph/connections/music_spec.rb
360
373
  - spec/fb_graph/connections/noreply_spec.rb
361
374
  - spec/fb_graph/connections/notes_spec.rb
375
+ - spec/fb_graph/connections/participants_spec.rb
362
376
  - spec/fb_graph/connections/photos_spec.rb
363
377
  - spec/fb_graph/connections/picture_spec.rb
364
378
  - spec/fb_graph/connections/posts_spec.rb
379
+ - spec/fb_graph/connections/senders_spec.rb
365
380
  - spec/fb_graph/connections/statuses_spec.rb
366
381
  - spec/fb_graph/connections/subscriptions_spec.rb
367
382
  - spec/fb_graph/connections/tagged_spec.rb
368
383
  - spec/fb_graph/connections/television_spec.rb
369
384
  - spec/fb_graph/connections/test_users_spec.rb
385
+ - spec/fb_graph/connections/threads_spec.rb
370
386
  - spec/fb_graph/connections/videos_spec.rb
371
387
  - spec/fb_graph/education_spec.rb
372
388
  - spec/fb_graph/event_spec.rb
@@ -376,6 +392,7 @@ files:
376
392
  - spec/fb_graph/insight_spec.rb
377
393
  - spec/fb_graph/link_spec.rb
378
394
  - spec/fb_graph/location_spec.rb
395
+ - spec/fb_graph/message_spec.rb
379
396
  - spec/fb_graph/node_spec.rb
380
397
  - spec/fb_graph/note_spec.rb
381
398
  - spec/fb_graph/page_spec.rb
@@ -392,11 +409,13 @@ files:
392
409
  - spec/fb_graph/tag_spec.rb
393
410
  - spec/fb_graph/targeting_spec.rb
394
411
  - spec/fb_graph/test_user_spec.rb
412
+ - spec/fb_graph/thread_spec.rb
395
413
  - spec/fb_graph/user_spec.rb
396
414
  - spec/fb_graph/venue_spec.rb
397
415
  - spec/fb_graph/video_spec.rb
398
416
  - spec/fb_graph/work_spec.rb
399
417
  - spec/helpers/fake_json_helper.rb
418
+ - spec/restclient_with_ssl_support_spec.rb
400
419
  - spec/spec.opts
401
420
  - spec/spec_helper.rb
402
421
  has_rdoc: true
@@ -404,8 +423,8 @@ homepage: http://github.com/nov/fb_graph
404
423
  licenses: []
405
424
 
406
425
  post_install_message:
407
- rdoc_options:
408
- - --charset=UTF-8
426
+ rdoc_options: []
427
+
409
428
  require_paths:
410
429
  - lib
411
430
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -429,7 +448,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
429
448
  requirements: []
430
449
 
431
450
  rubyforge_project:
432
- rubygems_version: 1.3.7
451
+ rubygems_version: 1.5.0
433
452
  signing_key:
434
453
  specification_version: 3
435
454
  summary: A full-stack Facebook Graph API wrapper in Ruby.
@@ -454,6 +473,7 @@ test_files:
454
473
  - spec/fb_graph/connections/declined_spec.rb
455
474
  - spec/fb_graph/connections/events_spec.rb
456
475
  - spec/fb_graph/connections/feed_spec.rb
476
+ - spec/fb_graph/connections/former_participants_spec.rb
457
477
  - spec/fb_graph/connections/friend_lists_spec.rb
458
478
  - spec/fb_graph/connections/friends_spec.rb
459
479
  - spec/fb_graph/connections/games_spec.rb
@@ -466,18 +486,22 @@ test_files:
466
486
  - spec/fb_graph/connections/links_spec.rb
467
487
  - spec/fb_graph/connections/maybe_spec.rb
468
488
  - spec/fb_graph/connections/members_spec.rb
489
+ - spec/fb_graph/connections/messages_spec.rb
469
490
  - spec/fb_graph/connections/movies_spec.rb
470
491
  - spec/fb_graph/connections/music_spec.rb
471
492
  - spec/fb_graph/connections/noreply_spec.rb
472
493
  - spec/fb_graph/connections/notes_spec.rb
494
+ - spec/fb_graph/connections/participants_spec.rb
473
495
  - spec/fb_graph/connections/photos_spec.rb
474
496
  - spec/fb_graph/connections/picture_spec.rb
475
497
  - spec/fb_graph/connections/posts_spec.rb
498
+ - spec/fb_graph/connections/senders_spec.rb
476
499
  - spec/fb_graph/connections/statuses_spec.rb
477
500
  - spec/fb_graph/connections/subscriptions_spec.rb
478
501
  - spec/fb_graph/connections/tagged_spec.rb
479
502
  - spec/fb_graph/connections/television_spec.rb
480
503
  - spec/fb_graph/connections/test_users_spec.rb
504
+ - spec/fb_graph/connections/threads_spec.rb
481
505
  - spec/fb_graph/connections/videos_spec.rb
482
506
  - spec/fb_graph/education_spec.rb
483
507
  - spec/fb_graph/event_spec.rb
@@ -487,6 +511,7 @@ test_files:
487
511
  - spec/fb_graph/insight_spec.rb
488
512
  - spec/fb_graph/link_spec.rb
489
513
  - spec/fb_graph/location_spec.rb
514
+ - spec/fb_graph/message_spec.rb
490
515
  - spec/fb_graph/node_spec.rb
491
516
  - spec/fb_graph/note_spec.rb
492
517
  - spec/fb_graph/page_spec.rb
@@ -503,9 +528,11 @@ test_files:
503
528
  - spec/fb_graph/tag_spec.rb
504
529
  - spec/fb_graph/targeting_spec.rb
505
530
  - spec/fb_graph/test_user_spec.rb
531
+ - spec/fb_graph/thread_spec.rb
506
532
  - spec/fb_graph/user_spec.rb
507
533
  - spec/fb_graph/venue_spec.rb
508
534
  - spec/fb_graph/video_spec.rb
509
535
  - spec/fb_graph/work_spec.rb
510
536
  - spec/helpers/fake_json_helper.rb
537
+ - spec/restclient_with_ssl_support_spec.rb
511
538
  - spec/spec_helper.rb
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC