gs_graph 2.6.5
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/.document +5 -0
- data/.gitattributes +22 -0
- data/.gitignore +26 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +95 -0
- data/LICENSE +20 -0
- data/README.rdoc +314 -0
- data/Rakefile +25 -0
- data/VERSION +1 -0
- data/assets/fb_graph.ai +1726 -6
- data/assets/fb_graph.png +0 -0
- data/gs_graph.gemspec +28 -0
- data/lib/gs_graph.rb +174 -0
- data/lib/gs_graph/achievement.rb +44 -0
- data/lib/gs_graph/action.rb +12 -0
- data/lib/gs_graph/ad_account.rb +51 -0
- data/lib/gs_graph/ad_campaign.rb +39 -0
- data/lib/gs_graph/ad_campaign_stat.rb +22 -0
- data/lib/gs_graph/ad_connection_object.rb +53 -0
- data/lib/gs_graph/ad_creative.rb +44 -0
- data/lib/gs_graph/ad_group.rb +51 -0
- data/lib/gs_graph/ad_group_stat.rb +22 -0
- data/lib/gs_graph/ad_keyword.rb +20 -0
- data/lib/gs_graph/ad_keyword_suggestion.rb +8 -0
- data/lib/gs_graph/ad_keyword_valid.rb +23 -0
- data/lib/gs_graph/ad_preview.rb +10 -0
- data/lib/gs_graph/ad_user.rb +58 -0
- data/lib/gs_graph/age_range.rb +12 -0
- data/lib/gs_graph/album.rb +59 -0
- data/lib/gs_graph/app_request.rb +24 -0
- data/lib/gs_graph/application.rb +119 -0
- data/lib/gs_graph/auth.rb +88 -0
- data/lib/gs_graph/auth/cookie.rb +20 -0
- data/lib/gs_graph/auth/signed_request.rb +44 -0
- data/lib/gs_graph/broad_targeting_category.rb +13 -0
- data/lib/gs_graph/checkin.rb +51 -0
- data/lib/gs_graph/collection.rb +55 -0
- data/lib/gs_graph/comment.rb +24 -0
- data/lib/gs_graph/comparison.rb +13 -0
- data/lib/gs_graph/connection.rb +37 -0
- data/lib/gs_graph/connections.rb +3 -0
- data/lib/gs_graph/connections/accounts.rb +23 -0
- data/lib/gs_graph/connections/achievements.rb +21 -0
- data/lib/gs_graph/connections/activities.rb +14 -0
- data/lib/gs_graph/connections/ad_accounts.rb +15 -0
- data/lib/gs_graph/connections/ad_campaign_stats.rb +22 -0
- data/lib/gs_graph/connections/ad_campaigns.rb +30 -0
- data/lib/gs_graph/connections/ad_connection_objects.rb +14 -0
- data/lib/gs_graph/connections/ad_creatives.rb +14 -0
- data/lib/gs_graph/connections/ad_group_stats.rb +22 -0
- data/lib/gs_graph/connections/ad_groups.rb +35 -0
- data/lib/gs_graph/connections/ad_previews.rb +10 -0
- data/lib/gs_graph/connections/admins.rb +10 -0
- data/lib/gs_graph/connections/albums.rb +21 -0
- data/lib/gs_graph/connections/app_notifications.rb +10 -0
- data/lib/gs_graph/connections/app_requests.rb +21 -0
- data/lib/gs_graph/connections/attending.rb +26 -0
- data/lib/gs_graph/connections/banned.rb +31 -0
- data/lib/gs_graph/connections/blocked.rb +36 -0
- data/lib/gs_graph/connections/books.rb +14 -0
- data/lib/gs_graph/connections/broad_targeting_categories.rb +14 -0
- data/lib/gs_graph/connections/checkins.rb +21 -0
- data/lib/gs_graph/connections/comments.rb +21 -0
- data/lib/gs_graph/connections/conversations.rb +14 -0
- data/lib/gs_graph/connections/declined.rb +25 -0
- data/lib/gs_graph/connections/docs.rb +14 -0
- data/lib/gs_graph/connections/events.rb +21 -0
- data/lib/gs_graph/connections/family.rb +14 -0
- data/lib/gs_graph/connections/feed.rb +21 -0
- data/lib/gs_graph/connections/former_participants.rb +14 -0
- data/lib/gs_graph/connections/friend_lists.rb +21 -0
- data/lib/gs_graph/connections/friend_requests.rb +12 -0
- data/lib/gs_graph/connections/friends.rb +14 -0
- data/lib/gs_graph/connections/games.rb +14 -0
- data/lib/gs_graph/connections/groups.rb +14 -0
- data/lib/gs_graph/connections/home.rb +14 -0
- data/lib/gs_graph/connections/inbox.rb +20 -0
- data/lib/gs_graph/connections/insights.rb +27 -0
- data/lib/gs_graph/connections/interests.rb +14 -0
- data/lib/gs_graph/connections/invited.rb +36 -0
- data/lib/gs_graph/connections/likes.rb +29 -0
- data/lib/gs_graph/connections/links.rb +21 -0
- data/lib/gs_graph/connections/maybe.rb +25 -0
- data/lib/gs_graph/connections/members.rb +22 -0
- data/lib/gs_graph/connections/messages.rb +22 -0
- data/lib/gs_graph/connections/milestones.rb +21 -0
- data/lib/gs_graph/connections/movies.rb +14 -0
- data/lib/gs_graph/connections/music.rb +14 -0
- data/lib/gs_graph/connections/mutual_friends.rb +26 -0
- data/lib/gs_graph/connections/noreply.rb +23 -0
- data/lib/gs_graph/connections/notes.rb +21 -0
- data/lib/gs_graph/connections/notifications.rb +18 -0
- data/lib/gs_graph/connections/offers.rb +22 -0
- data/lib/gs_graph/connections/outbox.rb +20 -0
- data/lib/gs_graph/connections/participants.rb +14 -0
- data/lib/gs_graph/connections/payments.rb +14 -0
- data/lib/gs_graph/connections/permissions.rb +16 -0
- data/lib/gs_graph/connections/photos.rb +21 -0
- data/lib/gs_graph/connections/picture.rb +39 -0
- data/lib/gs_graph/connections/pokes.rb +12 -0
- data/lib/gs_graph/connections/posts.rb +14 -0
- data/lib/gs_graph/connections/promotable_posts.rb +14 -0
- data/lib/gs_graph/connections/question_options.rb +14 -0
- data/lib/gs_graph/connections/questions.rb +22 -0
- data/lib/gs_graph/connections/reach_estimates.rb +12 -0
- data/lib/gs_graph/connections/roles.rb +36 -0
- data/lib/gs_graph/connections/scores.rb +22 -0
- data/lib/gs_graph/connections/senders.rb +14 -0
- data/lib/gs_graph/connections/settings.rb +65 -0
- data/lib/gs_graph/connections/statuses.rb +14 -0
- data/lib/gs_graph/connections/subscribed_to.rb +14 -0
- data/lib/gs_graph/connections/subscribers.rb +14 -0
- data/lib/gs_graph/connections/subscriptions.rb +53 -0
- data/lib/gs_graph/connections/tabs.rb +23 -0
- data/lib/gs_graph/connections/tagged.rb +14 -0
- data/lib/gs_graph/connections/tags.rb +23 -0
- data/lib/gs_graph/connections/television.rb +14 -0
- data/lib/gs_graph/connections/test_users.rb +19 -0
- data/lib/gs_graph/connections/threads.rb +14 -0
- data/lib/gs_graph/connections/user_achievements.rb +22 -0
- data/lib/gs_graph/connections/user_likes.rb +19 -0
- data/lib/gs_graph/connections/videos.rb +21 -0
- data/lib/gs_graph/connections/votes.rb +9 -0
- data/lib/gs_graph/cover.rb +10 -0
- data/lib/gs_graph/debugger.rb +28 -0
- data/lib/gs_graph/device.rb +11 -0
- data/lib/gs_graph/doc.rb +18 -0
- data/lib/gs_graph/domain.rb +32 -0
- data/lib/gs_graph/education.rb +32 -0
- data/lib/gs_graph/event.rb +52 -0
- data/lib/gs_graph/exception.rb +139 -0
- data/lib/gs_graph/friend_list.rb +13 -0
- data/lib/gs_graph/friend_request.rb +14 -0
- data/lib/gs_graph/group.rb +29 -0
- data/lib/gs_graph/image.rb +11 -0
- data/lib/gs_graph/insight.rb +13 -0
- data/lib/gs_graph/klass.rb +31 -0
- data/lib/gs_graph/link.rb +32 -0
- data/lib/gs_graph/location.rb +20 -0
- data/lib/gs_graph/message.rb +30 -0
- data/lib/gs_graph/milestone.rb +26 -0
- data/lib/gs_graph/node.rb +149 -0
- data/lib/gs_graph/note.rb +32 -0
- data/lib/gs_graph/notification.rb +32 -0
- data/lib/gs_graph/offer.rb +33 -0
- data/lib/gs_graph/open_graph.rb +3 -0
- data/lib/gs_graph/open_graph/action.rb +42 -0
- data/lib/gs_graph/open_graph/application_context.rb +10 -0
- data/lib/gs_graph/open_graph/object.rb +29 -0
- data/lib/gs_graph/open_graph/user_context.rb +21 -0
- data/lib/gs_graph/order.rb +55 -0
- data/lib/gs_graph/page.rb +57 -0
- data/lib/gs_graph/page/category_attributes.rb +117 -0
- data/lib/gs_graph/photo.rb +48 -0
- data/lib/gs_graph/picture.rb +14 -0
- data/lib/gs_graph/place.rb +7 -0
- data/lib/gs_graph/poke.rb +19 -0
- data/lib/gs_graph/post.rb +117 -0
- data/lib/gs_graph/privacy.rb +27 -0
- data/lib/gs_graph/project.rb +4 -0
- data/lib/gs_graph/promotable_post.rb +34 -0
- data/lib/gs_graph/property.rb +13 -0
- data/lib/gs_graph/query.rb +47 -0
- data/lib/gs_graph/question.rb +26 -0
- data/lib/gs_graph/question_option.rb +22 -0
- data/lib/gs_graph/reach_estimate.rb +22 -0
- data/lib/gs_graph/role.rb +13 -0
- data/lib/gs_graph/score.rb +16 -0
- data/lib/gs_graph/searchable.rb +33 -0
- data/lib/gs_graph/searchable/result.rb +31 -0
- data/lib/gs_graph/serialization.rb +19 -0
- data/lib/gs_graph/status.rb +27 -0
- data/lib/gs_graph/subscription.rb +14 -0
- data/lib/gs_graph/tab.rb +17 -0
- data/lib/gs_graph/tag.rb +30 -0
- data/lib/gs_graph/tagged_object.rb +23 -0
- data/lib/gs_graph/targeting.rb +23 -0
- data/lib/gs_graph/test_user.rb +24 -0
- data/lib/gs_graph/thread.rb +71 -0
- data/lib/gs_graph/user.rb +153 -0
- data/lib/gs_graph/user_achievement.rb +35 -0
- data/lib/gs_graph/venue.rb +14 -0
- data/lib/gs_graph/video.rb +41 -0
- data/lib/gs_graph/work.rb +48 -0
- data/lib/patch/rack/oauth2/access_token.rb +11 -0
- data/lib/patch/rack/oauth2/access_token/introspectable.rb +37 -0
- data/lib/patch/rack/oauth2/client.rb +13 -0
- data/lib/patch/rack/oauth2/grant/fb_exchange_token.rb +11 -0
- data/lib/patch/rack/oauth2/util.rb +14 -0
- data/spec/gs_graph/achievement_spec.rb +59 -0
- data/spec/gs_graph/ad_account_spec.rb +124 -0
- data/spec/gs_graph/ad_campaign_spec.rb +99 -0
- data/spec/gs_graph/ad_connection_object_spec.rb +71 -0
- data/spec/gs_graph/ad_creative_spec.rb +87 -0
- data/spec/gs_graph/ad_group_spec.rb +95 -0
- data/spec/gs_graph/ad_keyword_spec.rb +27 -0
- data/spec/gs_graph/ad_keyword_suggestion_spec.rb +17 -0
- data/spec/gs_graph/ad_keyword_valid_spec.rb +19 -0
- data/spec/gs_graph/ad_user_spec.rb +67 -0
- data/spec/gs_graph/album_spec.rb +93 -0
- data/spec/gs_graph/app_request_spec.rb +40 -0
- data/spec/gs_graph/application_spec.rb +251 -0
- data/spec/gs_graph/auth/cookie_spec.rb +29 -0
- data/spec/gs_graph/auth/signed_request_spec.rb +22 -0
- data/spec/gs_graph/auth_spec.rb +223 -0
- data/spec/gs_graph/broad_targeting_category_spec.rb +17 -0
- data/spec/gs_graph/checkin_spec.rb +42 -0
- data/spec/gs_graph/collection_spec.rb +50 -0
- data/spec/gs_graph/comment_spec.rb +31 -0
- data/spec/gs_graph/connection_spec.rb +42 -0
- data/spec/gs_graph/connections/accounts_spec.rb +78 -0
- data/spec/gs_graph/connections/achievements_spec.rb +27 -0
- data/spec/gs_graph/connections/activities_spec.rb +34 -0
- data/spec/gs_graph/connections/ad_accounts_spec.rb +28 -0
- data/spec/gs_graph/connections/ad_campaign_stat_spec.rb +35 -0
- data/spec/gs_graph/connections/ad_campaigns_spec.rb +36 -0
- data/spec/gs_graph/connections/ad_connection_objects_spec.rb +20 -0
- data/spec/gs_graph/connections/ad_creatives_spec.rb +29 -0
- data/spec/gs_graph/connections/ad_group_stat_spec.rb +54 -0
- data/spec/gs_graph/connections/ad_groups_spec.rb +92 -0
- data/spec/gs_graph/connections/ad_previews_spec.rb +18 -0
- data/spec/gs_graph/connections/admins_spec.rb +20 -0
- data/spec/gs_graph/connections/albums_spec.rb +63 -0
- data/spec/gs_graph/connections/app_notifications_spec.rb +23 -0
- data/spec/gs_graph/connections/app_requests_spec.rb +28 -0
- data/spec/gs_graph/connections/attending_spec.rb +47 -0
- data/spec/gs_graph/connections/banned_spec.rb +63 -0
- data/spec/gs_graph/connections/blocked_spec.rb +56 -0
- data/spec/gs_graph/connections/books_spec.rb +32 -0
- data/spec/gs_graph/connections/broad_targeting_categories_spec.rb +18 -0
- data/spec/gs_graph/connections/checkins_spec.rb +153 -0
- data/spec/gs_graph/connections/comments_spec.rb +75 -0
- data/spec/gs_graph/connections/conversations_spec.rb +19 -0
- data/spec/gs_graph/connections/declined_spec.rb +47 -0
- data/spec/gs_graph/connections/docs_spec.rb +14 -0
- data/spec/gs_graph/connections/events_spec.rb +52 -0
- data/spec/gs_graph/connections/family_spec.rb +32 -0
- data/spec/gs_graph/connections/feed_spec.rb +124 -0
- data/spec/gs_graph/connections/former_participants_spec.rb +44 -0
- data/spec/gs_graph/connections/friend_lists_spec.rb +26 -0
- data/spec/gs_graph/connections/friend_requests_spec.rb +16 -0
- data/spec/gs_graph/connections/friends_spec.rb +51 -0
- data/spec/gs_graph/connections/games_spec.rb +20 -0
- data/spec/gs_graph/connections/groups_spec.rb +31 -0
- data/spec/gs_graph/connections/home_spec.rb +62 -0
- data/spec/gs_graph/connections/inbox_spec.rb +16 -0
- data/spec/gs_graph/connections/insights_spec.rb +104 -0
- data/spec/gs_graph/connections/interests_spec.rb +12 -0
- data/spec/gs_graph/connections/invited_spec.rb +84 -0
- data/spec/gs_graph/connections/likes_spec.rb +127 -0
- data/spec/gs_graph/connections/links_spec.rb +31 -0
- data/spec/gs_graph/connections/maybe_spec.rb +47 -0
- data/spec/gs_graph/connections/members_spec.rb +57 -0
- data/spec/gs_graph/connections/messages_spec.rb +58 -0
- data/spec/gs_graph/connections/milestones_spec.rb +40 -0
- data/spec/gs_graph/connections/movies_spec.rb +12 -0
- data/spec/gs_graph/connections/music_spec.rb +12 -0
- data/spec/gs_graph/connections/mutual_friends_spec.rb +28 -0
- data/spec/gs_graph/connections/noreply_spec.rb +39 -0
- data/spec/gs_graph/connections/notes_spec.rb +31 -0
- data/spec/gs_graph/connections/notifications_spec.rb +30 -0
- data/spec/gs_graph/connections/outbox_spec.rb +16 -0
- data/spec/gs_graph/connections/participants_spec.rb +42 -0
- data/spec/gs_graph/connections/payments_spec.rb +17 -0
- data/spec/gs_graph/connections/permissions_spec.rb +44 -0
- data/spec/gs_graph/connections/photos_spec.rb +39 -0
- data/spec/gs_graph/connections/picture_spec.rb +92 -0
- data/spec/gs_graph/connections/pokes_spec.rb +16 -0
- data/spec/gs_graph/connections/posts_spec.rb +34 -0
- data/spec/gs_graph/connections/promotable_posts_spec.rb +24 -0
- data/spec/gs_graph/connections/question_options_spec.rb +14 -0
- data/spec/gs_graph/connections/questions_spec.rb +31 -0
- data/spec/gs_graph/connections/reach_estimates_spec.rb +18 -0
- data/spec/gs_graph/connections/roles_spec.rb +59 -0
- data/spec/gs_graph/connections/scores_spec.rb +40 -0
- data/spec/gs_graph/connections/senders_spec.rb +42 -0
- data/spec/gs_graph/connections/settings_spec.rb +62 -0
- data/spec/gs_graph/connections/statuses_spec.rb +72 -0
- data/spec/gs_graph/connections/subscribed_to_spec.rb +12 -0
- data/spec/gs_graph/connections/subscribers_spec.rb +12 -0
- data/spec/gs_graph/connections/subscriptions_spec.rb +47 -0
- data/spec/gs_graph/connections/tabs_spec.rb +47 -0
- data/spec/gs_graph/connections/tagged_spec.rb +42 -0
- data/spec/gs_graph/connections/tags_spec.rb +30 -0
- data/spec/gs_graph/connections/television_spec.rb +12 -0
- data/spec/gs_graph/connections/test_users_spec.rb +65 -0
- data/spec/gs_graph/connections/threads_spec.rb +12 -0
- data/spec/gs_graph/connections/user_achievements_spec.rb +37 -0
- data/spec/gs_graph/connections/user_likes_spec.rb +55 -0
- data/spec/gs_graph/connections/videos_spec.rb +27 -0
- data/spec/gs_graph/connections/votes_spec.rb +15 -0
- data/spec/gs_graph/debugger_spec.rb +33 -0
- data/spec/gs_graph/doc_spec.rb +27 -0
- data/spec/gs_graph/domain_spec.rb +23 -0
- data/spec/gs_graph/education_spec.rb +61 -0
- data/spec/gs_graph/event_spec.rb +70 -0
- data/spec/gs_graph/exception_spec.rb +310 -0
- data/spec/gs_graph/friend_list_spec.rb +22 -0
- data/spec/gs_graph/group_spec.rb +28 -0
- data/spec/gs_graph/image_spec.rb +16 -0
- data/spec/gs_graph/insight_spec.rb +18 -0
- data/spec/gs_graph/link_spec.rb +41 -0
- data/spec/gs_graph/location_spec.rb +28 -0
- data/spec/gs_graph/message_spec.rb +47 -0
- data/spec/gs_graph/node_spec.rb +91 -0
- data/spec/gs_graph/note_spec.rb +37 -0
- data/spec/gs_graph/notification_spec.rb +59 -0
- data/spec/gs_graph/offer_spec.rb +30 -0
- data/spec/gs_graph/open_graph/action_spec.rb +112 -0
- data/spec/gs_graph/open_graph/application_context_spec.rb +28 -0
- data/spec/gs_graph/open_graph/object_spec.rb +76 -0
- data/spec/gs_graph/open_graph/user_context_spec.rb +33 -0
- data/spec/gs_graph/order_spec.rb +66 -0
- data/spec/gs_graph/page/local_business_spec.rb +88 -0
- data/spec/gs_graph/page/movie_spec.rb +25 -0
- data/spec/gs_graph/page/music_spec.rb +25 -0
- data/spec/gs_graph/page/person_spec.rb +23 -0
- data/spec/gs_graph/page/product_spec.rb +36 -0
- data/spec/gs_graph/page_spec.rb +81 -0
- data/spec/gs_graph/photo_spec.rb +85 -0
- data/spec/gs_graph/place_spec.rb +8 -0
- data/spec/gs_graph/post_spec.rb +238 -0
- data/spec/gs_graph/privacy_spec.rb +33 -0
- data/spec/gs_graph/project_spec.rb +46 -0
- data/spec/gs_graph/promotable_post_spec.rb +57 -0
- data/spec/gs_graph/qeustion_option_spec.rb +35 -0
- data/spec/gs_graph/query_spec.rb +73 -0
- data/spec/gs_graph/question_spec.rb +73 -0
- data/spec/gs_graph/reach_estimate_spec.rb +48 -0
- data/spec/gs_graph/searchable_spec.rb +47 -0
- data/spec/gs_graph/seriarization_spec.rb +29 -0
- data/spec/gs_graph/status_spec.rb +31 -0
- data/spec/gs_graph/subscription_spec.rb +5 -0
- data/spec/gs_graph/tag_spec.rb +34 -0
- data/spec/gs_graph/tagged_object_spec.rb +45 -0
- data/spec/gs_graph/targeting_spec.rb +34 -0
- data/spec/gs_graph/test_user_spec.rb +50 -0
- data/spec/gs_graph/thread_spec.rb +86 -0
- data/spec/gs_graph/user_achievement_spec.rb +53 -0
- data/spec/gs_graph/user_spec.rb +185 -0
- data/spec/gs_graph/venue_spec.rb +23 -0
- data/spec/gs_graph/video_spec.rb +31 -0
- data/spec/gs_graph/work_spec.rb +101 -0
- data/spec/gs_graph_spec.rb +57 -0
- data/spec/spec_helper.rb +9 -0
- metadata +538 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe GSGraph do
|
|
4
|
+
subject { GSGraph }
|
|
5
|
+
after { GSGraph.debugging = false }
|
|
6
|
+
|
|
7
|
+
its(:logger) { should be_a Logger }
|
|
8
|
+
its(:debugging?) { should be_false }
|
|
9
|
+
|
|
10
|
+
describe '.debug!' do
|
|
11
|
+
before { GSGraph.debug! }
|
|
12
|
+
its(:debugging?) { should be_true }
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
describe '.debug' do
|
|
16
|
+
it 'should enable debugging within given block' do
|
|
17
|
+
GSGraph.debug do
|
|
18
|
+
Rack::OAuth2.debugging?.should be_true
|
|
19
|
+
GSGraph.debugging?.should be_true
|
|
20
|
+
end
|
|
21
|
+
Rack::OAuth2.debugging?.should be_false
|
|
22
|
+
GSGraph.debugging?.should be_false
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it 'should not force disable debugging' do
|
|
26
|
+
Rack::OAuth2.debug!
|
|
27
|
+
GSGraph.debug!
|
|
28
|
+
GSGraph.debug do
|
|
29
|
+
Rack::OAuth2.debugging?.should be_true
|
|
30
|
+
GSGraph.debugging?.should be_true
|
|
31
|
+
end
|
|
32
|
+
Rack::OAuth2.debugging?.should be_true
|
|
33
|
+
GSGraph.debugging?.should be_true
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
describe '.http_client' do
|
|
38
|
+
context 'with http_config' do
|
|
39
|
+
before do
|
|
40
|
+
GSGraph.http_config do |config|
|
|
41
|
+
config.ssl_config.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
|
42
|
+
config.connect_timeout = 30
|
|
43
|
+
config.send_timeout = 40
|
|
44
|
+
config.receive_timeout = 60
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
it 'should configure Rack::OAuth2 and GSGraph http_client' do
|
|
48
|
+
[Rack::OAuth2, GSGraph].each do |klass|
|
|
49
|
+
klass.http_client.ssl_config.verify_mode.should == OpenSSL::SSL::VERIFY_NONE
|
|
50
|
+
klass.http_client.connect_timeout.should == 30
|
|
51
|
+
klass.http_client.send_timeout.should == 40
|
|
52
|
+
klass.http_client.receive_timeout.should == 60
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,538 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gs_graph
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.6.5
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- nov matake
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-02-21 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: httpclient
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 2.2.0.2
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 2.2.0.2
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: rack-oauth2
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ! '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: 0.14.4
|
|
38
|
+
type: :runtime
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 0.14.4
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: tzinfo
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ! '>='
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
type: :runtime
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ! '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
- !ruby/object:Gem::Dependency
|
|
63
|
+
name: multi_json
|
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ! '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '1.3'
|
|
70
|
+
type: :runtime
|
|
71
|
+
prerelease: false
|
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ! '>='
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '1.3'
|
|
78
|
+
- !ruby/object:Gem::Dependency
|
|
79
|
+
name: rake
|
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
|
81
|
+
none: false
|
|
82
|
+
requirements:
|
|
83
|
+
- - ! '>='
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '0.8'
|
|
86
|
+
type: :development
|
|
87
|
+
prerelease: false
|
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
+
none: false
|
|
90
|
+
requirements:
|
|
91
|
+
- - ! '>='
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0.8'
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: cover_me
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - ! '>='
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: 1.2.0
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
106
|
+
requirements:
|
|
107
|
+
- - ! '>='
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: 1.2.0
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: rspec
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
114
|
+
requirements:
|
|
115
|
+
- - ! '>='
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '2'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
none: false
|
|
122
|
+
requirements:
|
|
123
|
+
- - ! '>='
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: '2'
|
|
126
|
+
- !ruby/object:Gem::Dependency
|
|
127
|
+
name: gs_graph-mock
|
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
|
129
|
+
none: false
|
|
130
|
+
requirements:
|
|
131
|
+
- - ! '>='
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 0.1.1
|
|
134
|
+
type: :development
|
|
135
|
+
prerelease: false
|
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
+
none: false
|
|
138
|
+
requirements:
|
|
139
|
+
- - ! '>='
|
|
140
|
+
- !ruby/object:Gem::Version
|
|
141
|
+
version: 0.1.1
|
|
142
|
+
- !ruby/object:Gem::Dependency
|
|
143
|
+
name: actionpack
|
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
|
145
|
+
none: false
|
|
146
|
+
requirements:
|
|
147
|
+
- - ! '>='
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: 3.0.6
|
|
150
|
+
type: :development
|
|
151
|
+
prerelease: false
|
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
153
|
+
none: false
|
|
154
|
+
requirements:
|
|
155
|
+
- - ! '>='
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: 3.0.6
|
|
158
|
+
description: A full-stack GameStamper Graph API wrapper in Ruby.
|
|
159
|
+
email: nov@matake.jp
|
|
160
|
+
executables: []
|
|
161
|
+
extensions: []
|
|
162
|
+
extra_rdoc_files:
|
|
163
|
+
- LICENSE
|
|
164
|
+
- README.rdoc
|
|
165
|
+
files:
|
|
166
|
+
- .document
|
|
167
|
+
- .gitattributes
|
|
168
|
+
- .gitignore
|
|
169
|
+
- .rspec
|
|
170
|
+
- .travis.yml
|
|
171
|
+
- Gemfile
|
|
172
|
+
- Gemfile.lock
|
|
173
|
+
- LICENSE
|
|
174
|
+
- README.rdoc
|
|
175
|
+
- Rakefile
|
|
176
|
+
- VERSION
|
|
177
|
+
- assets/fb_graph.ai
|
|
178
|
+
- assets/fb_graph.png
|
|
179
|
+
- gs_graph.gemspec
|
|
180
|
+
- lib/gs_graph.rb
|
|
181
|
+
- lib/gs_graph/achievement.rb
|
|
182
|
+
- lib/gs_graph/action.rb
|
|
183
|
+
- lib/gs_graph/ad_account.rb
|
|
184
|
+
- lib/gs_graph/ad_campaign.rb
|
|
185
|
+
- lib/gs_graph/ad_campaign_stat.rb
|
|
186
|
+
- lib/gs_graph/ad_connection_object.rb
|
|
187
|
+
- lib/gs_graph/ad_creative.rb
|
|
188
|
+
- lib/gs_graph/ad_group.rb
|
|
189
|
+
- lib/gs_graph/ad_group_stat.rb
|
|
190
|
+
- lib/gs_graph/ad_keyword.rb
|
|
191
|
+
- lib/gs_graph/ad_keyword_suggestion.rb
|
|
192
|
+
- lib/gs_graph/ad_keyword_valid.rb
|
|
193
|
+
- lib/gs_graph/ad_preview.rb
|
|
194
|
+
- lib/gs_graph/ad_user.rb
|
|
195
|
+
- lib/gs_graph/age_range.rb
|
|
196
|
+
- lib/gs_graph/album.rb
|
|
197
|
+
- lib/gs_graph/app_request.rb
|
|
198
|
+
- lib/gs_graph/application.rb
|
|
199
|
+
- lib/gs_graph/auth.rb
|
|
200
|
+
- lib/gs_graph/auth/cookie.rb
|
|
201
|
+
- lib/gs_graph/auth/signed_request.rb
|
|
202
|
+
- lib/gs_graph/broad_targeting_category.rb
|
|
203
|
+
- lib/gs_graph/checkin.rb
|
|
204
|
+
- lib/gs_graph/collection.rb
|
|
205
|
+
- lib/gs_graph/comment.rb
|
|
206
|
+
- lib/gs_graph/comparison.rb
|
|
207
|
+
- lib/gs_graph/connection.rb
|
|
208
|
+
- lib/gs_graph/connections.rb
|
|
209
|
+
- lib/gs_graph/connections/accounts.rb
|
|
210
|
+
- lib/gs_graph/connections/achievements.rb
|
|
211
|
+
- lib/gs_graph/connections/activities.rb
|
|
212
|
+
- lib/gs_graph/connections/ad_accounts.rb
|
|
213
|
+
- lib/gs_graph/connections/ad_campaign_stats.rb
|
|
214
|
+
- lib/gs_graph/connections/ad_campaigns.rb
|
|
215
|
+
- lib/gs_graph/connections/ad_connection_objects.rb
|
|
216
|
+
- lib/gs_graph/connections/ad_creatives.rb
|
|
217
|
+
- lib/gs_graph/connections/ad_group_stats.rb
|
|
218
|
+
- lib/gs_graph/connections/ad_groups.rb
|
|
219
|
+
- lib/gs_graph/connections/ad_previews.rb
|
|
220
|
+
- lib/gs_graph/connections/admins.rb
|
|
221
|
+
- lib/gs_graph/connections/albums.rb
|
|
222
|
+
- lib/gs_graph/connections/app_notifications.rb
|
|
223
|
+
- lib/gs_graph/connections/app_requests.rb
|
|
224
|
+
- lib/gs_graph/connections/attending.rb
|
|
225
|
+
- lib/gs_graph/connections/banned.rb
|
|
226
|
+
- lib/gs_graph/connections/blocked.rb
|
|
227
|
+
- lib/gs_graph/connections/books.rb
|
|
228
|
+
- lib/gs_graph/connections/broad_targeting_categories.rb
|
|
229
|
+
- lib/gs_graph/connections/checkins.rb
|
|
230
|
+
- lib/gs_graph/connections/comments.rb
|
|
231
|
+
- lib/gs_graph/connections/conversations.rb
|
|
232
|
+
- lib/gs_graph/connections/declined.rb
|
|
233
|
+
- lib/gs_graph/connections/docs.rb
|
|
234
|
+
- lib/gs_graph/connections/events.rb
|
|
235
|
+
- lib/gs_graph/connections/family.rb
|
|
236
|
+
- lib/gs_graph/connections/feed.rb
|
|
237
|
+
- lib/gs_graph/connections/former_participants.rb
|
|
238
|
+
- lib/gs_graph/connections/friend_lists.rb
|
|
239
|
+
- lib/gs_graph/connections/friend_requests.rb
|
|
240
|
+
- lib/gs_graph/connections/friends.rb
|
|
241
|
+
- lib/gs_graph/connections/games.rb
|
|
242
|
+
- lib/gs_graph/connections/groups.rb
|
|
243
|
+
- lib/gs_graph/connections/home.rb
|
|
244
|
+
- lib/gs_graph/connections/inbox.rb
|
|
245
|
+
- lib/gs_graph/connections/insights.rb
|
|
246
|
+
- lib/gs_graph/connections/interests.rb
|
|
247
|
+
- lib/gs_graph/connections/invited.rb
|
|
248
|
+
- lib/gs_graph/connections/likes.rb
|
|
249
|
+
- lib/gs_graph/connections/links.rb
|
|
250
|
+
- lib/gs_graph/connections/maybe.rb
|
|
251
|
+
- lib/gs_graph/connections/members.rb
|
|
252
|
+
- lib/gs_graph/connections/messages.rb
|
|
253
|
+
- lib/gs_graph/connections/milestones.rb
|
|
254
|
+
- lib/gs_graph/connections/movies.rb
|
|
255
|
+
- lib/gs_graph/connections/music.rb
|
|
256
|
+
- lib/gs_graph/connections/mutual_friends.rb
|
|
257
|
+
- lib/gs_graph/connections/noreply.rb
|
|
258
|
+
- lib/gs_graph/connections/notes.rb
|
|
259
|
+
- lib/gs_graph/connections/notifications.rb
|
|
260
|
+
- lib/gs_graph/connections/offers.rb
|
|
261
|
+
- lib/gs_graph/connections/outbox.rb
|
|
262
|
+
- lib/gs_graph/connections/participants.rb
|
|
263
|
+
- lib/gs_graph/connections/payments.rb
|
|
264
|
+
- lib/gs_graph/connections/permissions.rb
|
|
265
|
+
- lib/gs_graph/connections/photos.rb
|
|
266
|
+
- lib/gs_graph/connections/picture.rb
|
|
267
|
+
- lib/gs_graph/connections/pokes.rb
|
|
268
|
+
- lib/gs_graph/connections/posts.rb
|
|
269
|
+
- lib/gs_graph/connections/promotable_posts.rb
|
|
270
|
+
- lib/gs_graph/connections/question_options.rb
|
|
271
|
+
- lib/gs_graph/connections/questions.rb
|
|
272
|
+
- lib/gs_graph/connections/reach_estimates.rb
|
|
273
|
+
- lib/gs_graph/connections/roles.rb
|
|
274
|
+
- lib/gs_graph/connections/scores.rb
|
|
275
|
+
- lib/gs_graph/connections/senders.rb
|
|
276
|
+
- lib/gs_graph/connections/settings.rb
|
|
277
|
+
- lib/gs_graph/connections/statuses.rb
|
|
278
|
+
- lib/gs_graph/connections/subscribed_to.rb
|
|
279
|
+
- lib/gs_graph/connections/subscribers.rb
|
|
280
|
+
- lib/gs_graph/connections/subscriptions.rb
|
|
281
|
+
- lib/gs_graph/connections/tabs.rb
|
|
282
|
+
- lib/gs_graph/connections/tagged.rb
|
|
283
|
+
- lib/gs_graph/connections/tags.rb
|
|
284
|
+
- lib/gs_graph/connections/television.rb
|
|
285
|
+
- lib/gs_graph/connections/test_users.rb
|
|
286
|
+
- lib/gs_graph/connections/threads.rb
|
|
287
|
+
- lib/gs_graph/connections/user_achievements.rb
|
|
288
|
+
- lib/gs_graph/connections/user_likes.rb
|
|
289
|
+
- lib/gs_graph/connections/videos.rb
|
|
290
|
+
- lib/gs_graph/connections/votes.rb
|
|
291
|
+
- lib/gs_graph/cover.rb
|
|
292
|
+
- lib/gs_graph/debugger.rb
|
|
293
|
+
- lib/gs_graph/device.rb
|
|
294
|
+
- lib/gs_graph/doc.rb
|
|
295
|
+
- lib/gs_graph/domain.rb
|
|
296
|
+
- lib/gs_graph/education.rb
|
|
297
|
+
- lib/gs_graph/event.rb
|
|
298
|
+
- lib/gs_graph/exception.rb
|
|
299
|
+
- lib/gs_graph/friend_list.rb
|
|
300
|
+
- lib/gs_graph/friend_request.rb
|
|
301
|
+
- lib/gs_graph/group.rb
|
|
302
|
+
- lib/gs_graph/image.rb
|
|
303
|
+
- lib/gs_graph/insight.rb
|
|
304
|
+
- lib/gs_graph/klass.rb
|
|
305
|
+
- lib/gs_graph/link.rb
|
|
306
|
+
- lib/gs_graph/location.rb
|
|
307
|
+
- lib/gs_graph/message.rb
|
|
308
|
+
- lib/gs_graph/milestone.rb
|
|
309
|
+
- lib/gs_graph/node.rb
|
|
310
|
+
- lib/gs_graph/note.rb
|
|
311
|
+
- lib/gs_graph/notification.rb
|
|
312
|
+
- lib/gs_graph/offer.rb
|
|
313
|
+
- lib/gs_graph/open_graph.rb
|
|
314
|
+
- lib/gs_graph/open_graph/action.rb
|
|
315
|
+
- lib/gs_graph/open_graph/application_context.rb
|
|
316
|
+
- lib/gs_graph/open_graph/object.rb
|
|
317
|
+
- lib/gs_graph/open_graph/user_context.rb
|
|
318
|
+
- lib/gs_graph/order.rb
|
|
319
|
+
- lib/gs_graph/page.rb
|
|
320
|
+
- lib/gs_graph/page/category_attributes.rb
|
|
321
|
+
- lib/gs_graph/photo.rb
|
|
322
|
+
- lib/gs_graph/picture.rb
|
|
323
|
+
- lib/gs_graph/place.rb
|
|
324
|
+
- lib/gs_graph/poke.rb
|
|
325
|
+
- lib/gs_graph/post.rb
|
|
326
|
+
- lib/gs_graph/privacy.rb
|
|
327
|
+
- lib/gs_graph/project.rb
|
|
328
|
+
- lib/gs_graph/promotable_post.rb
|
|
329
|
+
- lib/gs_graph/property.rb
|
|
330
|
+
- lib/gs_graph/query.rb
|
|
331
|
+
- lib/gs_graph/question.rb
|
|
332
|
+
- lib/gs_graph/question_option.rb
|
|
333
|
+
- lib/gs_graph/reach_estimate.rb
|
|
334
|
+
- lib/gs_graph/role.rb
|
|
335
|
+
- lib/gs_graph/score.rb
|
|
336
|
+
- lib/gs_graph/searchable.rb
|
|
337
|
+
- lib/gs_graph/searchable/result.rb
|
|
338
|
+
- lib/gs_graph/serialization.rb
|
|
339
|
+
- lib/gs_graph/status.rb
|
|
340
|
+
- lib/gs_graph/subscription.rb
|
|
341
|
+
- lib/gs_graph/tab.rb
|
|
342
|
+
- lib/gs_graph/tag.rb
|
|
343
|
+
- lib/gs_graph/tagged_object.rb
|
|
344
|
+
- lib/gs_graph/targeting.rb
|
|
345
|
+
- lib/gs_graph/test_user.rb
|
|
346
|
+
- lib/gs_graph/thread.rb
|
|
347
|
+
- lib/gs_graph/user.rb
|
|
348
|
+
- lib/gs_graph/user_achievement.rb
|
|
349
|
+
- lib/gs_graph/venue.rb
|
|
350
|
+
- lib/gs_graph/video.rb
|
|
351
|
+
- lib/gs_graph/work.rb
|
|
352
|
+
- lib/patch/rack/oauth2/access_token.rb
|
|
353
|
+
- lib/patch/rack/oauth2/access_token/introspectable.rb
|
|
354
|
+
- lib/patch/rack/oauth2/client.rb
|
|
355
|
+
- lib/patch/rack/oauth2/grant/fb_exchange_token.rb
|
|
356
|
+
- lib/patch/rack/oauth2/util.rb
|
|
357
|
+
- spec/gs_graph/achievement_spec.rb
|
|
358
|
+
- spec/gs_graph/ad_account_spec.rb
|
|
359
|
+
- spec/gs_graph/ad_campaign_spec.rb
|
|
360
|
+
- spec/gs_graph/ad_connection_object_spec.rb
|
|
361
|
+
- spec/gs_graph/ad_creative_spec.rb
|
|
362
|
+
- spec/gs_graph/ad_group_spec.rb
|
|
363
|
+
- spec/gs_graph/ad_keyword_spec.rb
|
|
364
|
+
- spec/gs_graph/ad_keyword_suggestion_spec.rb
|
|
365
|
+
- spec/gs_graph/ad_keyword_valid_spec.rb
|
|
366
|
+
- spec/gs_graph/ad_user_spec.rb
|
|
367
|
+
- spec/gs_graph/album_spec.rb
|
|
368
|
+
- spec/gs_graph/app_request_spec.rb
|
|
369
|
+
- spec/gs_graph/application_spec.rb
|
|
370
|
+
- spec/gs_graph/auth/cookie_spec.rb
|
|
371
|
+
- spec/gs_graph/auth/signed_request_spec.rb
|
|
372
|
+
- spec/gs_graph/auth_spec.rb
|
|
373
|
+
- spec/gs_graph/broad_targeting_category_spec.rb
|
|
374
|
+
- spec/gs_graph/checkin_spec.rb
|
|
375
|
+
- spec/gs_graph/collection_spec.rb
|
|
376
|
+
- spec/gs_graph/comment_spec.rb
|
|
377
|
+
- spec/gs_graph/connection_spec.rb
|
|
378
|
+
- spec/gs_graph/connections/accounts_spec.rb
|
|
379
|
+
- spec/gs_graph/connections/achievements_spec.rb
|
|
380
|
+
- spec/gs_graph/connections/activities_spec.rb
|
|
381
|
+
- spec/gs_graph/connections/ad_accounts_spec.rb
|
|
382
|
+
- spec/gs_graph/connections/ad_campaign_stat_spec.rb
|
|
383
|
+
- spec/gs_graph/connections/ad_campaigns_spec.rb
|
|
384
|
+
- spec/gs_graph/connections/ad_connection_objects_spec.rb
|
|
385
|
+
- spec/gs_graph/connections/ad_creatives_spec.rb
|
|
386
|
+
- spec/gs_graph/connections/ad_group_stat_spec.rb
|
|
387
|
+
- spec/gs_graph/connections/ad_groups_spec.rb
|
|
388
|
+
- spec/gs_graph/connections/ad_previews_spec.rb
|
|
389
|
+
- spec/gs_graph/connections/admins_spec.rb
|
|
390
|
+
- spec/gs_graph/connections/albums_spec.rb
|
|
391
|
+
- spec/gs_graph/connections/app_notifications_spec.rb
|
|
392
|
+
- spec/gs_graph/connections/app_requests_spec.rb
|
|
393
|
+
- spec/gs_graph/connections/attending_spec.rb
|
|
394
|
+
- spec/gs_graph/connections/banned_spec.rb
|
|
395
|
+
- spec/gs_graph/connections/blocked_spec.rb
|
|
396
|
+
- spec/gs_graph/connections/books_spec.rb
|
|
397
|
+
- spec/gs_graph/connections/broad_targeting_categories_spec.rb
|
|
398
|
+
- spec/gs_graph/connections/checkins_spec.rb
|
|
399
|
+
- spec/gs_graph/connections/comments_spec.rb
|
|
400
|
+
- spec/gs_graph/connections/conversations_spec.rb
|
|
401
|
+
- spec/gs_graph/connections/declined_spec.rb
|
|
402
|
+
- spec/gs_graph/connections/docs_spec.rb
|
|
403
|
+
- spec/gs_graph/connections/events_spec.rb
|
|
404
|
+
- spec/gs_graph/connections/family_spec.rb
|
|
405
|
+
- spec/gs_graph/connections/feed_spec.rb
|
|
406
|
+
- spec/gs_graph/connections/former_participants_spec.rb
|
|
407
|
+
- spec/gs_graph/connections/friend_lists_spec.rb
|
|
408
|
+
- spec/gs_graph/connections/friend_requests_spec.rb
|
|
409
|
+
- spec/gs_graph/connections/friends_spec.rb
|
|
410
|
+
- spec/gs_graph/connections/games_spec.rb
|
|
411
|
+
- spec/gs_graph/connections/groups_spec.rb
|
|
412
|
+
- spec/gs_graph/connections/home_spec.rb
|
|
413
|
+
- spec/gs_graph/connections/inbox_spec.rb
|
|
414
|
+
- spec/gs_graph/connections/insights_spec.rb
|
|
415
|
+
- spec/gs_graph/connections/interests_spec.rb
|
|
416
|
+
- spec/gs_graph/connections/invited_spec.rb
|
|
417
|
+
- spec/gs_graph/connections/likes_spec.rb
|
|
418
|
+
- spec/gs_graph/connections/links_spec.rb
|
|
419
|
+
- spec/gs_graph/connections/maybe_spec.rb
|
|
420
|
+
- spec/gs_graph/connections/members_spec.rb
|
|
421
|
+
- spec/gs_graph/connections/messages_spec.rb
|
|
422
|
+
- spec/gs_graph/connections/milestones_spec.rb
|
|
423
|
+
- spec/gs_graph/connections/movies_spec.rb
|
|
424
|
+
- spec/gs_graph/connections/music_spec.rb
|
|
425
|
+
- spec/gs_graph/connections/mutual_friends_spec.rb
|
|
426
|
+
- spec/gs_graph/connections/noreply_spec.rb
|
|
427
|
+
- spec/gs_graph/connections/notes_spec.rb
|
|
428
|
+
- spec/gs_graph/connections/notifications_spec.rb
|
|
429
|
+
- spec/gs_graph/connections/outbox_spec.rb
|
|
430
|
+
- spec/gs_graph/connections/participants_spec.rb
|
|
431
|
+
- spec/gs_graph/connections/payments_spec.rb
|
|
432
|
+
- spec/gs_graph/connections/permissions_spec.rb
|
|
433
|
+
- spec/gs_graph/connections/photos_spec.rb
|
|
434
|
+
- spec/gs_graph/connections/picture_spec.rb
|
|
435
|
+
- spec/gs_graph/connections/pokes_spec.rb
|
|
436
|
+
- spec/gs_graph/connections/posts_spec.rb
|
|
437
|
+
- spec/gs_graph/connections/promotable_posts_spec.rb
|
|
438
|
+
- spec/gs_graph/connections/question_options_spec.rb
|
|
439
|
+
- spec/gs_graph/connections/questions_spec.rb
|
|
440
|
+
- spec/gs_graph/connections/reach_estimates_spec.rb
|
|
441
|
+
- spec/gs_graph/connections/roles_spec.rb
|
|
442
|
+
- spec/gs_graph/connections/scores_spec.rb
|
|
443
|
+
- spec/gs_graph/connections/senders_spec.rb
|
|
444
|
+
- spec/gs_graph/connections/settings_spec.rb
|
|
445
|
+
- spec/gs_graph/connections/statuses_spec.rb
|
|
446
|
+
- spec/gs_graph/connections/subscribed_to_spec.rb
|
|
447
|
+
- spec/gs_graph/connections/subscribers_spec.rb
|
|
448
|
+
- spec/gs_graph/connections/subscriptions_spec.rb
|
|
449
|
+
- spec/gs_graph/connections/tabs_spec.rb
|
|
450
|
+
- spec/gs_graph/connections/tagged_spec.rb
|
|
451
|
+
- spec/gs_graph/connections/tags_spec.rb
|
|
452
|
+
- spec/gs_graph/connections/television_spec.rb
|
|
453
|
+
- spec/gs_graph/connections/test_users_spec.rb
|
|
454
|
+
- spec/gs_graph/connections/threads_spec.rb
|
|
455
|
+
- spec/gs_graph/connections/user_achievements_spec.rb
|
|
456
|
+
- spec/gs_graph/connections/user_likes_spec.rb
|
|
457
|
+
- spec/gs_graph/connections/videos_spec.rb
|
|
458
|
+
- spec/gs_graph/connections/votes_spec.rb
|
|
459
|
+
- spec/gs_graph/debugger_spec.rb
|
|
460
|
+
- spec/gs_graph/doc_spec.rb
|
|
461
|
+
- spec/gs_graph/domain_spec.rb
|
|
462
|
+
- spec/gs_graph/education_spec.rb
|
|
463
|
+
- spec/gs_graph/event_spec.rb
|
|
464
|
+
- spec/gs_graph/exception_spec.rb
|
|
465
|
+
- spec/gs_graph/friend_list_spec.rb
|
|
466
|
+
- spec/gs_graph/group_spec.rb
|
|
467
|
+
- spec/gs_graph/image_spec.rb
|
|
468
|
+
- spec/gs_graph/insight_spec.rb
|
|
469
|
+
- spec/gs_graph/link_spec.rb
|
|
470
|
+
- spec/gs_graph/location_spec.rb
|
|
471
|
+
- spec/gs_graph/message_spec.rb
|
|
472
|
+
- spec/gs_graph/node_spec.rb
|
|
473
|
+
- spec/gs_graph/note_spec.rb
|
|
474
|
+
- spec/gs_graph/notification_spec.rb
|
|
475
|
+
- spec/gs_graph/offer_spec.rb
|
|
476
|
+
- spec/gs_graph/open_graph/action_spec.rb
|
|
477
|
+
- spec/gs_graph/open_graph/application_context_spec.rb
|
|
478
|
+
- spec/gs_graph/open_graph/object_spec.rb
|
|
479
|
+
- spec/gs_graph/open_graph/user_context_spec.rb
|
|
480
|
+
- spec/gs_graph/order_spec.rb
|
|
481
|
+
- spec/gs_graph/page/local_business_spec.rb
|
|
482
|
+
- spec/gs_graph/page/movie_spec.rb
|
|
483
|
+
- spec/gs_graph/page/music_spec.rb
|
|
484
|
+
- spec/gs_graph/page/person_spec.rb
|
|
485
|
+
- spec/gs_graph/page/product_spec.rb
|
|
486
|
+
- spec/gs_graph/page_spec.rb
|
|
487
|
+
- spec/gs_graph/photo_spec.rb
|
|
488
|
+
- spec/gs_graph/place_spec.rb
|
|
489
|
+
- spec/gs_graph/post_spec.rb
|
|
490
|
+
- spec/gs_graph/privacy_spec.rb
|
|
491
|
+
- spec/gs_graph/project_spec.rb
|
|
492
|
+
- spec/gs_graph/promotable_post_spec.rb
|
|
493
|
+
- spec/gs_graph/qeustion_option_spec.rb
|
|
494
|
+
- spec/gs_graph/query_spec.rb
|
|
495
|
+
- spec/gs_graph/question_spec.rb
|
|
496
|
+
- spec/gs_graph/reach_estimate_spec.rb
|
|
497
|
+
- spec/gs_graph/searchable_spec.rb
|
|
498
|
+
- spec/gs_graph/seriarization_spec.rb
|
|
499
|
+
- spec/gs_graph/status_spec.rb
|
|
500
|
+
- spec/gs_graph/subscription_spec.rb
|
|
501
|
+
- spec/gs_graph/tag_spec.rb
|
|
502
|
+
- spec/gs_graph/tagged_object_spec.rb
|
|
503
|
+
- spec/gs_graph/targeting_spec.rb
|
|
504
|
+
- spec/gs_graph/test_user_spec.rb
|
|
505
|
+
- spec/gs_graph/thread_spec.rb
|
|
506
|
+
- spec/gs_graph/user_achievement_spec.rb
|
|
507
|
+
- spec/gs_graph/user_spec.rb
|
|
508
|
+
- spec/gs_graph/venue_spec.rb
|
|
509
|
+
- spec/gs_graph/video_spec.rb
|
|
510
|
+
- spec/gs_graph/work_spec.rb
|
|
511
|
+
- spec/gs_graph_spec.rb
|
|
512
|
+
- spec/spec_helper.rb
|
|
513
|
+
homepage: http://github.com/rockycaamano/gs_graph
|
|
514
|
+
licenses: []
|
|
515
|
+
post_install_message:
|
|
516
|
+
rdoc_options:
|
|
517
|
+
- --charset=UTF-8
|
|
518
|
+
require_paths:
|
|
519
|
+
- lib
|
|
520
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
521
|
+
none: false
|
|
522
|
+
requirements:
|
|
523
|
+
- - ! '>='
|
|
524
|
+
- !ruby/object:Gem::Version
|
|
525
|
+
version: '0'
|
|
526
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
527
|
+
none: false
|
|
528
|
+
requirements:
|
|
529
|
+
- - ! '>='
|
|
530
|
+
- !ruby/object:Gem::Version
|
|
531
|
+
version: '0'
|
|
532
|
+
requirements: []
|
|
533
|
+
rubyforge_project:
|
|
534
|
+
rubygems_version: 1.8.24
|
|
535
|
+
signing_key:
|
|
536
|
+
specification_version: 3
|
|
537
|
+
summary: A full-stack GameStamper Graph API wrapper in Ruby.
|
|
538
|
+
test_files: []
|