pinterest-ruby 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/.rubocop.yml +63 -0
  4. data/.travis-gemfile +17 -0
  5. data/.travis.yml +12 -0
  6. data/.yardopts +1 -0
  7. data/CHANGELOG.md +3 -0
  8. data/Gemfile +24 -0
  9. data/README.md +34 -0
  10. data/Rakefile +44 -0
  11. data/docs/FaradayMiddleware/SafeOj.html +218 -0
  12. data/docs/FaradayMiddleware.html +125 -0
  13. data/docs/Pinterest/Board.html +410 -0
  14. data/docs/Pinterest/Client.html +1894 -0
  15. data/docs/Pinterest/Collection.html +1877 -0
  16. data/docs/Pinterest/Endpoints/Authentication.html +578 -0
  17. data/docs/Pinterest/Endpoints/Boards.html +1443 -0
  18. data/docs/Pinterest/Endpoints/Pins.html +1296 -0
  19. data/docs/Pinterest/Endpoints/Users.html +1220 -0
  20. data/docs/Pinterest/Endpoints.html +127 -0
  21. data/docs/Pinterest/Entity.html +473 -0
  22. data/docs/Pinterest/Errors/AuthorizationError.html +158 -0
  23. data/docs/Pinterest/Errors/BadRequestError.html +158 -0
  24. data/docs/Pinterest/Errors/BaseError.html +487 -0
  25. data/docs/Pinterest/Errors/MethodNotAllowedError.html +158 -0
  26. data/docs/Pinterest/Errors/NotFoundError.html +158 -0
  27. data/docs/Pinterest/Errors/NotImplementedError.html +158 -0
  28. data/docs/Pinterest/Errors/PermissionsError.html +158 -0
  29. data/docs/Pinterest/Errors/RateLimitError.html +158 -0
  30. data/docs/Pinterest/Errors/ServerError.html +158 -0
  31. data/docs/Pinterest/Errors/TimeoutError.html +158 -0
  32. data/docs/Pinterest/Errors.html +377 -0
  33. data/docs/Pinterest/Image.html +617 -0
  34. data/docs/Pinterest/Interest.html +402 -0
  35. data/docs/Pinterest/Pin.html +511 -0
  36. data/docs/Pinterest/User.html +408 -0
  37. data/docs/Pinterest/Version.html +187 -0
  38. data/docs/Pinterest.html +130 -0
  39. data/docs/_index.html +401 -0
  40. data/docs/class_list.html +51 -0
  41. data/docs/css/common.css +1 -0
  42. data/docs/css/full_list.css +58 -0
  43. data/docs/css/style.css +492 -0
  44. data/docs/file.README.html +106 -0
  45. data/docs/file_list.html +56 -0
  46. data/docs/frames.html +17 -0
  47. data/docs/index.html +106 -0
  48. data/docs/js/app.js +243 -0
  49. data/docs/js/full_list.js +216 -0
  50. data/docs/js/jquery.js +4 -0
  51. data/docs/method_list.html +643 -0
  52. data/docs/top-level-namespace.html +110 -0
  53. data/lib/pinterest/client.rb +146 -0
  54. data/lib/pinterest/collection.rb +97 -0
  55. data/lib/pinterest/endpoints/authentication.rb +99 -0
  56. data/lib/pinterest/endpoints/boards.rb +193 -0
  57. data/lib/pinterest/endpoints/pins.rb +187 -0
  58. data/lib/pinterest/endpoints/users.rb +158 -0
  59. data/lib/pinterest/errors.rb +94 -0
  60. data/lib/pinterest/models/board.rb +34 -0
  61. data/lib/pinterest/models/entity.rb +42 -0
  62. data/lib/pinterest/models/image.rb +49 -0
  63. data/lib/pinterest/models/interest.rb +30 -0
  64. data/lib/pinterest/models/pin.rb +43 -0
  65. data/lib/pinterest/models/user.rb +33 -0
  66. data/lib/pinterest/safe_oj.rb +25 -0
  67. data/lib/pinterest/version.rb +23 -0
  68. data/lib/pinterest.rb +31 -0
  69. data/pinterest.gemspec +32 -0
  70. data/spec/cassettes/Pinterest_Client/_perform_network_request_private_/should_correctly_handle_malformed_requests.yml +51 -0
  71. data/spec/cassettes/Pinterest_Endpoints_Authentication/_fetch_access_token/should_make_the_call_to_Pinterest_and_return_the_authorization_token_also_saving_it.yml +58 -0
  72. data/spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_return_an_exception_when_using_an_invalid_token.yml +52 -0
  73. data/spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_verify_the_token.yml +59 -0
  74. data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_complain_for_invalid_boards.yml +48 -0
  75. data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_get_the_current_informations.yml +63 -0
  76. data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_restrict_to_requested_fields.yml +57 -0
  77. data/spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_only_get_requested_fields.yml +57 -0
  78. data/spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_return_a_list_of_boards.yml +74 -0
  79. data/spec/cassettes/Pinterest_Endpoints_Boards/_create_board/should_create_the_board_and_return_it_with_only_the_requested_fields.yml +56 -0
  80. data/spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_an_error.yml +48 -0
  81. data/spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_true.yml +109 -0
  82. data/spec/cassettes/Pinterest_Endpoints_Boards/_edit_board/should_edit_the_board_and_return_it_with_only_the_requested_fields.yml +56 -0
  83. data/spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_complain_for_invalid_boards.yml +56 -0
  84. data/spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_perform_the_call_and_return_true.yml +109 -0
  85. data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_only_get_requested_fields.yml +59 -0
  86. data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_paginate_correctly.yml +72 -0
  87. data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_return_the_followed_boards.yml +72 -0
  88. data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_only_get_requested_fields.yml +59 -0
  89. data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_paginate_correctly.yml +66 -0
  90. data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_search_boards.yml +75 -0
  91. data/spec/cassettes/Pinterest_Endpoints_Boards/_suggested_boards/should_return_the_suggested_boards_returning_only_the_requested_fields.yml +56 -0
  92. data/spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_complain_for_invalid_boards.yml +56 -0
  93. data/spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_perform_the_call_and_return_true.yml +109 -0
  94. data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_only_get_requested_fields.yml +59 -0
  95. data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_paginate_correctly.yml +85 -0
  96. data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_return_the_pins_of_the_board.yml +85 -0
  97. data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_URL.yml +71 -0
  98. data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_file.yml +1997 -0
  99. data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_return_a_pin_containing_only_requested_fields.yml +56 -0
  100. data/spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_an_error.yml +56 -0
  101. data/spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_true.yml +109 -0
  102. data/spec/cassettes/Pinterest_Endpoints_Pins/_edit_pin/should_edit_the_pin_and_return_it_with_only_the_requested_fields.yml +56 -0
  103. data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_only_get_requested_fields.yml +58 -0
  104. data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_paginate_correctly.yml +87 -0
  105. data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_return_the_list_of_liked_pins.yml +85 -0
  106. data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_complain_for_non_existent_pins.yml +56 -0
  107. data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_get_the_current_informations.yml +71 -0
  108. data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_restrict_to_requested_fields.yml +56 -0
  109. data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_only_get_requested_fields.yml +59 -0
  110. data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_paginate_correctly.yml +808 -0
  111. data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_return_my_pins.yml +88 -0
  112. data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_only_get_requested_fields.yml +61 -0
  113. data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_paginate_correctly.yml +89 -0
  114. data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_search_my_pins.yml +89 -0
  115. data/spec/cassettes/Pinterest_Endpoints_Users/_follow_interest/should_perform_the_call_and_return_an_error.yml +48 -0
  116. data/spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_complain_for_invalid_users.yml +56 -0
  117. data/spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_perform_the_call_and_return_true.yml +109 -0
  118. data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_only_get_requested_fields.yml +62 -0
  119. data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_paginate_correctly.yml +62 -0
  120. data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_return_a_list_of_followers.yml +62 -0
  121. data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_only_get_requested_fields.yml +62 -0
  122. data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_paginate_correctly.yml +131 -0
  123. data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_return_a_list_of_followed_users.yml +66 -0
  124. data/spec/cassettes/Pinterest_Endpoints_Users/_interests/should_paginate_correctly.yml +112 -0
  125. data/spec/cassettes/Pinterest_Endpoints_Users/_interests/should_return_a_list_of_followed_interest.yml +58 -0
  126. data/spec/cassettes/Pinterest_Endpoints_Users/_me/should_get_the_current_informations.yml +62 -0
  127. data/spec/cassettes/Pinterest_Endpoints_Users/_me/should_restrict_to_requested_fields.yml +56 -0
  128. data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_interest/should_perform_the_call_and_return_an_error.yml +48 -0
  129. data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_complain_for_invalid_users.yml +56 -0
  130. data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_perform_the_call_and_return_true.yml +109 -0
  131. data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_complain_for_non_existent_users.yml +56 -0
  132. data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_get_the_current_informations.yml +60 -0
  133. data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_restrict_to_requested_fields.yml +56 -0
  134. data/spec/pinterest/client_spec.rb +70 -0
  135. data/spec/pinterest/collection_spec.rb +82 -0
  136. data/spec/pinterest/endpoints/authentication_spec.rb +81 -0
  137. data/spec/pinterest/endpoints/boards_spec.rb +209 -0
  138. data/spec/pinterest/endpoints/pins_spec.rb +239 -0
  139. data/spec/pinterest/endpoints/users_spec.rb +194 -0
  140. data/spec/pinterest/errors_spec.rb +59 -0
  141. data/spec/pinterest/fixtures/first.jpg +0 -0
  142. data/spec/pinterest/models/board_spec.rb +48 -0
  143. data/spec/pinterest/models/entity_spec.rb +35 -0
  144. data/spec/pinterest/models/image_spec.rb +50 -0
  145. data/spec/pinterest/models/interest_spec.rb +20 -0
  146. data/spec/pinterest/models/pin_spec.rb +55 -0
  147. data/spec/pinterest/models/user_spec.rb +45 -0
  148. data/spec/spec_helper.rb +49 -0
  149. data/tester.rb +19 -0
  150. metadata +341 -0
