contentful-management 0.0.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. data/.gitignore +24 -0
  2. data/.reek +3 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/.travis.yml +9 -0
  6. data/CHANGELOG.md +2 -0
  7. data/Gemfile +13 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +408 -0
  10. data/Rakefile +37 -0
  11. data/bin/cma-console +8 -0
  12. data/contentful-management.gemspec +33 -0
  13. data/examples/blog.rb +82 -0
  14. data/examples/content_types.rb +45 -0
  15. data/examples/create_space.rb +35 -0
  16. data/lib/contentful/management.rb +12 -0
  17. data/lib/contentful/management/array.rb +35 -0
  18. data/lib/contentful/management/asset.rb +163 -0
  19. data/lib/contentful/management/client.rb +160 -0
  20. data/lib/contentful/management/content_type.rb +180 -0
  21. data/lib/contentful/management/dynamic_entry.rb +71 -0
  22. data/lib/contentful/management/entry.rb +213 -0
  23. data/lib/contentful/management/error.rb +62 -0
  24. data/lib/contentful/management/field.rb +34 -0
  25. data/lib/contentful/management/file.rb +15 -0
  26. data/lib/contentful/management/http_client.rb +22 -0
  27. data/lib/contentful/management/link.rb +23 -0
  28. data/lib/contentful/management/locale.rb +48 -0
  29. data/lib/contentful/management/location.rb +15 -0
  30. data/lib/contentful/management/request.rb +82 -0
  31. data/lib/contentful/management/resource.rb +166 -0
  32. data/lib/contentful/management/resource/array_like.rb +37 -0
  33. data/lib/contentful/management/resource/fields.rb +69 -0
  34. data/lib/contentful/management/resource/refresher.rb +21 -0
  35. data/lib/contentful/management/resource/system_properties.rb +56 -0
  36. data/lib/contentful/management/resource_builder.rb +269 -0
  37. data/lib/contentful/management/response.rb +72 -0
  38. data/lib/contentful/management/space.rb +159 -0
  39. data/lib/contentful/management/support.rb +24 -0
  40. data/lib/contentful/management/version.rb +6 -0
  41. data/spec/fixtures/vcr_cassettes/array_page_1.yml +1337 -0
  42. data/spec/fixtures/vcr_cassettes/asset/all.yml +611 -0
  43. data/spec/fixtures/vcr_cassettes/asset/archive.yml +228 -0
  44. data/spec/fixtures/vcr_cassettes/asset/archive_published.yml +177 -0
  45. data/spec/fixtures/vcr_cassettes/asset/archived_false.yml +228 -0
  46. data/spec/fixtures/vcr_cassettes/asset/archived_true.yml +228 -0
  47. data/spec/fixtures/vcr_cassettes/asset/create.yml +150 -0
  48. data/spec/fixtures/vcr_cassettes/asset/create_with_already_used_id.yml +56 -0
  49. data/spec/fixtures/vcr_cassettes/asset/create_with_custom_id.yml +150 -0
  50. data/spec/fixtures/vcr_cassettes/asset/destroy.yml +159 -0
  51. data/spec/fixtures/vcr_cassettes/asset/destroy_published.yml +175 -0
  52. data/spec/fixtures/vcr_cassettes/asset/find.yml +108 -0
  53. data/spec/fixtures/vcr_cassettes/asset/find_not_found.yml +64 -0
  54. data/spec/fixtures/vcr_cassettes/asset/image_url.yml +133 -0
  55. data/spec/fixtures/vcr_cassettes/asset/locale.yml +110 -0
  56. data/spec/fixtures/vcr_cassettes/asset/publish.yml +228 -0
  57. data/spec/fixtures/vcr_cassettes/asset/publish_already_published.yml +176 -0
  58. data/spec/fixtures/vcr_cassettes/asset/published_false.yml +228 -0
  59. data/spec/fixtures/vcr_cassettes/asset/published_true.yml +226 -0
  60. data/spec/fixtures/vcr_cassettes/asset/save_update.yml +242 -0
  61. data/spec/fixtures/vcr_cassettes/asset/set_locale.yml +110 -0
  62. data/spec/fixtures/vcr_cassettes/asset/unarchive.yml +228 -0
  63. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchive.yml +168 -0
  64. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchived.yml +168 -0
  65. data/spec/fixtures/vcr_cassettes/asset/unpublish.yml +228 -0
  66. data/spec/fixtures/vcr_cassettes/asset/unpublish_already_unpublished.yml +168 -0
  67. data/spec/fixtures/vcr_cassettes/asset/update_file.yml +207 -0
  68. data/spec/fixtures/vcr_cassettes/asset/update_to_specified_locale.yml +224 -0
  69. data/spec/fixtures/vcr_cassettes/asset/update_with_default_locale_without_file.yml +214 -0
  70. data/spec/fixtures/vcr_cassettes/content_type/activate.yml +246 -0
  71. data/spec/fixtures/vcr_cassettes/content_type/activate_with_invalid_version.yml +186 -0
  72. data/spec/fixtures/vcr_cassettes/content_type/activated_false.yml +246 -0
  73. data/spec/fixtures/vcr_cassettes/content_type/activated_true.yml +257 -0
  74. data/spec/fixtures/vcr_cassettes/content_type/all.yml +190 -0
  75. data/spec/fixtures/vcr_cassettes/content_type/create.yml +87 -0
  76. data/spec/fixtures/vcr_cassettes/content_type/create_content_type_with_id.yml +87 -0
  77. data/spec/fixtures/vcr_cassettes/content_type/create_with_Array_field.yml +94 -0
  78. data/spec/fixtures/vcr_cassettes/content_type/create_with_Boolean_field.yml +94 -0
  79. data/spec/fixtures/vcr_cassettes/content_type/create_with_Date_field.yml +94 -0
  80. data/spec/fixtures/vcr_cassettes/content_type/create_with_Integer_field.yml +94 -0
  81. data/spec/fixtures/vcr_cassettes/content_type/create_with_Link_field.yml +95 -0
  82. data/spec/fixtures/vcr_cassettes/content_type/create_with_Location_field.yml +94 -0
  83. data/spec/fixtures/vcr_cassettes/content_type/create_with_Number_field.yml +94 -0
  84. data/spec/fixtures/vcr_cassettes/content_type/create_with_Object_field.yml +94 -0
  85. data/spec/fixtures/vcr_cassettes/content_type/create_with_Symbol_field.yml +94 -0
  86. data/spec/fixtures/vcr_cassettes/content_type/create_with_Text_field.yml +94 -0
  87. data/spec/fixtures/vcr_cassettes/content_type/deactivate.yml +246 -0
  88. data/spec/fixtures/vcr_cassettes/content_type/deactivate_already_deactivated.yml +176 -0
  89. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_entries.yml +236 -0
  90. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_version_change.yml +248 -0
  91. data/spec/fixtures/vcr_cassettes/content_type/destroy.yml +148 -0
  92. data/spec/fixtures/vcr_cassettes/content_type/destroy_activated.yml +164 -0
  93. data/spec/fixtures/vcr_cassettes/content_type/entry/create.yml +1344 -0
  94. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_camel_case_id_to_multiple_locales.yml +235 -0
  95. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries.yml +398 -0
  96. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries_for_multiple_locales.yml +3157 -0
  97. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_multiple_locales.yml +230 -0
  98. data/spec/fixtures/vcr_cassettes/content_type/fields/add.yml +345 -0
  99. data/spec/fixtures/vcr_cassettes/content_type/fields/create.yml +353 -0
  100. data/spec/fixtures/vcr_cassettes/content_type/fields/create_array_with_params.yml +228 -0
  101. data/spec/fixtures/vcr_cassettes/content_type/fields/create_with_params.yml +221 -0
  102. data/spec/fixtures/vcr_cassettes/content_type/fields/destroy.yml +349 -0
  103. data/spec/fixtures/vcr_cassettes/content_type/fields/update_field.yml +358 -0
  104. data/spec/fixtures/vcr_cassettes/content_type/find.yml +180 -0
  105. data/spec/fixtures/vcr_cassettes/content_type/find_not_found.yml +64 -0
  106. data/spec/fixtures/vcr_cassettes/content_type/save_new.yml +876 -0
  107. data/spec/fixtures/vcr_cassettes/content_type/save_updated.yml +345 -0
  108. data/spec/fixtures/vcr_cassettes/content_type/save_with_added_field.yml +217 -0
  109. data/spec/fixtures/vcr_cassettes/content_type/update.yml +175 -0
  110. data/spec/fixtures/vcr_cassettes/content_type/update_change_field_name.yml +222 -0
  111. data/spec/fixtures/vcr_cassettes/content_type/update_remove_field.yml +231 -0
  112. data/spec/fixtures/vcr_cassettes/content_type/update_with_fields.yml +222 -0
  113. data/spec/fixtures/vcr_cassettes/content_type/update_with_one_new_field.yml +251 -0
  114. data/spec/fixtures/vcr_cassettes/entry/all.yml +139 -0
  115. data/spec/fixtures/vcr_cassettes/entry/archive.yml +222 -0
  116. data/spec/fixtures/vcr_cassettes/entry/archive_published.yml +187 -0
  117. data/spec/fixtures/vcr_cassettes/entry/archived_false.yml +178 -0
  118. data/spec/fixtures/vcr_cassettes/entry/archived_true.yml +248 -0
  119. data/spec/fixtures/vcr_cassettes/entry/create.yml +245 -0
  120. data/spec/fixtures/vcr_cassettes/entry/create_test.yml +150 -0
  121. data/spec/fixtures/vcr_cassettes/entry/create_with_asset.yml +403 -0
  122. data/spec/fixtures/vcr_cassettes/entry/create_with_assets.yml +419 -0
  123. data/spec/fixtures/vcr_cassettes/entry/create_with_entries.yml +418 -0
  124. data/spec/fixtures/vcr_cassettes/entry/create_with_entry.yml +493 -0
  125. data/spec/fixtures/vcr_cassettes/entry/create_with_location.yml +259 -0
  126. data/spec/fixtures/vcr_cassettes/entry/create_with_symbols.yml +271 -0
  127. data/spec/fixtures/vcr_cassettes/entry/destory_published.yml +172 -0
  128. data/spec/fixtures/vcr_cassettes/entry/destroy.yml +156 -0
  129. data/spec/fixtures/vcr_cassettes/entry/find.yml +129 -0
  130. data/spec/fixtures/vcr_cassettes/entry/find_not_found.yml +64 -0
  131. data/spec/fixtures/vcr_cassettes/entry/publish.yml +248 -0
  132. data/spec/fixtures/vcr_cassettes/entry/publish_already_published.yml +186 -0
  133. data/spec/fixtures/vcr_cassettes/entry/published_false.yml +248 -0
  134. data/spec/fixtures/vcr_cassettes/entry/published_true.yml +257 -0
  135. data/spec/fixtures/vcr_cassettes/entry/save_update.yml +211 -0
  136. data/spec/fixtures/vcr_cassettes/entry/unarchive.yml +248 -0
  137. data/spec/fixtures/vcr_cassettes/entry/unarchive_already_unarchived.yml +178 -0
  138. data/spec/fixtures/vcr_cassettes/entry/unpublish.yml +248 -0
  139. data/spec/fixtures/vcr_cassettes/entry/unpublish_already_unpublished.yml +178 -0
  140. data/spec/fixtures/vcr_cassettes/entry/update.yml +626 -0
  141. data/spec/fixtures/vcr_cassettes/entry/update_unlocalized_field.yml +308 -0
  142. data/spec/fixtures/vcr_cassettes/entry/update_with_custom_locale.yml +332 -0
  143. data/spec/fixtures/vcr_cassettes/get_request.yml +37 -0
  144. data/spec/fixtures/vcr_cassettes/locale/all_for_space.yml +321 -0
  145. data/spec/fixtures/vcr_cassettes/locale/create_for_space.yml +95 -0
  146. data/spec/fixtures/vcr_cassettes/locale/find.yml +95 -0
  147. data/spec/fixtures/vcr_cassettes/locale/find_for_space_not_found.yml +67 -0
  148. data/spec/fixtures/vcr_cassettes/space/all.yml +1201 -0
  149. data/spec/fixtures/vcr_cassettes/space/asset/all.yml +475 -0
  150. data/spec/fixtures/vcr_cassettes/space/asset/assets.yml +826 -0
  151. data/spec/fixtures/vcr_cassettes/space/asset/create.yml +508 -0
  152. data/spec/fixtures/vcr_cassettes/space/asset/create_with_multiple_locales.yml +1062 -0
  153. data/spec/fixtures/vcr_cassettes/space/asset/find.yml +634 -0
  154. data/spec/fixtures/vcr_cassettes/space/content_type/all.yml +470 -0
  155. data/spec/fixtures/vcr_cassettes/space/content_type/content_types.yml +341 -0
  156. data/spec/fixtures/vcr_cassettes/space/content_type/create.yml +425 -0
  157. data/spec/fixtures/vcr_cassettes/space/content_type/find.yml +493 -0
  158. data/spec/fixtures/vcr_cassettes/space/create.yml +85 -0
  159. data/spec/fixtures/vcr_cassettes/space/create_when_limit_has_been_reached.yml +67 -0
  160. data/spec/fixtures/vcr_cassettes/space/create_with_unknown_organization.yml +65 -0
  161. data/spec/fixtures/vcr_cassettes/space/create_without_organization.yml +83 -0
  162. data/spec/fixtures/vcr_cassettes/space/destory.yml +196 -0
  163. data/spec/fixtures/vcr_cassettes/space/entry/all.yml +634 -0
  164. data/spec/fixtures/vcr_cassettes/space/entry/entries.yml +498 -0
  165. data/spec/fixtures/vcr_cassettes/space/entry/find.yml +624 -0
  166. data/spec/fixtures/vcr_cassettes/space/find.yml +270 -0
  167. data/spec/fixtures/vcr_cassettes/space/find_not_found.yml +67 -0
  168. data/spec/fixtures/vcr_cassettes/space/locale/all.yml +690 -0
  169. data/spec/fixtures/vcr_cassettes/space/locale/create.yml +572 -0
  170. data/spec/fixtures/vcr_cassettes/space/locale/create_with_the_same_code.yml +585 -0
  171. data/spec/fixtures/vcr_cassettes/space/locale/find.yml +572 -0
  172. data/spec/fixtures/vcr_cassettes/space/locale/find_not_found.yml +580 -0
  173. data/spec/fixtures/vcr_cassettes/space/locale/locales.yml +480 -0
  174. data/spec/fixtures/vcr_cassettes/space/locale/update.yml +700 -0
  175. data/spec/fixtures/vcr_cassettes/space/save_new_space.yml +67 -0
  176. data/spec/fixtures/vcr_cassettes/space/save_update_space.yml +352 -0
  177. data/spec/fixtures/vcr_cassettes/space/update.yml +350 -0
  178. data/spec/fixtures/vcr_cassettes/space/update_with_the_same_data.yml +350 -0
  179. data/spec/lib/contentful/management/array_spec.rb +59 -0
  180. data/spec/lib/contentful/management/asset_spec.rb +321 -0
  181. data/spec/lib/contentful/management/client_spec.rb +80 -0
  182. data/spec/lib/contentful/management/content_type_spec.rb +455 -0
  183. data/spec/lib/contentful/management/entry_spec.rb +308 -0
  184. data/spec/lib/contentful/management/locale_spec.rb +53 -0
  185. data/spec/lib/contentful/management/space_spec.rb +317 -0
  186. data/spec/spec_helper.rb +10 -0
  187. data/spec/support/vcr.rb +17 -0
  188. metadata +554 -0
