uploadcare-rails 1.2.0.pre.alpha3 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +5 -16
  3. data/lib/generators/templates/uploadcare_config_template.erb +138 -0
  4. data/lib/generators/uploadcare_config_generator.rb +7 -4
  5. data/lib/uploadcare/errors/type_error.rb +7 -0
  6. data/lib/uploadcare/rails/action_view/uploadcare_include_tags.rb +48 -0
  7. data/lib/uploadcare/rails/action_view/uploadcare_uploader_tags.rb +57 -0
  8. data/lib/uploadcare/rails/active_record/mount_uploadcare_file.rb +62 -0
  9. data/lib/uploadcare/rails/active_record/mount_uploadcare_file_group.rb +58 -0
  10. data/lib/uploadcare/rails/api/rest/base.rb +14 -0
  11. data/lib/uploadcare/rails/api/rest/conversion_api.rb +42 -0
  12. data/lib/uploadcare/rails/api/rest/file_api.rb +69 -0
  13. data/lib/uploadcare/rails/api/rest/group_api.rb +48 -0
  14. data/lib/uploadcare/rails/api/rest/project_api.rb +27 -0
  15. data/lib/uploadcare/rails/api/rest/webhook_api.rb +45 -0
  16. data/lib/uploadcare/rails/api/upload/base.rb +13 -0
  17. data/lib/uploadcare/rails/api/upload/upload_api.rb +53 -0
  18. data/lib/uploadcare/rails/configuration.rb +57 -0
  19. data/lib/uploadcare/rails/engine.rb +13 -17
  20. data/lib/uploadcare/rails/jobs/delete_file_job.rb +14 -0
  21. data/lib/uploadcare/rails/jobs/store_file_job.rb +14 -0
  22. data/lib/uploadcare/rails/jobs/store_group_job.rb +14 -0
  23. data/lib/uploadcare/rails/objects/concerns/loadable.rb +46 -0
  24. data/lib/uploadcare/rails/objects/file.rb +40 -20
  25. data/lib/uploadcare/rails/objects/group.rb +51 -57
  26. data/lib/uploadcare/rails/services/files_count_extractor.rb +14 -0
  27. data/lib/uploadcare/rails/services/id_extractor.rb +15 -0
  28. data/lib/uploadcare/rails/transformations/image_transformations.rb +45 -0
  29. data/lib/uploadcare/rails/version.rb +3 -1
  30. data/lib/uploadcare/rails.rb +10 -0
  31. data/lib/uploadcare-rails.rb +27 -16
  32. data/spec/fixtures/kitten.jpeg +0 -0
  33. data/spec/fixtures/vcr_cassettes/conversion_api_convert_document.yml +62 -0
  34. data/spec/fixtures/vcr_cassettes/conversion_api_convert_document_with_error.yml +62 -0
  35. data/spec/fixtures/vcr_cassettes/conversion_api_convert_video.yml +62 -0
  36. data/spec/fixtures/vcr_cassettes/conversion_api_convert_video_with_error.yml +62 -0
  37. data/spec/fixtures/vcr_cassettes/conversion_api_get_document_conversion_status.yml +59 -0
  38. data/spec/fixtures/vcr_cassettes/conversion_api_get_video_conversion_status.yml +59 -0
  39. data/spec/fixtures/vcr_cassettes/file_api_copy_file.yml +60 -0
  40. data/spec/fixtures/vcr_cassettes/file_api_delete_file.yml +58 -0
  41. data/spec/fixtures/vcr_cassettes/file_api_delete_files.yml +58 -0
  42. data/spec/fixtures/vcr_cassettes/file_api_get_file.yml +58 -0
  43. data/spec/fixtures/vcr_cassettes/file_api_get_files.yml +61 -0
  44. data/spec/fixtures/vcr_cassettes/file_api_load_file.yml +57 -0
  45. data/spec/fixtures/vcr_cassettes/file_api_store_file.yml +58 -0
  46. data/spec/fixtures/vcr_cassettes/file_api_store_files.yml +57 -0
  47. data/spec/fixtures/vcr_cassettes/group_api_create_group.yml +57 -0
  48. data/spec/fixtures/vcr_cassettes/group_api_get_group.yml +52 -0
  49. data/spec/fixtures/vcr_cassettes/group_api_get_groups.yml +57 -0
  50. data/spec/fixtures/vcr_cassettes/group_api_store_group.yml +57 -0
  51. data/spec/fixtures/vcr_cassettes/project_api_get_project.yml +59 -0
  52. data/spec/fixtures/vcr_cassettes/upload_upload_many_files.yml +55 -0
  53. data/spec/fixtures/vcr_cassettes/upload_upload_one_file.yml +105 -0
  54. data/spec/fixtures/vcr_cassettes/upload_upload_one_file_from_cdn.yml +111 -0
  55. data/spec/fixtures/vcr_cassettes/webhook_api_create_webhook.yml +59 -0
  56. data/spec/fixtures/vcr_cassettes/webhook_api_delete_webhook.yml +57 -0
  57. data/spec/fixtures/vcr_cassettes/webhook_api_get_webhooks.yml +59 -0
  58. data/spec/fixtures/vcr_cassettes/webhook_api_update_webhook.yml +59 -0
  59. data/spec/generators/uploadcare_config_generator_spec.rb +18 -26
  60. data/spec/spec_helper.rb +17 -62
  61. data/spec/support/generators.rb +8 -5
  62. data/spec/support/vcr.rb +14 -0
  63. data/spec/uploadcare/rails/action_view/uploadcare_uploader_tags_spec.rb +40 -0
  64. data/spec/uploadcare/rails/action_view/uploadcare_widget_tags_spec.rb +46 -0
  65. data/spec/uploadcare/rails/active_record/mount_uploadcare_file_spec.rb +33 -0
  66. data/spec/uploadcare/rails/active_record/mount_uploadcare_group_spec.rb +32 -0
  67. data/spec/uploadcare/rails/api/rest/conversion_api_spec.rb +110 -0
  68. data/spec/uploadcare/rails/api/rest/file_api_spec.rb +85 -0
  69. data/spec/uploadcare/rails/api/rest/group_api_spec.rb +61 -0
  70. data/spec/uploadcare/rails/api/rest/project_api_spec.rb +33 -0
  71. data/spec/uploadcare/rails/api/rest/webhook_api_spec.rb +67 -0
  72. data/spec/uploadcare/rails/api/upload/upload_api_spec.rb +82 -0
  73. data/spec/uploadcare/rails/jobs/delete_file_job_spec.rb +15 -0
  74. data/spec/uploadcare/rails/jobs/store_file_job_spec.rb +15 -0
  75. data/spec/uploadcare/rails/jobs/store_group_job_spec.rb +15 -0
  76. data/spec/uploadcare/rails/objects/file_spec.rb +77 -0
  77. data/spec/uploadcare/rails/objects/group_spec.rb +87 -0
  78. data/spec/uploadcare/rails/services/id_extractor_spec.rb +26 -0
  79. data/spec/uploadcare/rails/transformations/image_transformations_spec.rb +120 -0
  80. data/spec/uploadcare/rails_spec.rb +7 -0
  81. metadata +129 -393
  82. data/config/initializers/uploadcare.rb +0 -26
  83. data/config/uploadcare_defaults.yml +0 -12
  84. data/lib/generators/templates/uploadcare_config_template.yml +0 -71
  85. data/lib/tasks/uploadcare_rails_tasks.rake +0 -4
  86. data/lib/uploadcare/rails/action_view/include_tags.rb +0 -47
  87. data/lib/uploadcare/rails/action_view/uploader_tags.rb +0 -76
  88. data/lib/uploadcare/rails/active_record/has_file.rb +0 -89
  89. data/lib/uploadcare/rails/active_record/has_group.rb +0 -84
  90. data/lib/uploadcare/rails/active_record/has_object.rb +0 -9
  91. data/lib/uploadcare/rails/formtastic/formtastic.rb +0 -73
  92. data/lib/uploadcare/rails/operations.rb +0 -57
  93. data/lib/uploadcare/rails/settings.rb +0 -81
  94. data/lib/uploadcare/rails/simple_form/simple_form.rb +0 -63
  95. data/spec/caching/file_caching_spec.rb +0 -26
  96. data/spec/caching/group_caching_spec.rb +0 -40
  97. data/spec/cassettes/Uploadcare_Rails_File/should_load_itself.yml +0 -263
  98. data/spec/cassettes/Uploadcare_Rails_Group/group_should_stay_loaded.yml +0 -263
  99. data/spec/cassettes/Uploadcare_Rails_Group/rails_cache_should_updates_after_load_call.yml +0 -263
  100. data/spec/cassettes/group_cahsing_file_load.yml +0 -263
  101. data/spec/cassettes/has_uploadcare_file/object_with_uploadcare_file/deletes_file_after_destroy.yml +0 -1763
  102. data/spec/cassettes/has_uploadcare_file/object_with_uploadcare_file/stores_file_after_save.yml +0 -543
  103. data/spec/cassettes/has_uploadcare_group/object_attachment/contains_files_inside.yml +0 -679
  104. data/spec/cassettes/has_uploadcare_group_save.yml +0 -705
  105. data/spec/cassettes/load_group.yml +0 -263
  106. data/spec/dummy/README.rdoc +0 -28
  107. data/spec/dummy/Rakefile +0 -6
  108. data/spec/dummy/app/assets/javascripts/application.js +0 -13
  109. data/spec/dummy/app/assets/javascripts/post_with_collections.js +0 -2
  110. data/spec/dummy/app/assets/javascripts/posts.js +0 -2
  111. data/spec/dummy/app/assets/javascripts/posts_with_collection_and_files.js +0 -2
  112. data/spec/dummy/app/assets/stylesheets/application.css +0 -13
  113. data/spec/dummy/app/assets/stylesheets/post_with_collections.css +0 -4
  114. data/spec/dummy/app/assets/stylesheets/posts.css +0 -4
  115. data/spec/dummy/app/assets/stylesheets/posts_with_collection_and_files.css +0 -4
  116. data/spec/dummy/app/assets/stylesheets/scaffold.css +0 -56
  117. data/spec/dummy/app/controllers/application_controller.rb +0 -5
  118. data/spec/dummy/app/controllers/post_with_collections_controller.rb +0 -58
  119. data/spec/dummy/app/controllers/posts_controller.rb +0 -58
  120. data/spec/dummy/app/controllers/posts_with_collection_and_files_controller.rb +0 -58
  121. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  122. data/spec/dummy/app/helpers/post_with_collections_helper.rb +0 -2
  123. data/spec/dummy/app/helpers/posts_helper.rb +0 -2
  124. data/spec/dummy/app/helpers/posts_with_collection_and_files_helper.rb +0 -2
  125. data/spec/dummy/app/models/post.rb +0 -3
  126. data/spec/dummy/app/models/post_with_collection.rb +0 -3
  127. data/spec/dummy/app/models/posts_with_collection_and_file.rb +0 -4
  128. data/spec/dummy/app/views/layouts/application.html.erb +0 -16
  129. data/spec/dummy/app/views/post_with_collections/_form.html.erb +0 -25
  130. data/spec/dummy/app/views/post_with_collections/edit.html.erb +0 -6
  131. data/spec/dummy/app/views/post_with_collections/index.html.erb +0 -29
  132. data/spec/dummy/app/views/post_with_collections/new.html.erb +0 -5
  133. data/spec/dummy/app/views/post_with_collections/show.html.erb +0 -14
  134. data/spec/dummy/app/views/post_with_collections/show.json.jbuilder +0 -1
  135. data/spec/dummy/app/views/posts/_form.html.erb +0 -31
  136. data/spec/dummy/app/views/posts/edit.html.erb +0 -6
  137. data/spec/dummy/app/views/posts/index.html.erb +0 -37
  138. data/spec/dummy/app/views/posts/new.html.erb +0 -5
  139. data/spec/dummy/app/views/posts/post.json.builder +0 -1
  140. data/spec/dummy/app/views/posts/show.html.erb +0 -15
  141. data/spec/dummy/app/views/posts_with_collection_and_files/_form.html.erb +0 -27
  142. data/spec/dummy/app/views/posts_with_collection_and_files/edit.html.erb +0 -6
  143. data/spec/dummy/app/views/posts_with_collection_and_files/index.html.erb +0 -25
  144. data/spec/dummy/app/views/posts_with_collection_and_files/new.html.erb +0 -5
  145. data/spec/dummy/app/views/posts_with_collection_and_files/show.html.erb +0 -4
  146. data/spec/dummy/app/views/posts_with_collection_and_files/show.json.jbuilder +0 -1
  147. data/spec/dummy/bin/bundle +0 -3
  148. data/spec/dummy/bin/rails +0 -4
  149. data/spec/dummy/bin/rake +0 -4
  150. data/spec/dummy/config/application.rb +0 -23
  151. data/spec/dummy/config/boot.rb +0 -5
  152. data/spec/dummy/config/database.yml +0 -25
  153. data/spec/dummy/config/environment.rb +0 -5
  154. data/spec/dummy/config/environments/development.rb +0 -29
  155. data/spec/dummy/config/environments/production.rb +0 -80
  156. data/spec/dummy/config/environments/test.rb +0 -36
  157. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  158. data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  159. data/spec/dummy/config/initializers/formtastic.rb +0 -111
  160. data/spec/dummy/config/initializers/inflections.rb +0 -16
  161. data/spec/dummy/config/initializers/mime_types.rb +0 -5
  162. data/spec/dummy/config/initializers/secret_token.rb +0 -12
  163. data/spec/dummy/config/initializers/session_store.rb +0 -3
  164. data/spec/dummy/config/initializers/simple_form.rb +0 -167
  165. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  166. data/spec/dummy/config/locales/en.yml +0 -23
  167. data/spec/dummy/config/locales/simple_form.en.yml +0 -31
  168. data/spec/dummy/config/routes.rb +0 -63
  169. data/spec/dummy/config/uploadcare.yml +0 -68
  170. data/spec/dummy/config.ru +0 -4
  171. data/spec/dummy/db/migrate/20171012001801_create_tables.rb +0 -27
  172. data/spec/dummy/db/schema.rb +0 -37
  173. data/spec/dummy/db/test.sqlite3 +0 -0
  174. data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +0 -13
  175. data/spec/dummy/log/development.log +0 -0
  176. data/spec/dummy/log/test.log +0 -3276
  177. data/spec/dummy/public/404.html +0 -58
  178. data/spec/dummy/public/422.html +0 -58
  179. data/spec/dummy/public/500.html +0 -57
  180. data/spec/dummy/public/favicon.ico +0 -0
  181. data/spec/dummy/tmp/cache/293/091/https%3A%2F%2Fucarecdn.com%2F19073296-2315-4726-817b-46398b2c7431%7E2%2F +0 -0
  182. data/spec/dummy/tmp/cache/2AF/761/https%3A%2F%2Fucarecdn.com%2F595319d0-a113-459f-91bd-b29c7183467b%2F +0 -0
  183. data/spec/dummy/tmp/cache/301/D41/https%3A%2F%2Fucarecdn.com%2F81332043-fa2c-452f-936b-737d87ab2ae2%2F +0 -0
  184. data/spec/dummy/tmp/cache/30A/7C1/https%3A%2F%2Fucarecdn.com%2F39b34128-a001-46fd-9773-1b6ad46e6b9e%2F +0 -0
  185. data/spec/dummy/tmp/cache/340/A41/https%3A%2F%2Fucarecdn.com%2F090bcb5f-6d19-456c-b4a3-d753e690926f%2F +0 -0
  186. data/spec/dummy/tmp/cache/3AB/5A1/https%3A%2F%2Fucarecdn.com%2F7eb0161b-cebe-4316-946b-694de6f77ef9%2F +0 -0
  187. data/spec/dummy/tmp/cache/3FC/5C1/https%3A%2F%2Fucarecdn.com%2Fc3f0464b-ce9a-4281-8eaa-5c55783ccedf%2F +0 -0
  188. data/spec/dummy/tmp/cache/431/5C1/https%3A%2F%2Fucarecdn.com%2Fa1b1bb40-bd89-4f9c-b809-e84920f24a01%7E2%2F +0 -0
  189. data/spec/dummy/tmp/cache/44B/7A1/https%3A%2F%2Fucarecdn.com%2Fd6c785a8-9761-4602-88de-65ddb04ddc6a%7E2%2F +0 -0
  190. data/spec/dummy/tmp/cache/45B/F31/https%3A%2F%2Fucarecdn.com%2F73e3cdbc-6495-4cf2-bbd1-413e6cb70004%7E2%2F +0 -0
  191. data/spec/dummy/tmp/cache/461/AA1/https%3A%2F%2Fucarecdn.com%2Fc50e9a53-0b95-48ac-a4a9-6744052dbdab%7E2%2F +0 -0
  192. data/spec/helpers/form_helpers_has_file_spec.rb +0 -30
  193. data/spec/helpers/form_helpers_has_group_spec.rb +0 -30
  194. data/spec/helpers/form_helpers_spec.rb +0 -33
  195. data/spec/helpers/formtastic_spec.rb +0 -25
  196. data/spec/helpers/include_tags_spec.rb +0 -54
  197. data/spec/helpers/simple_form_spec.rb +0 -25
  198. data/spec/helpers/uploader_tags_spec.rb +0 -21
  199. data/spec/models/has_both_file_and_group_spec.rb +0 -43
  200. data/spec/models/has_file_spec.rb +0 -46
  201. data/spec/models/has_group_spec.rb +0 -57
  202. data/spec/objects/file_spec.rb +0 -27
  203. data/spec/objects/group_spec.rb +0 -51
  204. data/spec/operations_spec.rb +0 -28
  205. data/spec/tmp/config/uploadcare.yml +0 -71
  206. data/spec/uploadcare/rails/settings_spec.rb +0 -136
  207. data/spec/uploadcare_rails_settings_spec.rb +0 -56
  208. data/spec/view.png +0 -0
  209. data/spec/view2.jpg +0 -0