@@ -0,0 +1,643 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="utf-8" />
6
+
7
+ <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
8
+
9
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
10
+
11
+
12
+
13
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
+
17
+
18
+ <title>Method List</title>
19
+ <base id="base_target" target="_parent" />
20
+ </head>
21
+ <body>
22
+ <div id="content">
23
+ <div class="fixed_header">
24
+ <h1 id="full_list_header">Method List</h1>
25
+ <div id="full_list_nav">
26
+
27
+ <span><a target="_self" href="class_list.html">
28
+ Classes
29
+ </a></span>
30
+
31
+ <span><a target="_self" href="method_list.html">
32
+ Methods
33
+ </a></span>
34
+
35
+ <span><a target="_self" href="file_list.html">
36
+ Files
37
+ </a></span>
38
+
39
+ </div>
40
+
41
+ <div id="search">Search: <input type="text" /></div>
42
+ </div>
43
+
44
+ <ul id="full_list" class="method">
45
+
46
+
47
+ <li class="odd ">
48
+ <div class="item">
49
+ <span class='object_link'><a href="Pinterest/Collection.html#[]-instance_method" title="Pinterest::Collection#[] (method)">#[]</a></span>
50
+ <small>Pinterest::Collection</small>
51
+ </div>
52
+ </li>
53
+
54
+
55
+ <li class="even ">
56
+ <div class="item">
57
+ <span class='object_link'><a href="Pinterest/Client.html#access_token-instance_method" title="Pinterest::Client#access_token (method)">#access_token</a></span>
58
+ <small>Pinterest::Client</small>
59
+ </div>
60
+ </li>
61
+
62
+
63
+ <li class="odd ">
64
+ <div class="item">
65
+ <span class='object_link'><a href="Pinterest/Entity.html#as_json-instance_method" title="Pinterest::Entity#as_json (method)">#as_json</a></span>
66
+ <small>Pinterest::Entity</small>
67
+ </div>
68
+ </li>
69
+
70
+
71
+ <li class="even ">
72
+ <div class="item">
73
+ <span class='object_link'><a href="Pinterest/Interest.html#as_json-instance_method" title="Pinterest::Interest#as_json (method)">#as_json</a></span>
74
+ <small>Pinterest::Interest</small>
75
+ </div>
76
+ </li>
77
+
78
+
79
+ <li class="odd ">
80
+ <div class="item">
81
+ <span class='object_link'><a href="Pinterest/Collection.html#as_json-instance_method" title="Pinterest::Collection#as_json (method)">#as_json</a></span>
82
+ <small>Pinterest::Collection</small>
83
+ </div>
84
+ </li>
85
+
86
+
87
+ <li class="even ">
88
+ <div class="item">
89
+ <span class='object_link'><a href="Pinterest/Pin.html#as_json-instance_method" title="Pinterest::Pin#as_json (method)">#as_json</a></span>
90
+ <small>Pinterest::Pin</small>
91
+ </div>
92
+ </li>
93
+
94
+
95
+ <li class="odd ">
96
+ <div class="item">
97
+ <span class='object_link'><a href="Pinterest/User.html#as_json-instance_method" title="Pinterest::User#as_json (method)">#as_json</a></span>
98
+ <small>Pinterest::User</small>
99
+ </div>
100
+ </li>
101
+
102
+
103
+ <li class="even ">
104
+ <div class="item">
105
+ <span class='object_link'><a href="Pinterest/Board.html#as_json-instance_method" title="Pinterest::Board#as_json (method)">#as_json</a></span>
106
+ <small>Pinterest::Board</small>
107
+ </div>
108
+ </li>
109
+
110
+
111
+ <li class="odd ">
112
+ <div class="item">
113
+ <span class='object_link'><a href="Pinterest/Image.html#as_json-instance_method" title="Pinterest::Image#as_json (method)">#as_json</a></span>
114
+ <small>Pinterest::Image</small>
115
+ </div>
116
+ </li>
117
+
118
+
119
+ <li class="even ">
120
+ <div class="item">
121
+ <span class='object_link'><a href="Pinterest/Endpoints/Authentication.html#authorization_state-instance_method" title="Pinterest::Endpoints::Authentication#authorization_state (method)">#authorization_state</a></span>
122
+ <small>Pinterest::Endpoints::Authentication</small>
123
+ </div>
124
+ </li>
125
+
126
+
127
+ <li class="odd ">
128
+ <div class="item">
129
+ <span class='object_link'><a href="Pinterest/Endpoints/Authentication.html#authorization_url-instance_method" title="Pinterest::Endpoints::Authentication#authorization_url (method)">#authorization_url</a></span>
130
+ <small>Pinterest::Endpoints::Authentication</small>
131
+ </div>
132
+ </li>
133
+
134
+
135
+ <li class="even ">
136
+ <div class="item">
137
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#board-instance_method" title="Pinterest::Endpoints::Boards#board (method)">#board</a></span>
138
+ <small>Pinterest::Endpoints::Boards</small>
139
+ </div>
140
+ </li>
141
+
142
+
143
+ <li class="odd ">
144
+ <div class="item">
145
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#board_pins-instance_method" title="Pinterest::Endpoints::Pins#board_pins (method)">#board_pins</a></span>
146
+ <small>Pinterest::Endpoints::Pins</small>
147
+ </div>
148
+ </li>
149
+
150
+
151
+ <li class="even ">
152
+ <div class="item">
153
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#boards-instance_method" title="Pinterest::Endpoints::Boards#boards (method)">#boards</a></span>
154
+ <small>Pinterest::Endpoints::Boards</small>
155
+ </div>
156
+ </li>
157
+
158
+
159
+ <li class="odd ">
160
+ <div class="item">
161
+ <span class='object_link'><a href="Pinterest/Errors.html#class_for_code-class_method" title="Pinterest::Errors.class_for_code (method)">class_for_code</a></span>
162
+ <small>Pinterest::Errors</small>
163
+ </div>
164
+ </li>
165
+
166
+
167
+ <li class="even ">
168
+ <div class="item">
169
+ <span class='object_link'><a href="Pinterest/Client.html#client_id-instance_method" title="Pinterest::Client#client_id (method)">#client_id</a></span>
170
+ <small>Pinterest::Client</small>
171
+ </div>
172
+ </li>
173
+
174
+
175
+ <li class="odd ">
176
+ <div class="item">
177
+ <span class='object_link'><a href="Pinterest/Client.html#client_secret-instance_method" title="Pinterest::Client#client_secret (method)">#client_secret</a></span>
178
+ <small>Pinterest::Client</small>
179
+ </div>
180
+ </li>
181
+
182
+
183
+ <li class="even ">
184
+ <div class="item">
185
+ <span class='object_link'><a href="Pinterest/Errors/BaseError.html#code-instance_method" title="Pinterest::Errors::BaseError#code (method)">#code</a></span>
186
+ <small>Pinterest::Errors::BaseError</small>
187
+ </div>
188
+ </li>
189
+
190
+
191
+ <li class="odd ">
192
+ <div class="item">
193
+ <span class='object_link'><a href="Pinterest/Client.html#connection-instance_method" title="Pinterest::Client#connection (method)">#connection</a></span>
194
+ <small>Pinterest::Client</small>
195
+ </div>
196
+ </li>
197
+
198
+
199
+ <li class="even ">
200
+ <div class="item">
201
+ <span class='object_link'><a href="Pinterest/Client.html#connection_setup-instance_method" title="Pinterest::Client#connection_setup (method)">#connection_setup</a></span>
202
+ <small>Pinterest::Client</small>
203
+ </div>
204
+ </li>
205
+
206
+
207
+ <li class="odd ">
208
+ <div class="item">
209
+ <span class='object_link'><a href="Pinterest/Pin.html#create-class_method" title="Pinterest::Pin.create (method)">create</a></span>
210
+ <small>Pinterest::Pin</small>
211
+ </div>
212
+ </li>
213
+
214
+
215
+ <li class="even ">
216
+ <div class="item">
217
+ <span class='object_link'><a href="Pinterest/Board.html#create-class_method" title="Pinterest::Board.create (method)">create</a></span>
218
+ <small>Pinterest::Board</small>
219
+ </div>
220
+ </li>
221
+
222
+
223
+ <li class="odd ">
224
+ <div class="item">
225
+ <span class='object_link'><a href="Pinterest/Interest.html#create-class_method" title="Pinterest::Interest.create (method)">create</a></span>
226
+ <small>Pinterest::Interest</small>
227
+ </div>
228
+ </li>
229
+
230
+
231
+ <li class="even ">
232
+ <div class="item">
233
+ <span class='object_link'><a href="Pinterest/User.html#create-class_method" title="Pinterest::User.create (method)">create</a></span>
234
+ <small>Pinterest::User</small>
235
+ </div>
236
+ </li>
237
+
238
+
239
+ <li class="odd ">
240
+ <div class="item">
241
+ <span class='object_link'><a href="Pinterest/Errors.html#create-class_method" title="Pinterest::Errors.create (method)">create</a></span>
242
+ <small>Pinterest::Errors</small>
243
+ </div>
244
+ </li>
245
+
246
+
247
+ <li class="even ">
248
+ <div class="item">
249
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#create_board-instance_method" title="Pinterest::Endpoints::Boards#create_board (method)">#create_board</a></span>
250
+ <small>Pinterest::Endpoints::Boards</small>
251
+ </div>
252
+ </li>
253
+
254
+
255
+ <li class="odd ">
256
+ <div class="item">
257
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#create_pin-instance_method" title="Pinterest::Endpoints::Pins#create_pin (method)">#create_pin</a></span>
258
+ <small>Pinterest::Endpoints::Pins</small>
259
+ </div>
260
+ </li>
261
+
262
+
263
+ <li class="even ">
264
+ <div class="item">
265
+ <span class='object_link'><a href="Pinterest/Pin.html#create_relationships-class_method" title="Pinterest::Pin.create_relationships (method)">create_relationships</a></span>
266
+ <small>Pinterest::Pin</small>
267
+ </div>
268
+ </li>
269
+
270
+
271
+ <li class="odd ">
272
+ <div class="item">
273
+ <span class='object_link'><a href="Pinterest/Collection.html#current_cursor-instance_method" title="Pinterest::Collection#current_cursor (method)">#current_cursor</a></span>
274
+ <small>Pinterest::Collection</small>
275
+ </div>
276
+ </li>
277
+
278
+
279
+ <li class="even ">
280
+ <div class="item">
281
+ <span class='object_link'><a href="Pinterest/Collection.html#current_page-instance_method" title="Pinterest::Collection#current_page (method)">#current_page</a></span>
282
+ <small>Pinterest::Collection</small>
283
+ </div>
284
+ </li>
285
+
286
+
287
+ <li class="odd ">
288
+ <div class="item">
289
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#delete_board-instance_method" title="Pinterest::Endpoints::Boards#delete_board (method)">#delete_board</a></span>
290
+ <small>Pinterest::Endpoints::Boards</small>
291
+ </div>
292
+ </li>
293
+
294
+
295
+ <li class="even ">
296
+ <div class="item">
297
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#delete_pin-instance_method" title="Pinterest::Endpoints::Pins#delete_pin (method)">#delete_pin</a></span>
298
+ <small>Pinterest::Endpoints::Pins</small>
299
+ </div>
300
+ </li>
301
+
302
+
303
+ <li class="odd ">
304
+ <div class="item">
305
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#edit_board-instance_method" title="Pinterest::Endpoints::Boards#edit_board (method)">#edit_board</a></span>
306
+ <small>Pinterest::Endpoints::Boards</small>
307
+ </div>
308
+ </li>
309
+
310
+
311
+ <li class="even ">
312
+ <div class="item">
313
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#edit_pin-instance_method" title="Pinterest::Endpoints::Pins#edit_pin (method)">#edit_pin</a></span>
314
+ <small>Pinterest::Endpoints::Pins</small>
315
+ </div>
316
+ </li>
317
+
318
+
319
+ <li class="odd ">
320
+ <div class="item">
321
+ <span class='object_link'><a href="Pinterest/Collection.html#empty%3F-instance_method" title="Pinterest::Collection#empty? (method)">#empty?</a></span>
322
+ <small>Pinterest::Collection</small>
323
+ </div>
324
+ </li>
325
+
326
+
327
+ <li class="even ">
328
+ <div class="item">
329
+ <span class='object_link'><a href="Pinterest/Errors/BaseError.html#env-instance_method" title="Pinterest::Errors::BaseError#env (method)">#env</a></span>
330
+ <small>Pinterest::Errors::BaseError</small>
331
+ </div>
332
+ </li>
333
+
334
+
335
+ <li class="odd ">
336
+ <div class="item">
337
+ <span class='object_link'><a href="Pinterest/Endpoints/Authentication.html#fetch_access_token-instance_method" title="Pinterest::Endpoints::Authentication#fetch_access_token (method)">#fetch_access_token</a></span>
338
+ <small>Pinterest::Endpoints::Authentication</small>
339
+ </div>
340
+ </li>
341
+
342
+
343
+ <li class="even ">
344
+ <div class="item">
345
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#follow_board-instance_method" title="Pinterest::Endpoints::Boards#follow_board (method)">#follow_board</a></span>
346
+ <small>Pinterest::Endpoints::Boards</small>
347
+ </div>
348
+ </li>
349
+
350
+
351
+ <li class="odd ">
352
+ <div class="item">
353
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#follow_interest-instance_method" title="Pinterest::Endpoints::Users#follow_interest (method)">#follow_interest</a></span>
354
+ <small>Pinterest::Endpoints::Users</small>
355
+ </div>
356
+ </li>
357
+
358
+
359
+ <li class="even ">
360
+ <div class="item">
361
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#follow_user-instance_method" title="Pinterest::Endpoints::Users#follow_user (method)">#follow_user</a></span>
362
+ <small>Pinterest::Endpoints::Users</small>
363
+ </div>
364
+ </li>
365
+
366
+
367
+ <li class="odd ">
368
+ <div class="item">
369
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#followers-instance_method" title="Pinterest::Endpoints::Users#followers (method)">#followers</a></span>
370
+ <small>Pinterest::Endpoints::Users</small>
371
+ </div>
372
+ </li>
373
+
374
+
375
+ <li class="even ">
376
+ <div class="item">
377
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#following_boards-instance_method" title="Pinterest::Endpoints::Boards#following_boards (method)">#following_boards</a></span>
378
+ <small>Pinterest::Endpoints::Boards</small>
379
+ </div>
380
+ </li>
381
+
382
+
383
+ <li class="odd ">
384
+ <div class="item">
385
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#following_users-instance_method" title="Pinterest::Endpoints::Users#following_users (method)">#following_users</a></span>
386
+ <small>Pinterest::Endpoints::Users</small>
387
+ </div>
388
+ </li>
389
+
390
+
391
+ <li class="even ">
392
+ <div class="item">
393
+ <span class='object_link'><a href="Pinterest/Image.html#initialize-instance_method" title="Pinterest::Image#initialize (method)">#initialize</a></span>
394
+ <small>Pinterest::Image</small>
395
+ </div>
396
+ </li>
397
+
398
+
399
+ <li class="odd ">
400
+ <div class="item">
401
+ <span class='object_link'><a href="Pinterest/Errors/BaseError.html#initialize-instance_method" title="Pinterest::Errors::BaseError#initialize (method)">#initialize</a></span>
402
+ <small>Pinterest::Errors::BaseError</small>
403
+ </div>
404
+ </li>
405
+
406
+
407
+ <li class="even ">
408
+ <div class="item">
409
+ <span class='object_link'><a href="Pinterest/Collection.html#initialize-instance_method" title="Pinterest::Collection#initialize (method)">#initialize</a></span>
410
+ <small>Pinterest::Collection</small>
411
+ </div>
412
+ </li>
413
+
414
+
415
+ <li class="odd ">
416
+ <div class="item">
417
+ <span class='object_link'><a href="Pinterest/Entity.html#initialize-instance_method" title="Pinterest::Entity#initialize (method)">#initialize</a></span>
418
+ <small>Pinterest::Entity</small>
419
+ </div>
420
+ </li>
421
+
422
+
423
+ <li class="even ">
424
+ <div class="item">
425
+ <span class='object_link'><a href="Pinterest/Client.html#initialize-instance_method" title="Pinterest::Client#initialize (method)">#initialize</a></span>
426
+ <small>Pinterest::Client</small>
427
+ </div>
428
+ </li>
429
+
430
+
431
+ <li class="odd ">
432
+ <div class="item">
433
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#interests-instance_method" title="Pinterest::Endpoints::Users#interests (method)">#interests</a></span>
434
+ <small>Pinterest::Endpoints::Users</small>
435
+ </div>
436
+ </li>
437
+
438
+
439
+ <li class="even ">
440
+ <div class="item">
441
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#likes-instance_method" title="Pinterest::Endpoints::Pins#likes (method)">#likes</a></span>
442
+ <small>Pinterest::Endpoints::Pins</small>
443
+ </div>
444
+ </li>
445
+
446
+
447
+ <li class="odd ">
448
+ <div class="item">
449
+ <span class='object_link'><a href="Pinterest/Collection.html#limit-instance_method" title="Pinterest::Collection#limit (method)">#limit</a></span>
450
+ <small>Pinterest::Collection</small>
451
+ </div>
452
+ </li>
453
+
454
+
455
+ <li class="even ">
456
+ <div class="item">
457
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#me-instance_method" title="Pinterest::Endpoints::Users#me (method)">#me</a></span>
458
+ <small>Pinterest::Endpoints::Users</small>
459
+ </div>
460
+ </li>
461
+
462
+
463
+ <li class="odd ">
464
+ <div class="item">
465
+ <span class='object_link'><a href="Pinterest/Collection.html#next%3F-instance_method" title="Pinterest::Collection#next? (method)">#next?</a></span>
466
+ <small>Pinterest::Collection</small>
467
+ </div>
468
+ </li>
469
+
470
+
471
+ <li class="even ">
472
+ <div class="item">
473
+ <span class='object_link'><a href="Pinterest/Collection.html#next_cursor-instance_method" title="Pinterest::Collection#next_cursor (method)">#next_cursor</a></span>
474
+ <small>Pinterest::Collection</small>
475
+ </div>
476
+ </li>
477
+
478
+
479
+ <li class="odd ">
480
+ <div class="item">
481
+ <span class='object_link'><a href="Pinterest/Collection.html#next_page-instance_method" title="Pinterest::Collection#next_page (method)">#next_page</a></span>
482
+ <small>Pinterest::Collection</small>
483
+ </div>
484
+ </li>
485
+
486
+
487
+ <li class="even ">
488
+ <div class="item">
489
+ <span class='object_link'><a href="Pinterest/Entity.html#parse_timestamp-class_method" title="Pinterest::Entity.parse_timestamp (method)">parse_timestamp</a></span>
490
+ <small>Pinterest::Entity</small>
491
+ </div>
492
+ </li>
493
+
494
+
495
+ <li class="odd ">
496
+ <div class="item">
497
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#pin-instance_method" title="Pinterest::Endpoints::Pins#pin (method)">#pin</a></span>
498
+ <small>Pinterest::Endpoints::Pins</small>
499
+ </div>
500
+ </li>
501
+
502
+
503
+ <li class="even ">
504
+ <div class="item">
505
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#pins-instance_method" title="Pinterest::Endpoints::Pins#pins (method)">#pins</a></span>
506
+ <small>Pinterest::Endpoints::Pins</small>
507
+ </div>
508
+ </li>
509
+
510
+
511
+ <li class="odd ">
512
+ <div class="item">
513
+ <span class='object_link'><a href="FaradayMiddleware/SafeOj.html#process_response-instance_method" title="FaradayMiddleware::SafeOj#process_response (method)">#process_response</a></span>
514
+ <small>FaradayMiddleware::SafeOj</small>
515
+ </div>
516
+ </li>
517
+
518
+
519
+ <li class="even ">
520
+ <div class="item">
521
+ <span class='object_link'><a href="Pinterest/Errors/BaseError.html#reason-instance_method" title="Pinterest::Errors::BaseError#reason (method)">#reason</a></span>
522
+ <small>Pinterest::Errors::BaseError</small>
523
+ </div>
524
+ </li>
525
+
526
+
527
+ <li class="odd ">
528
+ <div class="item">
529
+ <span class='object_link'><a href="Pinterest/Collection.html#records-instance_method" title="Pinterest::Collection#records (method)">#records</a></span>
530
+ <small>Pinterest::Collection</small>
531
+ </div>
532
+ </li>
533
+
534
+
535
+ <li class="even ">
536
+ <div class="item">
537
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#search_my_boards-instance_method" title="Pinterest::Endpoints::Boards#search_my_boards (method)">#search_my_boards</a></span>
538
+ <small>Pinterest::Endpoints::Boards</small>
539
+ </div>
540
+ </li>
541
+
542
+
543
+ <li class="odd ">
544
+ <div class="item">
545
+ <span class='object_link'><a href="Pinterest/Endpoints/Pins.html#search_my_pins-instance_method" title="Pinterest::Endpoints::Pins#search_my_pins (method)">#search_my_pins</a></span>
546
+ <small>Pinterest::Endpoints::Pins</small>
547
+ </div>
548
+ </li>
549
+
550
+
551
+ <li class="even ">
552
+ <div class="item">
553
+ <span class='object_link'><a href="Pinterest/Collection.html#size-instance_method" title="Pinterest::Collection#size (method)">#size</a></span>
554
+ <small>Pinterest::Collection</small>
555
+ </div>
556
+ </li>
557
+
558
+
559
+ <li class="odd ">
560
+ <div class="item">
561
+ <span class='object_link'><a href="Pinterest/Image.html#size-instance_method" title="Pinterest::Image#size (method)">#size</a></span>
562
+ <small>Pinterest::Image</small>
563
+ </div>
564
+ </li>
565
+
566
+
567
+ <li class="even ">
568
+ <div class="item">
569
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#suggested_boards-instance_method" title="Pinterest::Endpoints::Boards#suggested_boards (method)">#suggested_boards</a></span>
570
+ <small>Pinterest::Endpoints::Boards</small>
571
+ </div>
572
+ </li>
573
+
574
+
575
+ <li class="odd ">
576
+ <div class="item">
577
+ <span class='object_link'><a href="Pinterest/Endpoints/Boards.html#unfollow_board-instance_method" title="Pinterest::Endpoints::Boards#unfollow_board (method)">#unfollow_board</a></span>
578
+ <small>Pinterest::Endpoints::Boards</small>
579
+ </div>
580
+ </li>
581
+
582
+
583
+ <li class="even ">
584
+ <div class="item">
585
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#unfollow_interest-instance_method" title="Pinterest::Endpoints::Users#unfollow_interest (method)">#unfollow_interest</a></span>
586
+ <small>Pinterest::Endpoints::Users</small>
587
+ </div>
588
+ </li>
589
+
590
+
591
+ <li class="odd ">
592
+ <div class="item">
593
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#unfollow_user-instance_method" title="Pinterest::Endpoints::Users#unfollow_user (method)">#unfollow_user</a></span>
594
+ <small>Pinterest::Endpoints::Users</small>
595
+ </div>
596
+ </li>
597
+
598
+
599
+ <li class="even ">
600
+ <div class="item">
601
+ <span class='object_link'><a href="Pinterest/Image.html#url-instance_method" title="Pinterest::Image#url (method)">#url</a></span>
602
+ <small>Pinterest::Image</small>
603
+ </div>
604
+ </li>
605
+
606
+
607
+ <li class="odd ">
608
+ <div class="item">
609
+ <span class='object_link'><a href="Pinterest/Endpoints/Users.html#user-instance_method" title="Pinterest::Endpoints::Users#user (method)">#user</a></span>
610
+ <small>Pinterest::Endpoints::Users</small>
611
+ </div>
612
+ </li>
613
+
614
+
615
+ <li class="even ">
616
+ <div class="item">
617
+ <span class='object_link'><a href="Pinterest/Client.html#verbose-instance_method" title="Pinterest::Client#verbose (method)">#verbose</a></span>
618
+ <small>Pinterest::Client</small>
619
+ </div>
620
+ </li>
621
+
622
+
623
+ <li class="odd ">
624
+ <div class="item">
625
+ <span class='object_link'><a href="Pinterest/Endpoints/Authentication.html#verify_access_token-instance_method" title="Pinterest::Endpoints::Authentication#verify_access_token (method)">#verify_access_token</a></span>
626
+ <small>Pinterest::Endpoints::Authentication</small>
627
+ </div>
628
+ </li>
629
+
630
+
631
+ <li class="even ">
632
+ <div class="item">
633
+ <span class='object_link'><a href="Pinterest/Image.html#versions-instance_method" title="Pinterest::Image#versions (method)">#versions</a></span>
634
+ <small>Pinterest::Image</small>
635
+ </div>
636
+ </li>
637
+
638
+
639
+
640
+ </ul>
641
+ </div>
642
+ </body>
643
+ </html>