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,242 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets/35Kt2tInIsoauo8sC82q04
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
+ - Fri, 01 Aug 2014 12:09:20 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '1535'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"ab3669512da9946595f925ab881bc6af"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - 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
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": {
56
+ "title": {
57
+ "en-US": "Company logo",
58
+ "pl": "Firmowe logo"
59
+ },
60
+ "description": {
61
+ "en-US": "Company logo codequest",
62
+ "pl": "Logo firmy Codequest"
63
+ },
64
+ "file": {
65
+ "en-US": {
66
+ "contentType": "image/jpeg",
67
+ "fileName": "codequest.jpg",
68
+ "details": {
69
+ "image": {
70
+ "width": 90,
71
+ "height": 90
72
+ },
73
+ "size": 7094
74
+ },
75
+ "url": "//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/3c84f80a23e1f3ac7717a7a9be59e8d0/codequest.jpg"
76
+ },
77
+ "pl": {
78
+ "contentType": "image/jpeg",
79
+ "fileName": "codequest.jpg",
80
+ "details": {
81
+ "image": {
82
+ "width": 90,
83
+ "height": 90
84
+ },
85
+ "size": 7094
86
+ },
87
+ "url": "//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/96228bd042f66a29b071c047350d0f4e/codequest.jpg"
88
+ }
89
+ }
90
+ },
91
+ "sys": {
92
+ "id": "35Kt2tInIsoauo8sC82q04",
93
+ "type": "Asset",
94
+ "createdAt": "2014-07-31T12:57:45.481Z",
95
+ "createdBy": {
96
+ "sys": {
97
+ "type": "Link",
98
+ "linkType": "User",
99
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
100
+ }
101
+ },
102
+ "space": {
103
+ "sys": {
104
+ "type": "Link",
105
+ "linkType": "Space",
106
+ "id": "yr5m0jky5hsh"
107
+ }
108
+ },
109
+ "version": 3,
110
+ "updatedAt": "2014-07-31T12:57:47.041Z",
111
+ "updatedBy": {
112
+ "sys": {
113
+ "type": "Link",
114
+ "linkType": "User",
115
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
116
+ }
117
+ }
118
+ }
119
+ }
120
+ http_version:
121
+ recorded_at: Fri, 01 Aug 2014 12:09:20 GMT
122
+ - request:
123
+ method: put
124
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets/35Kt2tInIsoauo8sC82q04
125
+ body:
126
+ encoding: UTF-8
127
+ string: '{"fields":{"title":{"en-US":"Company logo","pl":"Firmowe logo"},"description":{"en-US":"Firmowe
128
+ logo.","pl":"Logo firmy Codequest"},"file":{"en-US":{"fileName":"codequest.jpg","contentType":"image/jpeg","details":{"image":{"width":90,"height":90},"size":7094},"url":"//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/3c84f80a23e1f3ac7717a7a9be59e8d0/codequest.jpg"},"pl":{"fileName":"codequest.jpg","contentType":"image/jpeg","details":{"image":{"width":90,"height":90},"size":7094},"url":"//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/96228bd042f66a29b071c047350d0f4e/codequest.jpg"}}}}'
129
+ headers:
130
+ User-Agent:
131
+ - RubyContenfulManagementGem/0.0.1
132
+ Authorization:
133
+ - Bearer <ACCESS_TOKEN>
134
+ Content-Type:
135
+ - application/vnd.contentful.management.v1+json
136
+ X-Contentful-Version:
137
+ - '3'
138
+ Host:
139
+ - api.contentful.com
140
+ response:
141
+ status:
142
+ code: 200
143
+ message: OK
144
+ headers:
145
+ Server:
146
+ - nginx
147
+ Date:
148
+ - Fri, 01 Aug 2014 12:09:21 GMT
149
+ Content-Type:
150
+ - application/vnd.contentful.management.v1+json
151
+ Content-Length:
152
+ - '1526'
153
+ Connection:
154
+ - keep-alive
155
+ X-Powered-By:
156
+ - Express
157
+ Cf-Space-Id:
158
+ - yr5m0jky5hsh
159
+ Etag:
160
+ - '"8d3ae2444136a5287517c091146a9185"'
161
+ Access-Control-Allow-Origin:
162
+ - "*"
163
+ Access-Control-Allow-Headers:
164
+ - 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
165
+ Access-Control-Allow-Methods:
166
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
167
+ "^access-Control-Expose-Headers":
168
+ - Etag
169
+ Access-Control-Max-Age:
170
+ - '1728000'
171
+ body:
172
+ encoding: UTF-8
173
+ string: |
174
+ {
175
+ "fields": {
176
+ "title": {
177
+ "en-US": "Company logo",
178
+ "pl": "Firmowe logo"
179
+ },
180
+ "description": {
181
+ "en-US": "Firmowe logo.",
182
+ "pl": "Logo firmy Codequest"
183
+ },
184
+ "file": {
185
+ "en-US": {
186
+ "fileName": "codequest.jpg",
187
+ "contentType": "image/jpeg",
188
+ "details": {
189
+ "image": {
190
+ "width": 90,
191
+ "height": 90
192
+ },
193
+ "size": 7094
194
+ },
195
+ "url": "//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/3c84f80a23e1f3ac7717a7a9be59e8d0/codequest.jpg"
196
+ },
197
+ "pl": {
198
+ "fileName": "codequest.jpg",
199
+ "contentType": "image/jpeg",
200
+ "details": {
201
+ "image": {
202
+ "width": 90,
203
+ "height": 90
204
+ },
205
+ "size": 7094
206
+ },
207
+ "url": "//images.contentful.com/yr5m0jky5hsh/35Kt2tInIsoauo8sC82q04/96228bd042f66a29b071c047350d0f4e/codequest.jpg"
208
+ }
209
+ }
210
+ },
211
+ "sys": {
212
+ "id": "35Kt2tInIsoauo8sC82q04",
213
+ "type": "Asset",
214
+ "createdAt": "2014-07-31T12:57:45.481Z",
215
+ "createdBy": {
216
+ "sys": {
217
+ "type": "Link",
218
+ "linkType": "User",
219
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
220
+ }
221
+ },
222
+ "space": {
223
+ "sys": {
224
+ "type": "Link",
225
+ "linkType": "Space",
226
+ "id": "yr5m0jky5hsh"
227
+ }
228
+ },
229
+ "version": 4,
230
+ "updatedAt": "2014-08-01T12:09:21.351Z",
231
+ "updatedBy": {
232
+ "sys": {
233
+ "type": "Link",
234
+ "linkType": "User",
235
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
236
+ }
237
+ }
238
+ }
239
+ }
240
+ http_version:
241
+ recorded_at: Fri, 01 Aug 2014 12:09:21 GMT
242
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,110 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets/5FDqplZoruAUGmiSa02asE
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:37:10 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '1179'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"e360d0b178e3a8f393adc695eb23f816"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - 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
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": {
56
+ "title": {
57
+ "en-US": "titlebyCreateAPI"
58
+ },
59
+ "description": {
60
+ "en-US": "descByAPI"
61
+ },
62
+ "file": {
63
+ "en-US": {
64
+ "contentType": "image/jpeg",
65
+ "fileName": "pic1.jpg",
66
+ "details": {
67
+ "image": {
68
+ "width": 1280,
69
+ "height": 1920
70
+ },
71
+ "size": 2584366
72
+ },
73
+ "url": "//images.contentful.com/yr5m0jky5hsh/5FDqplZoruAUGmiSa02asE/f5cab89aa8f9d8ca2e520d63bc356ef9/pic1.jpg"
74
+ }
75
+ }
76
+ },
77
+ "sys": {
78
+ "id": "5FDqplZoruAUGmiSa02asE",
79
+ "type": "Asset",
80
+ "createdAt": "2014-07-31T06:31:03.919Z",
81
+ "createdBy": {
82
+ "sys": {
83
+ "type": "Link",
84
+ "linkType": "User",
85
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
86
+ }
87
+ },
88
+ "space": {
89
+ "sys": {
90
+ "type": "Link",
91
+ "linkType": "Space",
92
+ "id": "yr5m0jky5hsh"
93
+ }
94
+ },
95
+ "firstPublishedAt": "2014-07-31T07:29:12.424Z",
96
+ "publishedCounter": 3,
97
+ "version": 14,
98
+ "updatedAt": "2014-07-31T07:35:35.531Z",
99
+ "updatedBy": {
100
+ "sys": {
101
+ "type": "Link",
102
+ "linkType": "User",
103
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
104
+ }
105
+ }
106
+ }
107
+ }
108
+ http_version:
109
+ recorded_at: Thu, 31 Jul 2014 07:37:10 GMT
110
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,228 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets/5FDqplZoruAUGmiSa02asE
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:32:58 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '1391'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"a6a34eee3dd7148ea7082b39627284da"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - 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
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": {
56
+ "title": {
57
+ "en-US": "titlebyCreateAPI"
58
+ },
59
+ "description": {
60
+ "en-US": "descByAPI"
61
+ },
62
+ "file": {
63
+ "en-US": {
64
+ "contentType": "image/jpeg",
65
+ "fileName": "pic1.jpg",
66
+ "details": {
67
+ "image": {
68
+ "width": 1280,
69
+ "height": 1920
70
+ },
71
+ "size": 2584366
72
+ },
73
+ "url": "//images.contentful.com/yr5m0jky5hsh/5FDqplZoruAUGmiSa02asE/f5cab89aa8f9d8ca2e520d63bc356ef9/pic1.jpg"
74
+ }
75
+ }
76
+ },
77
+ "sys": {
78
+ "id": "5FDqplZoruAUGmiSa02asE",
79
+ "type": "Asset",
80
+ "createdAt": "2014-07-31T06:31:03.919Z",
81
+ "createdBy": {
82
+ "sys": {
83
+ "type": "Link",
84
+ "linkType": "User",
85
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
86
+ }
87
+ },
88
+ "space": {
89
+ "sys": {
90
+ "type": "Link",
91
+ "linkType": "Space",
92
+ "id": "yr5m0jky5hsh"
93
+ }
94
+ },
95
+ "firstPublishedAt": "2014-07-31T07:29:12.424Z",
96
+ "publishedCounter": 2,
97
+ "archivedAt": "2014-07-31T07:32:52.274Z",
98
+ "archivedBy": {
99
+ "sys": {
100
+ "type": "Link",
101
+ "linkType": "User",
102
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
103
+ }
104
+ },
105
+ "archivedVersion": 6,
106
+ "version": 7,
107
+ "updatedAt": "2014-07-31T07:32:52.277Z",
108
+ "updatedBy": {
109
+ "sys": {
110
+ "type": "Link",
111
+ "linkType": "User",
112
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
113
+ }
114
+ }
115
+ }
116
+ }
117
+ http_version:
118
+ recorded_at: Thu, 31 Jul 2014 07:32:58 GMT
119
+ - request:
120
+ method: delete
121
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/assets/5FDqplZoruAUGmiSa02asE/archived
122
+ body:
123
+ encoding: US-ASCII
124
+ string: ''
125
+ headers:
126
+ User-Agent:
127
+ - RubyContenfulManagementGem/0.0.1
128
+ Authorization:
129
+ - Bearer <ACCESS_TOKEN>
130
+ Content-Type:
131
+ - application/vnd.contentful.management.v1+json
132
+ X-Contentful-Version:
133
+ - '7'
134
+ Content-Length:
135
+ - '0'
136
+ Host:
137
+ - api.contentful.com
138
+ response:
139
+ status:
140
+ code: 200
141
+ message: OK
142
+ headers:
143
+ Server:
144
+ - nginx
145
+ Date:
146
+ - Thu, 31 Jul 2014 07:32:59 GMT
147
+ Content-Type:
148
+ - application/vnd.contentful.management.v1+json
149
+ Content-Length:
150
+ - '1178'
151
+ Connection:
152
+ - keep-alive
153
+ X-Powered-By:
154
+ - Express
155
+ Cf-Space-Id:
156
+ - yr5m0jky5hsh
157
+ Etag:
158
+ - '"f00fe5b1513980e1a85e740b31bd6471"'
159
+ Access-Control-Allow-Origin:
160
+ - "*"
161
+ Access-Control-Allow-Headers:
162
+ - 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
163
+ Access-Control-Allow-Methods:
164
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
165
+ "^access-Control-Expose-Headers":
166
+ - Etag
167
+ Access-Control-Max-Age:
168
+ - '1728000'
169
+ body:
170
+ encoding: UTF-8
171
+ string: |
172
+ {
173
+ "fields": {
174
+ "title": {
175
+ "en-US": "titlebyCreateAPI"
176
+ },
177
+ "description": {
178
+ "en-US": "descByAPI"
179
+ },
180
+ "file": {
181
+ "en-US": {
182
+ "contentType": "image/jpeg",
183
+ "fileName": "pic1.jpg",
184
+ "details": {
185
+ "image": {
186
+ "width": 1280,
187
+ "height": 1920
188
+ },
189
+ "size": 2584366
190
+ },
191
+ "url": "//images.contentful.com/yr5m0jky5hsh/5FDqplZoruAUGmiSa02asE/f5cab89aa8f9d8ca2e520d63bc356ef9/pic1.jpg"
192
+ }
193
+ }
194
+ },
195
+ "sys": {
196
+ "id": "5FDqplZoruAUGmiSa02asE",
197
+ "type": "Asset",
198
+ "createdAt": "2014-07-31T06:31:03.919Z",
199
+ "createdBy": {
200
+ "sys": {
201
+ "type": "Link",
202
+ "linkType": "User",
203
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
204
+ }
205
+ },
206
+ "space": {
207
+ "sys": {
208
+ "type": "Link",
209
+ "linkType": "Space",
210
+ "id": "yr5m0jky5hsh"
211
+ }
212
+ },
213
+ "firstPublishedAt": "2014-07-31T07:29:12.424Z",
214
+ "publishedCounter": 2,
215
+ "version": 8,
216
+ "updatedAt": "2014-07-31T07:32:59.418Z",
217
+ "updatedBy": {
218
+ "sys": {
219
+ "type": "Link",
220
+ "linkType": "User",
221
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
222
+ }
223
+ }
224
+ }
225
+ }
226
+ http_version:
227
+ recorded_at: Thu, 31 Jul 2014 07:32:59 GMT
228
+ recorded_with: VCR 2.9.2