@@ -0,0 +1,826 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - RubyContenfulManagementGem/0.0.1
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Date:
28
+ - Thu, 31 Jul 2014 07:16:56 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '452'
33
+ Connection:
34
+ - keep-alive
35
+ Status:
36
+ - 200 OK
37
+ X-Contentful-Request-Id:
38
+ - 85f-1334431741
39
+ Etag:
40
+ - '"9e4bd8a9797b7a8406a09df0926660eb"'
41
+ Accept-Ranges:
42
+ - bytes
43
+ Cache-Control:
44
+ - max-age=0
45
+ Access-Control-Allow-Origin:
46
+ - "*"
47
+ Access-Control-Allow-Headers:
48
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
49
+ Access-Control-Allow-Methods:
50
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
51
+ "^access-Control-Expose-Headers":
52
+ - Etag
53
+ Access-Control-Max-Age:
54
+ - '1728000'
55
+ body:
56
+ encoding: UTF-8
57
+ string: |
58
+ {
59
+ "sys":{
60
+ "type":"Space",
61
+ "id":"yr5m0jky5hsh",
62
+ "version":9,
63
+ "createdBy":{
64
+ "sys":{
65
+ "type":"Link",
66
+ "linkType":"User",
67
+ "id":"0fn5fOWn4WsKFyYla1gI5h"
68
+ }
69
+ },
70
+ "createdAt":"2014-07-30T07:46:19Z",
71
+ "updatedBy":{
72
+ "sys":{
73
+ "type":"Link",
74
+ "linkType":"User",
75
+ "id":"1E7acJL8I5XUXAMHQt9Grs"
76
+ }
77
+ },
78
+ "updatedAt":"2014-07-31T07:14:48Z"
79
+ },
80
+ "name":"SaveNewName"}
81
+ http_version:
82
+ recorded_at: Thu, 31 Jul 2014 07:16:56 GMT
83
+ - request:
84
+ method: get
85
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types
86
+ body:
87
+ encoding: US-ASCII
88
+ string: ''
89
+ headers:
90
+ User-Agent:
91
+ - RubyContenfulManagementGem/0.0.1
92
+ Authorization:
93
+ - Bearer <ACCESS_TOKEN>
94
+ Content-Type:
95
+ - application/vnd.contentful.management.v1+json
96
+ Content-Length:
97
+ - '0'
98
+ Host:
99
+ - api.contentful.com
100
+ response:
101
+ status:
102
+ code: 200
103
+ message: OK
104
+ headers:
105
+ Server:
106
+ - nginx
107
+ Date:
108
+ - Thu, 31 Jul 2014 07:16:57 GMT
109
+ Content-Type:
110
+ - application/vnd.contentful.management.v1+json
111
+ Content-Length:
112
+ - '3054'
113
+ Connection:
114
+ - keep-alive
115
+ X-Powered-By:
116
+ - Express
117
+ Cf-Space-Id:
118
+ - yr5m0jky5hsh
119
+ Etag:
120
+ - '"4c43b6e34924f7e65971295370191384"'
121
+ Access-Control-Allow-Origin:
122
+ - "*"
123
+ Access-Control-Allow-Headers:
124
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
125
+ Access-Control-Allow-Methods:
126
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
127
+ "^access-Control-Expose-Headers":
128
+ - Etag
129
+ Access-Control-Max-Age:
130
+ - '1728000'
131
+ body:
132
+ encoding: UTF-8
133
+ string: |
134
+ {
135
+ "sys": {
136
+ "type": "Array"
137
+ },
138
+ "total": 1,
139
+ "skip": 0,
140
+ "limit": 100,
141
+ "items": [
142
+ {
143
+ "fields": [
144
+ {
145
+ "name": "name",
146
+ "id": "name",
147
+ "type": "Text",
148
+ "uiid": "3fflnrplhc0",
149
+ "localized": true
150
+ },
151
+ {
152
+ "name": "age",
153
+ "id": "age",
154
+ "uiid": "2t5blkc7u2o",
155
+ "type": "Integer",
156
+ "localized": true
157
+ },
158
+ {
159
+ "name": "city",
160
+ "id": "city",
161
+ "type": "Location",
162
+ "uiid": "4fzl5jkm1a8",
163
+ "localized": false
164
+ },
165
+ {
166
+ "name": "assets",
167
+ "id": "assets",
168
+ "uiid": "3aqrgdyesxs",
169
+ "type": "Array",
170
+ "items": {
171
+ "type": "Link",
172
+ "linkType": "Asset"
173
+ },
174
+ "localized": true
175
+ },
176
+ {
177
+ "name": "entries",
178
+ "id": "entries",
179
+ "type": "Array",
180
+ "uiid": "3xi486kbchs",
181
+ "items": {
182
+ "type": "Link",
183
+ "linkType": "Entry"
184
+ }
185
+ },
186
+ {
187
+ "name": "entry",
188
+ "id": "entry",
189
+ "type": "Link",
190
+ "uiid": "3uxjdd1n5ds",
191
+ "linkType": "Entry"
192
+ },
193
+ {
194
+ "name": "asset",
195
+ "id": "asset",
196
+ "type": "Link",
197
+ "uiid": "40ilp8h1xc0",
198
+ "linkType": "Asset"
199
+ },
200
+ {
201
+ "name": "bool",
202
+ "id": "bool",
203
+ "type": "Boolean",
204
+ "uiid": "2i1bgmn2dj4",
205
+ "localized": true
206
+ },
207
+ {
208
+ "name": "symbols",
209
+ "id": "symbols",
210
+ "type": "Array",
211
+ "uiid": "38rbncxmzuo",
212
+ "items": {
213
+ "type": "Symbol"
214
+ }
215
+ },
216
+ {
217
+ "name": "birthday",
218
+ "id": "birthday",
219
+ "type": "Date",
220
+ "uiid": "41bdwbk06bk"
221
+ }
222
+ ],
223
+ "name": "Author",
224
+ "sys": {
225
+ "id": "5DSpuKrl04eMAGQoQckeIq",
226
+ "type": "ContentType",
227
+ "createdAt": "2014-07-30T12:35:01.110Z",
228
+ "createdBy": {
229
+ "sys": {
230
+ "type": "Link",
231
+ "linkType": "User",
232
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
233
+ }
234
+ },
235
+ "space": {
236
+ "sys": {
237
+ "type": "Link",
238
+ "linkType": "Space",
239
+ "id": "yr5m0jky5hsh"
240
+ }
241
+ },
242
+ "firstPublishedAt": "2014-07-30T12:37:42.035Z",
243
+ "publishedCounter": 6,
244
+ "publishedAt": "2014-07-30T14:58:40.786Z",
245
+ "publishedBy": {
246
+ "sys": {
247
+ "type": "Link",
248
+ "linkType": "User",
249
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
250
+ }
251
+ },
252
+ "publishedVersion": 177,
253
+ "version": 178,
254
+ "updatedAt": "2014-07-30T14:58:40.796Z",
255
+ "updatedBy": {
256
+ "sys": {
257
+ "type": "Link",
258
+ "linkType": "User",
259
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
260
+ }
261
+ }
262
+ },
263
+ "description": null,
264
+ "displayField": "name"
265
+ }
266
+ ]
267
+ }
268
+ http_version:
269
+ recorded_at: Thu, 31 Jul 2014 07:16:57 GMT
270
+ - request:
271
+ method: get
272
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets
273
+ body:
274
+ encoding: US-ASCII
275
+ string: ''
276
+ headers:
277
+ User-Agent:
278
+ - RubyContenfulManagementGem/0.0.1
279
+ Authorization:
280
+ - Bearer <ACCESS_TOKEN>
281
+ Content-Type:
282
+ - application/vnd.contentful.management.v1+json
283
+ Content-Length:
284
+ - '0'
285
+ Host:
286
+ - api.contentful.com
287
+ response:
288
+ status:
289
+ code: 200
290
+ message: OK
291
+ headers:
292
+ Server:
293
+ - nginx
294
+ Date:
295
+ - Thu, 31 Jul 2014 07:16:58 GMT
296
+ Content-Type:
297
+ - application/vnd.contentful.management.v1+json
298
+ Content-Length:
299
+ - '12428'
300
+ Connection:
301
+ - keep-alive
302
+ X-Powered-By:
303
+ - Express
304
+ Cf-Space-Id:
305
+ - yr5m0jky5hsh
306
+ Etag:
307
+ - '"fda9e99688760bfb9330028bffd6947b"'
308
+ Access-Control-Allow-Origin:
309
+ - "*"
310
+ Access-Control-Allow-Headers:
311
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
312
+ Access-Control-Allow-Methods:
313
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
314
+ "^access-Control-Expose-Headers":
315
+ - Etag
316
+ Access-Control-Max-Age:
317
+ - '1728000'
318
+ body:
319
+ encoding: UTF-8
320
+ string: |
321
+ {
322
+ "sys": {
323
+ "type": "Array"
324
+ },
325
+ "total": 10,
326
+ "skip": 0,
327
+ "limit": 100,
328
+ "items": [
329
+ {
330
+ "fields": {
331
+ "title": {
332
+ "en-US": "CodeQuest"
333
+ },
334
+ "description": {
335
+ "en-US": "Logo of Codequest"
336
+ },
337
+ "file": {
338
+ "en-US": {
339
+ "contentType": "image/jpeg",
340
+ "fileName": "codequest.jpg",
341
+ "details": {
342
+ "image": {
343
+ "width": 90,
344
+ "height": 90
345
+ },
346
+ "size": 7094
347
+ },
348
+ "url": "//images.contentful.com/yr5m0jky5hsh/4k8mYw2MzS6kYG0eGq0Yi0/e6cf326343b25955363ef0df00dca63c/codequest.jpg"
349
+ }
350
+ }
351
+ },
352
+ "sys": {
353
+ "id": "4k8mYw2MzS6kYG0eGq0Yi0",
354
+ "type": "Asset",
355
+ "createdAt": "2014-07-30T12:20:17.778Z",
356
+ "createdBy": {
357
+ "sys": {
358
+ "type": "Link",
359
+ "linkType": "User",
360
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
361
+ }
362
+ },
363
+ "space": {
364
+ "sys": {
365
+ "type": "Link",
366
+ "linkType": "Space",
367
+ "id": "yr5m0jky5hsh"
368
+ }
369
+ },
370
+ "version": 2,
371
+ "updatedAt": "2014-07-30T12:20:19.237Z",
372
+ "updatedBy": {
373
+ "sys": {
374
+ "type": "Link",
375
+ "linkType": "User",
376
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
377
+ }
378
+ }
379
+ }
380
+ },
381
+ {
382
+ "fields": {
383
+ "title": {
384
+ "en-US": "Dog photo"
385
+ },
386
+ "description": {
387
+ "en-US": "Photo of Dog"
388
+ },
389
+ "file": {
390
+ "en-US": {
391
+ "fileName": "piesel_tTWRRK8aCP,q250.jpg",
392
+ "contentType": "image/jpeg",
393
+ "details": {
394
+ "image": {
395
+ "width": 250,
396
+ "height": 250
397
+ },
398
+ "size": 22083
399
+ },
400
+ "url": "//images.contentful.com/yr5m0jky5hsh/6zEogZjpO8cq6YOOQigiAw/09037706e5c5e6c2b910f9a4160eb697/piesel_tTWRRK8aCP_q250.jpg"
401
+ }
402
+ }
403
+ },
404
+ "sys": {
405
+ "id": "6zEogZjpO8cq6YOOQigiAw",
406
+ "type": "Asset",
407
+ "createdAt": "2014-07-30T12:14:49.380Z",
408
+ "createdBy": {
409
+ "sys": {
410
+ "type": "Link",
411
+ "linkType": "User",
412
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
413
+ }
414
+ },
415
+ "space": {
416
+ "sys": {
417
+ "type": "Link",
418
+ "linkType": "Space",
419
+ "id": "yr5m0jky5hsh"
420
+ }
421
+ },
422
+ "version": 58,
423
+ "updatedAt": "2014-07-30T12:16:37.270Z",
424
+ "updatedBy": {
425
+ "sys": {
426
+ "type": "Link",
427
+ "linkType": "User",
428
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
429
+ }
430
+ }
431
+ }
432
+ },
433
+ {
434
+ "fields": {
435
+ "title": {
436
+ "en-US": "titlebyCreateAPI"
437
+ },
438
+ "description": {
439
+ "en-US": "descByAPI"
440
+ },
441
+ "file": {
442
+ "en-US": {
443
+ "contentType": "image/jpeg",
444
+ "fileName": "pic1.jpg",
445
+ "details": {
446
+ "image": {
447
+ "width": 1280,
448
+ "height": 1920
449
+ },
450
+ "size": 2584366
451
+ },
452
+ "url": "//images.contentful.com/yr5m0jky5hsh/4PuoXXjfkseW6AgsmWgsay/f7a78500b963590688785cb473d8e2ad/pic1.jpg"
453
+ }
454
+ }
455
+ },
456
+ "sys": {
457
+ "id": "4PuoXXjfkseW6AgsmWgsay",
458
+ "type": "Asset",
459
+ "createdAt": "2014-07-30T15:51:05.053Z",
460
+ "createdBy": {
461
+ "sys": {
462
+ "type": "Link",
463
+ "linkType": "User",
464
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
465
+ }
466
+ },
467
+ "space": {
468
+ "sys": {
469
+ "type": "Link",
470
+ "linkType": "Space",
471
+ "id": "yr5m0jky5hsh"
472
+ }
473
+ },
474
+ "version": 2,
475
+ "updatedAt": "2014-07-30T15:51:07.658Z",
476
+ "updatedBy": {
477
+ "sys": {
478
+ "type": "Link",
479
+ "linkType": "User",
480
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
481
+ }
482
+ }
483
+ }
484
+ },
485
+ {
486
+ "fields": {
487
+ "title": {
488
+ "en-US": "titlebyCreateAPI"
489
+ },
490
+ "description": {
491
+ "en-US": "descByAPI"
492
+ },
493
+ "file": {
494
+ "en-US": {
495
+ "contentType": "image/jpeg",
496
+ "fileName": "pic1.jpg",
497
+ "details": {
498
+ "image": {
499
+ "width": 1280,
500
+ "height": 1920
501
+ },
502
+ "size": 2584366
503
+ },
504
+ "url": "//images.contentful.com/yr5m0jky5hsh/3PYa73pXXiAmKqm8eu4qOS/33f8a874f270bc6d148cf4ab5f8117e6/pic1.jpg"
505
+ }
506
+ }
507
+ },
508
+ "sys": {
509
+ "id": "3PYa73pXXiAmKqm8eu4qOS",
510
+ "type": "Asset",
511
+ "createdAt": "2014-07-30T15:50:36.369Z",
512
+ "createdBy": {
513
+ "sys": {
514
+ "type": "Link",
515
+ "linkType": "User",
516
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
517
+ }
518
+ },
519
+ "space": {
520
+ "sys": {
521
+ "type": "Link",
522
+ "linkType": "Space",
523
+ "id": "yr5m0jky5hsh"
524
+ }
525
+ },
526
+ "version": 2,
527
+ "updatedAt": "2014-07-30T15:50:39.098Z",
528
+ "updatedBy": {
529
+ "sys": {
530
+ "type": "Link",
531
+ "linkType": "User",
532
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
533
+ }
534
+ }
535
+ }
536
+ },
537
+ {
538
+ "fields": {
539
+ "title": {
540
+ "en-US": "3242",
541
+ "pl-PL": "swerwer"
542
+ },
543
+ "description": {
544
+ "en-US": null
545
+ },
546
+ "file": {
547
+ "en-US": null
548
+ }
549
+ },
550
+ "sys": {
551
+ "id": "codequest_id_test_custom_id",
552
+ "type": "Asset",
553
+ "createdAt": "2014-07-30T13:24:53.570Z",
554
+ "createdBy": {
555
+ "sys": {
556
+ "type": "Link",
557
+ "linkType": "User",
558
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
559
+ }
560
+ },
561
+ "space": {
562
+ "sys": {
563
+ "type": "Link",
564
+ "linkType": "Space",
565
+ "id": "yr5m0jky5hsh"
566
+ }
567
+ },
568
+ "firstPublishedAt": "2014-07-30T15:09:52.708Z",
569
+ "publishedCounter": 3,
570
+ "publishedAt": "2014-07-30T15:18:11.105Z",
571
+ "publishedBy": {
572
+ "sys": {
573
+ "type": "Link",
574
+ "linkType": "User",
575
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
576
+ }
577
+ },
578
+ "publishedVersion": 10,
579
+ "version": 12,
580
+ "updatedAt": "2014-07-30T15:18:14.641Z",
581
+ "updatedBy": {
582
+ "sys": {
583
+ "type": "Link",
584
+ "linkType": "User",
585
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
586
+ }
587
+ }
588
+ }
589
+ },
590
+ {
591
+ "fields": {},
592
+ "sys": {
593
+ "id": "2hnzRwT8NmSe6OyceIcG46",
594
+ "type": "Asset",
595
+ "createdAt": "2014-07-30T15:45:52.771Z",
596
+ "createdBy": {
597
+ "sys": {
598
+ "type": "Link",
599
+ "linkType": "User",
600
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
601
+ }
602
+ },
603
+ "space": {
604
+ "sys": {
605
+ "type": "Link",
606
+ "linkType": "Space",
607
+ "id": "yr5m0jky5hsh"
608
+ }
609
+ },
610
+ "version": 1,
611
+ "updatedAt": "2014-07-30T15:45:52.774Z",
612
+ "updatedBy": {
613
+ "sys": {
614
+ "type": "Link",
615
+ "linkType": "User",
616
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
617
+ }
618
+ }
619
+ }
620
+ },
621
+ {
622
+ "fields": {
623
+ "title": {
624
+ "en-US": "titlebyCreateAPI"
625
+ },
626
+ "description": {
627
+ "en-US": "descByAPI"
628
+ },
629
+ "file": {
630
+ "en-US": {
631
+ "contentType": "image/jpeg",
632
+ "fileName": "pic1.jpg",
633
+ "details": {
634
+ "image": {
635
+ "width": 1280,
636
+ "height": 1920
637
+ },
638
+ "size": 2584366
639
+ },
640
+ "url": "//images.contentful.com/yr5m0jky5hsh/3znNnXEhK0GyUGYysOco00/976663f77ba565f85b72a0819d405b3e/pic1.jpg"
641
+ }
642
+ }
643
+ },
644
+ "sys": {
645
+ "id": "3znNnXEhK0GyUGYysOco00",
646
+ "type": "Asset",
647
+ "createdAt": "2014-07-30T15:51:59.929Z",
648
+ "createdBy": {
649
+ "sys": {
650
+ "type": "Link",
651
+ "linkType": "User",
652
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
653
+ }
654
+ },
655
+ "space": {
656
+ "sys": {
657
+ "type": "Link",
658
+ "linkType": "Space",
659
+ "id": "yr5m0jky5hsh"
660
+ }
661
+ },
662
+ "version": 2,
663
+ "updatedAt": "2014-07-30T15:52:02.081Z",
664
+ "updatedBy": {
665
+ "sys": {
666
+ "type": "Link",
667
+ "linkType": "User",
668
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
669
+ }
670
+ }
671
+ }
672
+ },
673
+ {
674
+ "fields": {
675
+ "title": {
676
+ "en-US": "titlebyCreateAPI"
677
+ },
678
+ "description": {
679
+ "en-US": "descByAPI"
680
+ },
681
+ "file": {
682
+ "en-US": {
683
+ "contentType": "image/jpeg",
684
+ "fileName": "pic1.jpg",
685
+ "details": {
686
+ "image": {
687
+ "width": 1280,
688
+ "height": 1920
689
+ },
690
+ "size": 2584366
691
+ },
692
+ "url": "//images.contentful.com/yr5m0jky5hsh/r7o2iuDeSc4UmioOuoKq6/10316969ea571137efb2819a08b440fd/pic1.jpg"
693
+ }
694
+ }
695
+ },
696
+ "sys": {
697
+ "id": "r7o2iuDeSc4UmioOuoKq6",
698
+ "type": "Asset",
699
+ "createdAt": "2014-07-30T15:51:16.500Z",
700
+ "createdBy": {
701
+ "sys": {
702
+ "type": "Link",
703
+ "linkType": "User",
704
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
705
+ }
706
+ },
707
+ "space": {
708
+ "sys": {
709
+ "type": "Link",
710
+ "linkType": "Space",
711
+ "id": "yr5m0jky5hsh"
712
+ }
713
+ },
714
+ "version": 2,
715
+ "updatedAt": "2014-07-30T15:51:18.639Z",
716
+ "updatedBy": {
717
+ "sys": {
718
+ "type": "Link",
719
+ "linkType": "User",
720
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
721
+ }
722
+ }
723
+ }
724
+ },
725
+ {
726
+ "fields": {
727
+ "title": {
728
+ "en-US": "titlebyCreateAPI"
729
+ },
730
+ "description": {
731
+ "en-US": "descByAPI"
732
+ },
733
+ "file": {
734
+ "en-US": {
735
+ "contentType": "image/jpeg",
736
+ "fileName": "pic1.jpg",
737
+ "upload": "https://upload.wikimedia.org/wikipedia/commons/c/c7/Gasometer_Berlin_Sch%C3%B6neberg_2011.jpg"
738
+ }
739
+ }
740
+ },
741
+ "sys": {
742
+ "id": "MthdSziJG0Gy4AAQmu0qU",
743
+ "type": "Asset",
744
+ "createdAt": "2014-07-30T15:52:57.452Z",
745
+ "createdBy": {
746
+ "sys": {
747
+ "type": "Link",
748
+ "linkType": "User",
749
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
750
+ }
751
+ },
752
+ "space": {
753
+ "sys": {
754
+ "type": "Link",
755
+ "linkType": "Space",
756
+ "id": "yr5m0jky5hsh"
757
+ }
758
+ },
759
+ "version": 1,
760
+ "updatedAt": "2014-07-30T15:52:57.456Z",
761
+ "updatedBy": {
762
+ "sys": {
763
+ "type": "Link",
764
+ "linkType": "User",
765
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
766
+ }
767
+ }
768
+ }
769
+ },
770
+ {
771
+ "fields": {
772
+ "title": {
773
+ "en-US": "titlebyCreateAPI"
774
+ },
775
+ "description": {
776
+ "en-US": "descByAPI"
777
+ },
778
+ "file": {
779
+ "en-US": {
780
+ "contentType": "image/jpeg",
781
+ "fileName": "pic1.jpg",
782
+ "details": {
783
+ "image": {
784
+ "width": 1280,
785
+ "height": 1920
786
+ },
787
+ "size": 2584366
788
+ },
789
+ "url": "//images.contentful.com/yr5m0jky5hsh/5FDqplZoruAUGmiSa02asE/f5cab89aa8f9d8ca2e520d63bc356ef9/pic1.jpg"
790
+ }
791
+ }
792
+ },
793
+ "sys": {
794
+ "id": "5FDqplZoruAUGmiSa02asE",
795
+ "type": "Asset",
796
+ "createdAt": "2014-07-31T06:31:03.919Z",
797
+ "createdBy": {
798
+ "sys": {
799
+ "type": "Link",
800
+ "linkType": "User",
801
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
802
+ }
803
+ },
804
+ "space": {
805
+ "sys": {
806
+ "type": "Link",
807
+ "linkType": "Space",
808
+ "id": "yr5m0jky5hsh"
809
+ }
810
+ },
811
+ "version": 2,
812
+ "updatedAt": "2014-07-31T06:31:04.930Z",
813
+ "updatedBy": {
814
+ "sys": {
815
+ "type": "Link",
816
+ "linkType": "User",
817
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
818
+ }
819
+ }
820
+ }
821
+ }
822
+ ]
823
+ }
824
+ http_version:
825
+ recorded_at: Thu, 31 Jul 2014 07:16:58 GMT
826
+ recorded_with: VCR 2.9.2