@@ -1,679 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.uploadcare.com/groups/a1b1bb40-bd89-4f9c-b809-e84920f24a01~2/
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/vnd.uploadcare-v0.3+json
12
- User-Agent:
13
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
14
- Date:
15
- - Sat, 21 Oct 2017 13:40:35 -0000
16
- Authorization:
17
- - Uploadcare demopublickey:a498218dcac8ba412e871af54b341b0722e8c86d
18
- Accept-Encoding:
19
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
- response:
21
- status:
22
- code: 200
23
- message: OK
24
- headers:
25
- Date:
26
- - Sat, 21 Oct 2017 13:40:35 GMT
27
- Content-Type:
28
- - application/vnd.uploadcare-v0.3+json
29
- Transfer-Encoding:
30
- - chunked
31
- Connection:
32
- - keep-alive
33
- Server:
34
- - nginx
35
- X-Xss-Protection:
36
- - 1; mode=block
37
- X-Content-Type-Options:
38
- - nosniff
39
- Vary:
40
- - Accept
41
- Warning:
42
- - '199 Miscellaneous warning: You are using the demo account; Please use API
43
- version 0.5, not 0.3'
44
- Allow:
45
- - GET, HEAD, OPTIONS
46
- Access-Control-Allow-Origin:
47
- - https://uploadcare.com
48
- X-Frame-Options:
49
- - DENY
50
- body:
51
- encoding: UTF-8
52
- string: '{"id":"a1b1bb40-bd89-4f9c-b809-e84920f24a01~2","datetime_created":"2017-10-21T13:40:29.035828Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/a1b1bb40-bd89-4f9c-b809-e84920f24a01~2/","url":"https://api.uploadcare.com/groups/a1b1bb40-bd89-4f9c-b809-e84920f24a01~2/","files":[{"uuid":"83ce550d-f67e-4c1a-a4da-3d550224a8a5","original_file_url":"https://ucarecdn.com/83ce550d-f67e-4c1a-a4da-3d550224a8a5/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/83ce550d-f67e-4c1a-a4da-3d550224a8a5/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-21T13:40:28.343956Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"8bd4d6b5-e844-42a7-b2b1-8814aa4ca713","original_file_url":"https://ucarecdn.com/8bd4d6b5-e844-42a7-b2b1-8814aa4ca713/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/8bd4d6b5-e844-42a7-b2b1-8814aa4ca713/","original_filename":"view.png","datetime_uploaded":"2017-10-21T13:40:28.362231Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
53
- http_version:
54
- recorded_at: Sat, 21 Oct 2017 13:40:35 GMT
55
- - request:
56
- method: get
57
- uri: https://api.uploadcare.com/groups/79463a55-f7ab-4972-8d94-679c96a027a7~2/
58
- body:
59
- encoding: US-ASCII
60
- string: ''
61
- headers:
62
- Accept:
63
- - application/vnd.uploadcare-v0.3+json
64
- User-Agent:
65
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
66
- Date:
67
- - Sun, 29 Oct 2017 17:04:29 -0000
68
- Authorization:
69
- - Uploadcare demopublickey:e18ec84422895cadd13e844171158d5314960317
70
- Accept-Encoding:
71
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
72
- response:
73
- status:
74
- code: 200
75
- message: OK
76
- headers:
77
- Date:
78
- - Sun, 29 Oct 2017 17:04:30 GMT
79
- Content-Type:
80
- - application/vnd.uploadcare-v0.3+json
81
- Transfer-Encoding:
82
- - chunked
83
- Connection:
84
- - keep-alive
85
- Server:
86
- - nginx
87
- X-Xss-Protection:
88
- - 1; mode=block
89
- X-Content-Type-Options:
90
- - nosniff
91
- Vary:
92
- - Accept
93
- Warning:
94
- - '199 Miscellaneous warning: You are using the demo account; Please use API
95
- version 0.5, not 0.3'
96
- Allow:
97
- - GET, HEAD, OPTIONS
98
- Access-Control-Allow-Origin:
99
- - https://uploadcare.com
100
- X-Frame-Options:
101
- - DENY
102
- body:
103
- encoding: UTF-8
104
- string: '{"id":"79463a55-f7ab-4972-8d94-679c96a027a7~2","datetime_created":"2017-10-29T17:04:28.886711Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/79463a55-f7ab-4972-8d94-679c96a027a7~2/","url":"https://api.uploadcare.com/groups/79463a55-f7ab-4972-8d94-679c96a027a7~2/","files":[{"uuid":"13ffdae7-efaf-4704-903c-b7d221560068","original_file_url":"https://ucarecdn.com/13ffdae7-efaf-4704-903c-b7d221560068/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/13ffdae7-efaf-4704-903c-b7d221560068/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:04:28.146741Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"7211b55e-4a7c-4fad-946e-d36198221f2c","original_file_url":"https://ucarecdn.com/7211b55e-4a7c-4fad-946e-d36198221f2c/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/7211b55e-4a7c-4fad-946e-d36198221f2c/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:04:28.166745Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
105
- http_version:
106
- recorded_at: Sun, 29 Oct 2017 17:04:30 GMT
107
- - request:
108
- method: get
109
- uri: https://api.uploadcare.com/groups/90b67d93-d46f-46f1-9c12-689ca8bbdb12~2/
110
- body:
111
- encoding: US-ASCII
112
- string: ''
113
- headers:
114
- Accept:
115
- - application/vnd.uploadcare-v0.3+json
116
- User-Agent:
117
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
118
- Date:
119
- - Sun, 29 Oct 2017 17:05:39 -0000
120
- Authorization:
121
- - Uploadcare demopublickey:8f902c37da78192f330186157e52d664d518eea8
122
- Accept-Encoding:
123
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
124
- response:
125
- status:
126
- code: 200
127
- message: OK
128
- headers:
129
- Date:
130
- - Sun, 29 Oct 2017 17:05:40 GMT
131
- Content-Type:
132
- - application/vnd.uploadcare-v0.3+json
133
- Transfer-Encoding:
134
- - chunked
135
- Connection:
136
- - keep-alive
137
- Server:
138
- - nginx
139
- X-Xss-Protection:
140
- - 1; mode=block
141
- X-Content-Type-Options:
142
- - nosniff
143
- Vary:
144
- - Accept
145
- Warning:
146
- - '199 Miscellaneous warning: You are using the demo account; Please use API
147
- version 0.5, not 0.3'
148
- Allow:
149
- - GET, HEAD, OPTIONS
150
- Access-Control-Allow-Origin:
151
- - https://uploadcare.com
152
- X-Frame-Options:
153
- - DENY
154
- body:
155
- encoding: UTF-8
156
- string: '{"id":"90b67d93-d46f-46f1-9c12-689ca8bbdb12~2","datetime_created":"2017-10-29T17:05:38.830326Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/90b67d93-d46f-46f1-9c12-689ca8bbdb12~2/","url":"https://api.uploadcare.com/groups/90b67d93-d46f-46f1-9c12-689ca8bbdb12~2/","files":[{"uuid":"5c8226ca-3989-4cfa-88be-56e540c7a481","original_file_url":"https://ucarecdn.com/5c8226ca-3989-4cfa-88be-56e540c7a481/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/5c8226ca-3989-4cfa-88be-56e540c7a481/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:05:38.063152Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"00ea08f8-8f14-409b-8e63-d4fdf28007f0","original_file_url":"https://ucarecdn.com/00ea08f8-8f14-409b-8e63-d4fdf28007f0/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/00ea08f8-8f14-409b-8e63-d4fdf28007f0/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:05:38.080825Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
157
- http_version:
158
- recorded_at: Sun, 29 Oct 2017 17:05:40 GMT
159
- - request:
160
- method: get
161
- uri: https://api.uploadcare.com/groups/37415ae9-f604-4c81-9281-96c04e7ca79b~2/
162
- body:
163
- encoding: US-ASCII
164
- string: ''
165
- headers:
166
- Accept:
167
- - application/vnd.uploadcare-v0.3+json
168
- User-Agent:
169
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
170
- Date:
171
- - Sun, 29 Oct 2017 17:06:08 -0000
172
- Authorization:
173
- - Uploadcare demopublickey:6df0d0e6814078269236c56235e9ac97e583b36a
174
- Accept-Encoding:
175
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
176
- response:
177
- status:
178
- code: 200
179
- message: OK
180
- headers:
181
- Date:
182
- - Sun, 29 Oct 2017 17:06:09 GMT
183
- Content-Type:
184
- - application/vnd.uploadcare-v0.3+json
185
- Transfer-Encoding:
186
- - chunked
187
- Connection:
188
- - keep-alive
189
- Server:
190
- - nginx
191
- X-Xss-Protection:
192
- - 1; mode=block
193
- X-Content-Type-Options:
194
- - nosniff
195
- Vary:
196
- - Accept
197
- Warning:
198
- - '199 Miscellaneous warning: You are using the demo account; Please use API
199
- version 0.5, not 0.3'
200
- Allow:
201
- - GET, HEAD, OPTIONS
202
- Access-Control-Allow-Origin:
203
- - https://uploadcare.com
204
- X-Frame-Options:
205
- - DENY
206
- body:
207
- encoding: UTF-8
208
- string: '{"id":"37415ae9-f604-4c81-9281-96c04e7ca79b~2","datetime_created":"2017-10-29T17:06:08.369557Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/37415ae9-f604-4c81-9281-96c04e7ca79b~2/","url":"https://api.uploadcare.com/groups/37415ae9-f604-4c81-9281-96c04e7ca79b~2/","files":[{"uuid":"fb03a35a-6aca-4d10-bfe0-0a2a487fac65","original_file_url":"https://ucarecdn.com/fb03a35a-6aca-4d10-bfe0-0a2a487fac65/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/fb03a35a-6aca-4d10-bfe0-0a2a487fac65/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:06:07.590590Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"58d53833-0e27-4c7e-b248-99e75a97cf42","original_file_url":"https://ucarecdn.com/58d53833-0e27-4c7e-b248-99e75a97cf42/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/58d53833-0e27-4c7e-b248-99e75a97cf42/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:06:07.624529Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
209
- http_version:
210
- recorded_at: Sun, 29 Oct 2017 17:06:09 GMT
211
- - request:
212
- method: get
213
- uri: https://api.uploadcare.com/groups/e918cbe4-6e85-423d-9680-b3b2f046f612~2/
214
- body:
215
- encoding: US-ASCII
216
- string: ''
217
- headers:
218
- Accept:
219
- - application/vnd.uploadcare-v0.3+json
220
- User-Agent:
221
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
222
- Date:
223
- - Sun, 29 Oct 2017 17:15:34 -0000
224
- Authorization:
225
- - Uploadcare demopublickey:7ee30e3516ecc9a04c025f17a47623bc92bcb75f
226
- Accept-Encoding:
227
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
228
- response:
229
- status:
230
- code: 200
231
- message: OK
232
- headers:
233
- Date:
234
- - Sun, 29 Oct 2017 17:15:35 GMT
235
- Content-Type:
236
- - application/vnd.uploadcare-v0.3+json
237
- Transfer-Encoding:
238
- - chunked
239
- Connection:
240
- - keep-alive
241
- Server:
242
- - nginx
243
- X-Xss-Protection:
244
- - 1; mode=block
245
- X-Content-Type-Options:
246
- - nosniff
247
- Vary:
248
- - Accept
249
- Warning:
250
- - '199 Miscellaneous warning: You are using the demo account; Please use API
251
- version 0.5, not 0.3'
252
- Allow:
253
- - GET, HEAD, OPTIONS
254
- Access-Control-Allow-Origin:
255
- - https://uploadcare.com
256
- X-Frame-Options:
257
- - DENY
258
- body:
259
- encoding: UTF-8
260
- string: '{"id":"e918cbe4-6e85-423d-9680-b3b2f046f612~2","datetime_created":"2017-10-29T17:15:31.042669Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/e918cbe4-6e85-423d-9680-b3b2f046f612~2/","url":"https://api.uploadcare.com/groups/e918cbe4-6e85-423d-9680-b3b2f046f612~2/","files":[{"uuid":"de0cec37-66de-4dd8-9ffd-b9584e6774f3","original_file_url":"https://ucarecdn.com/de0cec37-66de-4dd8-9ffd-b9584e6774f3/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/de0cec37-66de-4dd8-9ffd-b9584e6774f3/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:15:30.178400Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"444ae6b6-6f16-4965-92b5-08fa02d67e89","original_file_url":"https://ucarecdn.com/444ae6b6-6f16-4965-92b5-08fa02d67e89/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/444ae6b6-6f16-4965-92b5-08fa02d67e89/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:15:30.204922Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
261
- http_version:
262
- recorded_at: Sun, 29 Oct 2017 17:15:35 GMT
263
- - request:
264
- method: get
265
- uri: https://api.uploadcare.com/groups/fea2a5ba-a109-47d2-adba-2c5f4a9d5231~2/
266
- body:
267
- encoding: US-ASCII
268
- string: ''
269
- headers:
270
- Accept:
271
- - application/vnd.uploadcare-v0.3+json
272
- User-Agent:
273
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
274
- Date:
275
- - Sun, 29 Oct 2017 17:17:15 -0000
276
- Authorization:
277
- - Uploadcare demopublickey:8aa1af23551593014bc500b4c82b6e3647916584
278
- Accept-Encoding:
279
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
280
- response:
281
- status:
282
- code: 200
283
- message: OK
284
- headers:
285
- Date:
286
- - Sun, 29 Oct 2017 17:17:16 GMT
287
- Content-Type:
288
- - application/vnd.uploadcare-v0.3+json
289
- Transfer-Encoding:
290
- - chunked
291
- Connection:
292
- - keep-alive
293
- Server:
294
- - nginx
295
- X-Xss-Protection:
296
- - 1; mode=block
297
- X-Content-Type-Options:
298
- - nosniff
299
- Vary:
300
- - Accept
301
- Warning:
302
- - '199 Miscellaneous warning: You are using the demo account; Please use API
303
- version 0.5, not 0.3'
304
- Allow:
305
- - GET, HEAD, OPTIONS
306
- Access-Control-Allow-Origin:
307
- - https://uploadcare.com
308
- X-Frame-Options:
309
- - DENY
310
- body:
311
- encoding: UTF-8
312
- string: '{"id":"fea2a5ba-a109-47d2-adba-2c5f4a9d5231~2","datetime_created":"2017-10-29T17:17:11.270418Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/fea2a5ba-a109-47d2-adba-2c5f4a9d5231~2/","url":"https://api.uploadcare.com/groups/fea2a5ba-a109-47d2-adba-2c5f4a9d5231~2/","files":[{"uuid":"4c7e5b99-7ea2-412d-8c08-9f817c7de0ba","original_file_url":"https://ucarecdn.com/4c7e5b99-7ea2-412d-8c08-9f817c7de0ba/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/4c7e5b99-7ea2-412d-8c08-9f817c7de0ba/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:17:10.529803Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"2d504cf6-ccdd-4818-b95b-3aaeb7072cd4","original_file_url":"https://ucarecdn.com/2d504cf6-ccdd-4818-b95b-3aaeb7072cd4/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/2d504cf6-ccdd-4818-b95b-3aaeb7072cd4/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:17:10.556083Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
313
- http_version:
314
- recorded_at: Sun, 29 Oct 2017 17:17:16 GMT
315
- - request:
316
- method: get
317
- uri: https://api.uploadcare.com/groups/240441d8-a877-4713-99b8-ea083b8973b8~2/
318
- body:
319
- encoding: US-ASCII
320
- string: ''
321
- headers:
322
- Accept:
323
- - application/vnd.uploadcare-v0.3+json
324
- User-Agent:
325
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
326
- Date:
327
- - Sun, 29 Oct 2017 17:19:20 -0000
328
- Authorization:
329
- - Uploadcare demopublickey:86651a9817a17135de7bc1995229120fa602f641
330
- Accept-Encoding:
331
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
332
- response:
333
- status:
334
- code: 200
335
- message: OK
336
- headers:
337
- Date:
338
- - Sun, 29 Oct 2017 17:19:21 GMT
339
- Content-Type:
340
- - application/vnd.uploadcare-v0.3+json
341
- Transfer-Encoding:
342
- - chunked
343
- Connection:
344
- - keep-alive
345
- Server:
346
- - nginx
347
- X-Xss-Protection:
348
- - 1; mode=block
349
- X-Content-Type-Options:
350
- - nosniff
351
- Vary:
352
- - Accept
353
- Warning:
354
- - '199 Miscellaneous warning: You are using the demo account; Please use API
355
- version 0.5, not 0.3'
356
- Allow:
357
- - GET, HEAD, OPTIONS
358
- Access-Control-Allow-Origin:
359
- - https://uploadcare.com
360
- X-Frame-Options:
361
- - DENY
362
- body:
363
- encoding: UTF-8
364
- string: '{"id":"240441d8-a877-4713-99b8-ea083b8973b8~2","datetime_created":"2017-10-29T17:19:15.986814Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/240441d8-a877-4713-99b8-ea083b8973b8~2/","url":"https://api.uploadcare.com/groups/240441d8-a877-4713-99b8-ea083b8973b8~2/","files":[{"uuid":"a9569ad5-5d18-4099-8172-4c6eb901331d","original_file_url":"https://ucarecdn.com/a9569ad5-5d18-4099-8172-4c6eb901331d/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/a9569ad5-5d18-4099-8172-4c6eb901331d/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:19:15.240534Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"a32292fd-9d68-46e5-b7b5-771a97138586","original_file_url":"https://ucarecdn.com/a32292fd-9d68-46e5-b7b5-771a97138586/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/a32292fd-9d68-46e5-b7b5-771a97138586/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:19:15.259087Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
365
- http_version:
366
- recorded_at: Sun, 29 Oct 2017 17:19:21 GMT
367
- - request:
368
- method: get
369
- uri: https://api.uploadcare.com/groups/5c0c992f-36aa-4bb9-994c-8f7ea9764933~2/
370
- body:
371
- encoding: US-ASCII
372
- string: ''
373
- headers:
374
- Accept:
375
- - application/vnd.uploadcare-v0.3+json
376
- User-Agent:
377
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
378
- Date:
379
- - Sun, 29 Oct 2017 17:19:45 -0000
380
- Authorization:
381
- - Uploadcare demopublickey:825c3236f39112368a3383eade68dc1e6c5a6227
382
- Accept-Encoding:
383
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
384
- response:
385
- status:
386
- code: 200
387
- message: OK
388
- headers:
389
- Date:
390
- - Sun, 29 Oct 2017 17:19:46 GMT
391
- Content-Type:
392
- - application/vnd.uploadcare-v0.3+json
393
- Transfer-Encoding:
394
- - chunked
395
- Connection:
396
- - keep-alive
397
- Server:
398
- - nginx
399
- X-Xss-Protection:
400
- - 1; mode=block
401
- X-Content-Type-Options:
402
- - nosniff
403
- Vary:
404
- - Accept
405
- Warning:
406
- - '199 Miscellaneous warning: You are using the demo account; Please use API
407
- version 0.5, not 0.3'
408
- Allow:
409
- - GET, HEAD, OPTIONS
410
- Access-Control-Allow-Origin:
411
- - https://uploadcare.com
412
- X-Frame-Options:
413
- - DENY
414
- body:
415
- encoding: UTF-8
416
- string: '{"id":"5c0c992f-36aa-4bb9-994c-8f7ea9764933~2","datetime_created":"2017-10-29T17:19:40.638031Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/5c0c992f-36aa-4bb9-994c-8f7ea9764933~2/","url":"https://api.uploadcare.com/groups/5c0c992f-36aa-4bb9-994c-8f7ea9764933~2/","files":[{"uuid":"2ccab9b3-c7c9-46d7-9c39-4d9eff70013b","original_file_url":"https://ucarecdn.com/2ccab9b3-c7c9-46d7-9c39-4d9eff70013b/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/2ccab9b3-c7c9-46d7-9c39-4d9eff70013b/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:19:39.897520Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"e02cea6f-cd43-4aea-ae1d-dff01a2dafb0","original_file_url":"https://ucarecdn.com/e02cea6f-cd43-4aea-ae1d-dff01a2dafb0/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/e02cea6f-cd43-4aea-ae1d-dff01a2dafb0/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:19:39.915651Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
417
- http_version:
418
- recorded_at: Sun, 29 Oct 2017 17:19:46 GMT
419
- - request:
420
- method: get
421
- uri: https://api.uploadcare.com/groups/26b1a366-21e7-4a3b-82fa-730ddd591f48~2/
422
- body:
423
- encoding: US-ASCII
424
- string: ''
425
- headers:
426
- Accept:
427
- - application/vnd.uploadcare-v0.3+json
428
- User-Agent:
429
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
430
- Date:
431
- - Sun, 29 Oct 2017 17:21:05 -0000
432
- Authorization:
433
- - Uploadcare demopublickey:472d1cb1b00627f3c781558228336b87052a2e86
434
- Accept-Encoding:
435
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
436
- response:
437
- status:
438
- code: 200
439
- message: OK
440
- headers:
441
- Date:
442
- - Sun, 29 Oct 2017 17:21:06 GMT
443
- Content-Type:
444
- - application/vnd.uploadcare-v0.3+json
445
- Transfer-Encoding:
446
- - chunked
447
- Connection:
448
- - keep-alive
449
- Server:
450
- - nginx
451
- X-Xss-Protection:
452
- - 1; mode=block
453
- X-Content-Type-Options:
454
- - nosniff
455
- Vary:
456
- - Accept
457
- Warning:
458
- - '199 Miscellaneous warning: You are using the demo account; Please use API
459
- version 0.5, not 0.3'
460
- Allow:
461
- - GET, HEAD, OPTIONS
462
- Access-Control-Allow-Origin:
463
- - https://uploadcare.com
464
- X-Frame-Options:
465
- - DENY
466
- body:
467
- encoding: UTF-8
468
- string: '{"id":"26b1a366-21e7-4a3b-82fa-730ddd591f48~2","datetime_created":"2017-10-29T17:21:00.358467Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/26b1a366-21e7-4a3b-82fa-730ddd591f48~2/","url":"https://api.uploadcare.com/groups/26b1a366-21e7-4a3b-82fa-730ddd591f48~2/","files":[{"uuid":"ebc555fd-7588-4df3-8e6e-63f6e543350c","original_file_url":"https://ucarecdn.com/ebc555fd-7588-4df3-8e6e-63f6e543350c/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/ebc555fd-7588-4df3-8e6e-63f6e543350c/","original_filename":"view2.jpg","datetime_uploaded":"2017-10-29T17:20:59.608444Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"7d4d525b-a665-463c-a7e8-485d546ceffa","original_file_url":"https://ucarecdn.com/7d4d525b-a665-463c-a7e8-485d546ceffa/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/7d4d525b-a665-463c-a7e8-485d546ceffa/","original_filename":"view.png","datetime_uploaded":"2017-10-29T17:20:59.628814Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
469
- http_version:
470
- recorded_at: Sun, 29 Oct 2017 17:21:06 GMT
471
- - request:
472
- method: get
473
- uri: https://api.uploadcare.com/groups/d6c785a8-9761-4602-88de-65ddb04ddc6a~2/
474
- body:
475
- encoding: US-ASCII
476
- string: ''
477
- headers:
478
- Accept:
479
- - application/vnd.uploadcare-v0.3+json
480
- User-Agent:
481
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
482
- Date:
483
- - Sun, 05 Nov 2017 09:23:07 -0000
484
- Authorization:
485
- - Uploadcare demopublickey:ae2d361f33a902dff9f4f8a370212d7dcd9c07e4
486
- Accept-Encoding:
487
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
488
- response:
489
- status:
490
- code: 200
491
- message: OK
492
- headers:
493
- Date:
494
- - Sun, 05 Nov 2017 09:23:07 GMT
495
- Content-Type:
496
- - application/vnd.uploadcare-v0.3+json
497
- Transfer-Encoding:
498
- - chunked
499
- Connection:
500
- - keep-alive
501
- Server:
502
- - nginx
503
- X-Xss-Protection:
504
- - 1; mode=block
505
- X-Content-Type-Options:
506
- - nosniff
507
- Vary:
508
- - Accept
509
- Warning:
510
- - '199 Miscellaneous warning: You are using the demo account; Please use API
511
- version 0.5, not 0.3'
512
- Allow:
513
- - GET, HEAD, OPTIONS
514
- Access-Control-Allow-Origin:
515
- - https://uploadcare.com
516
- X-Frame-Options:
517
- - DENY
518
- body:
519
- encoding: UTF-8
520
- string: '{"id":"d6c785a8-9761-4602-88de-65ddb04ddc6a~2","datetime_created":"2017-11-05T09:22:59.302130Z","datetime_stored":null,"files_count":2,"cdn_url":"http://www.ucarecdn.com/d6c785a8-9761-4602-88de-65ddb04ddc6a~2/","url":"https://api.uploadcare.com/groups/d6c785a8-9761-4602-88de-65ddb04ddc6a~2/","files":[{"uuid":"0b37b745-6637-49a1-9c00-3d8281a383e3","original_file_url":"https://ucarecdn.com/0b37b745-6637-49a1-9c00-3d8281a383e3/view2.jpg","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"datetime_stored":null,"mime_type":"image/jpeg","is_ready":true,"url":"https://api.uploadcare.com/files/0b37b745-6637-49a1-9c00-3d8281a383e3/","original_filename":"view2.jpg","datetime_uploaded":"2017-11-05T09:22:58.509252Z","size":255570,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""},{"uuid":"f839e2df-ddf8-4c10-9e7d-5a0777eddc93","original_file_url":"https://ucarecdn.com/f839e2df-ddf8-4c10-9e7d-5a0777eddc93/view.png","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"datetime_stored":null,"mime_type":"image/png","is_ready":true,"url":"https://api.uploadcare.com/files/f839e2df-ddf8-4c10-9e7d-5a0777eddc93/","original_filename":"view.png","datetime_uploaded":"2017-11-05T09:22:58.526374Z","size":2785,"is_image":true,"datetime_removed":null,"source":null,"variations":null,"default_effects":""}]}'
521
- http_version:
522
- recorded_at: Sun, 05 Nov 2017 09:23:08 GMT
523
- - request:
524
- method: get
525
- uri: https://api.uploadcare.com/groups/73e3cdbc-6495-4cf2-bbd1-413e6cb70004~2/
526
- body:
527
- encoding: US-ASCII
528
- string: ''
529
- headers:
530
- Accept:
531
- - application/vnd.uploadcare-v0.3+json
532
- User-Agent:
533
- - UploadcareRuby/1.2.1/demopublickey (Ruby/2.3.1.112; Rails/5.2.0; UploadcareRails/1.2.0-alpha)
534
- Date:
535
- - Fri, 25 May 2018 07:14:31 -0000
536
- Authorization:
537
- - Uploadcare demopublickey:65f1953e7965663bfbdf6e2cc4507b212cf85175
538
- Accept-Encoding:
539
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
540
- response:
541
- status:
542
- code: 200
543
- message: OK
544
- headers:
545
- Date:
546
- - Fri, 25 May 2018 07:14:34 GMT
547
- Content-Type:
548
- - application/vnd.uploadcare-v0.3+json
549
- Content-Length:
550
- - '1461'
551
- Connection:
552
- - keep-alive
553
- Server:
554
- - nginx
555
- X-Xss-Protection:
556
- - 1; mode=block
557
- X-Content-Type-Options:
558
- - nosniff
559
- Vary:
560
- - Accept
561
- Warning:
562
- - '199 Miscellaneous warning: You are using the demo account; Please use API
563
- version 0.5, not 0.3'
564
- Allow:
565
- - GET, HEAD, OPTIONS
566
- Access-Control-Allow-Origin:
567
- - https://uploadcare.com
568
- X-Frame-Options:
569
- - SAMEORIGIN
570
- body:
571
- encoding: UTF-8
572
- string: '{"id":"73e3cdbc-6495-4cf2-bbd1-413e6cb70004~2","datetime_created":"2018-05-25T07:13:58.345080Z","datetime_stored":null,"files_count":2,"cdn_url":"https://ucarecdn.com/73e3cdbc-6495-4cf2-bbd1-413e6cb70004~2/","url":"https://api.uploadcare.com/groups/73e3cdbc-6495-4cf2-bbd1-413e6cb70004~2/","files":[{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-25T07:13:56.295620Z","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"is_image":true,"is_ready":true,"mime_type":"image/jpeg","original_file_url":"https://ucarecdn.com/dbda04e6-c45c-454e-8e6d-443e2c92e781/view2.jpg","original_filename":"view2.jpg","size":255570,"url":"https://api.uploadcare.com/files/dbda04e6-c45c-454e-8e6d-443e2c92e781/","uuid":"dbda04e6-c45c-454e-8e6d-443e2c92e781","source":null,"default_effects":""},{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-25T07:13:56.319714Z","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"is_image":true,"is_ready":true,"mime_type":"image/png","original_file_url":"https://ucarecdn.com/d684a061-1bce-49cc-ab60-f60650246516/view.png","original_filename":"view.png","size":2785,"url":"https://api.uploadcare.com/files/d684a061-1bce-49cc-ab60-f60650246516/","uuid":"d684a061-1bce-49cc-ab60-f60650246516","source":null,"default_effects":""}]}'
573
- http_version:
574
- recorded_at: Fri, 25 May 2018 07:14:33 GMT
575
- - request:
576
- method: get
577
- uri: https://api.uploadcare.com/groups/c50e9a53-0b95-48ac-a4a9-6744052dbdab~2/
578
- body:
579
- encoding: US-ASCII
580
- string: ''
581
- headers:
582
- Accept:
583
- - application/vnd.uploadcare-v0.3+json
584
- User-Agent:
585
- - uploadcare-ruby/2.3.1.112/1.1.0/demopublickey
586
- Date:
587
- - Fri, 25 May 2018 09:12:10 -0000
588
- Authorization:
589
- - Uploadcare demopublickey:38fe20292b2b7388ba532b806974ec58be791ed6
590
- Accept-Encoding:
591
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
592
- response:
593
- status:
594
- code: 200
595
- message: OK
596
- headers:
597
- Date:
598
- - Fri, 25 May 2018 09:12:12 GMT
599
- Content-Type:
600
- - application/vnd.uploadcare-v0.3+json
601
- Content-Length:
602
- - '1461'
603
- Connection:
604
- - keep-alive
605
- Server:
606
- - nginx
607
- X-Xss-Protection:
608
- - 1; mode=block
609
- X-Content-Type-Options:
610
- - nosniff
611
- Vary:
612
- - Accept
613
- Warning:
614
- - '199 Miscellaneous warning: You are using the demo account; Please use API
615
- version 0.5, not 0.3'
616
- Allow:
617
- - GET, HEAD, OPTIONS
618
- Access-Control-Allow-Origin:
619
- - https://uploadcare.com
620
- X-Frame-Options:
621
- - SAMEORIGIN
622
- body:
623
- encoding: UTF-8
624
- string: '{"id":"c50e9a53-0b95-48ac-a4a9-6744052dbdab~2","datetime_created":"2018-05-25T09:11:57.237165Z","datetime_stored":null,"files_count":2,"cdn_url":"https://ucarecdn.com/c50e9a53-0b95-48ac-a4a9-6744052dbdab~2/","url":"https://api.uploadcare.com/groups/c50e9a53-0b95-48ac-a4a9-6744052dbdab~2/","files":[{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-25T09:11:56.464753Z","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"is_image":true,"is_ready":true,"mime_type":"image/jpeg","original_file_url":"https://ucarecdn.com/81144776-fbd9-4c5f-887b-a5404da1fb71/view2.jpg","original_filename":"view2.jpg","size":255570,"url":"https://api.uploadcare.com/files/81144776-fbd9-4c5f-887b-a5404da1fb71/","uuid":"81144776-fbd9-4c5f-887b-a5404da1fb71","source":null,"default_effects":""},{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-25T09:11:56.488947Z","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"is_image":true,"is_ready":true,"mime_type":"image/png","original_file_url":"https://ucarecdn.com/f40b1430-c576-42d5-b2ab-3c1fc39ee356/view.png","original_filename":"view.png","size":2785,"url":"https://api.uploadcare.com/files/f40b1430-c576-42d5-b2ab-3c1fc39ee356/","uuid":"f40b1430-c576-42d5-b2ab-3c1fc39ee356","source":null,"default_effects":""}]}'
625
- http_version:
626
- recorded_at: Fri, 25 May 2018 09:12:11 GMT
627
- - request:
628
- method: get
629
- uri: https://api.uploadcare.com/groups/19073296-2315-4726-817b-46398b2c7431~2/
630
- body:
631
- encoding: US-ASCII
632
- string: ''
633
- headers:
634
- Accept:
635
- - application/vnd.uploadcare-v0.3+json
636
- User-Agent:
637
- - UploadcareRuby/1.2.1/demopublickey (Ruby/2.3.1.112; Rails/5.2.0; UploadcareRails/1.2.0-alpha2)
638
- Date:
639
- - Mon, 28 May 2018 19:05:17 -0000
640
- Authorization:
641
- - Uploadcare demopublickey:e0400ec8b7aacb62f3bc4ad706ae82918ca8b3e6
642
- Accept-Encoding:
643
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
644
- response:
645
- status:
646
- code: 200
647
- message: OK
648
- headers:
649
- Date:
650
- - Mon, 28 May 2018 19:05:19 GMT
651
- Content-Type:
652
- - application/vnd.uploadcare-v0.3+json
653
- Content-Length:
654
- - '1461'
655
- Connection:
656
- - keep-alive
657
- Server:
658
- - nginx
659
- X-Xss-Protection:
660
- - 1; mode=block
661
- X-Content-Type-Options:
662
- - nosniff
663
- Vary:
664
- - Accept
665
- Warning:
666
- - '199 Miscellaneous warning: You are using the demo account; Please use API
667
- version 0.5, not 0.3'
668
- Allow:
669
- - GET, HEAD, OPTIONS
670
- Access-Control-Allow-Origin:
671
- - https://uploadcare.com
672
- X-Frame-Options:
673
- - SAMEORIGIN
674
- body:
675
- encoding: UTF-8
676
- string: '{"id":"19073296-2315-4726-817b-46398b2c7431~2","datetime_created":"2018-05-28T19:05:04.518599Z","datetime_stored":null,"files_count":2,"cdn_url":"https://ucarecdn.com/19073296-2315-4726-817b-46398b2c7431~2/","url":"https://api.uploadcare.com/groups/19073296-2315-4726-817b-46398b2c7431~2/","files":[{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-28T19:05:02.297907Z","image_info":{"orientation":1,"format":"JPEG","height":1162,"width":800,"geo_location":null,"datetime_original":null,"dpi":[72,72]},"is_image":true,"is_ready":true,"mime_type":"image/jpeg","original_file_url":"https://ucarecdn.com/42627fa0-e88e-4055-b8ed-98e6a9500737/view2.jpg","original_filename":"view2.jpg","size":255570,"url":"https://api.uploadcare.com/files/42627fa0-e88e-4055-b8ed-98e6a9500737/","uuid":"42627fa0-e88e-4055-b8ed-98e6a9500737","source":null,"default_effects":""},{"datetime_removed":null,"datetime_stored":null,"datetime_uploaded":"2018-05-28T19:05:02.352341Z","image_info":{"orientation":null,"format":"PNG","height":600,"width":800,"geo_location":null,"datetime_original":null,"dpi":null},"is_image":true,"is_ready":true,"mime_type":"image/png","original_file_url":"https://ucarecdn.com/1ee9aaa7-2aba-4700-9aa5-ce88cf95085b/view.png","original_filename":"view.png","size":2785,"url":"https://api.uploadcare.com/files/1ee9aaa7-2aba-4700-9aa5-ce88cf95085b/","uuid":"1ee9aaa7-2aba-4700-9aa5-ce88cf95085b","source":null,"default_effects":""}]}'
677
- http_version:
678
- recorded_at: Mon, 28 May 2018 19:05:19 GMT
679
- recorded_with: VCR 4.0.0