cmor_files 0.0.5.pre → 0.0.6.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/spec/dummy/Rakefile +6 -0
  3. data/spec/dummy/app/assets/config/manifest.js +3 -0
  4. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  5. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  6. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  7. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  8. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  9. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  10. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  11. data/spec/dummy/app/jobs/application_job.rb +2 -0
  12. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  13. data/spec/dummy/app/models/application_record.rb +3 -0
  14. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  15. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  16. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  17. data/spec/dummy/bin/bundle +3 -0
  18. data/spec/dummy/bin/rails +4 -0
  19. data/spec/dummy/bin/rake +4 -0
  20. data/spec/dummy/bin/setup +36 -0
  21. data/spec/dummy/bin/update +31 -0
  22. data/spec/dummy/bin/yarn +11 -0
  23. data/spec/dummy/config/application.rb +30 -0
  24. data/spec/dummy/config/boot.rb +5 -0
  25. data/spec/dummy/config/cable.yml +10 -0
  26. data/spec/dummy/config/database.yml +25 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/development.rb +61 -0
  29. data/spec/dummy/config/environments/production.rb +94 -0
  30. data/spec/dummy/config/environments/test.rb +46 -0
  31. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  32. data/spec/dummy/config/initializers/assets.rb +14 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +33 -0
  41. data/spec/dummy/config/puma.rb +34 -0
  42. data/spec/dummy/config/routes.rb +6 -0
  43. data/spec/dummy/config/spring.rb +6 -0
  44. data/spec/dummy/config/storage.yml +34 -0
  45. data/spec/dummy/config.ru +5 -0
  46. data/spec/dummy/db/development.sqlite3 +0 -0
  47. data/spec/dummy/db/migrate/{20190325174535_create_active_storage_tables.active_storage.rb → 20190331091014_create_active_storage_tables.active_storage.rb} +0 -0
  48. data/spec/dummy/db/migrate/{20190325174557_create_cmor_files_folders.cmor_files.rb → 20190331091046_create_cmor_files_folders.cmor_files.rb} +0 -0
  49. data/spec/dummy/db/migrate/{20190325174558_create_cmor_files_file_details.cmor_files.rb → 20190331091047_create_cmor_files_file_details.cmor_files.rb} +0 -0
  50. data/spec/dummy/db/schema.rb +54 -0
  51. data/spec/dummy/db/test.sqlite3 +0 -0
  52. data/spec/dummy/log/development.log +122 -0
  53. data/spec/dummy/log/test.log +145 -0
  54. data/spec/dummy/package.json +5 -0
  55. data/spec/dummy/public/404.html +67 -0
  56. data/spec/dummy/public/422.html +67 -0
  57. data/spec/dummy/public/500.html +66 -0
  58. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  59. data/spec/dummy/public/apple-touch-icon.png +0 -0
  60. data/spec/dummy/public/favicon.ico +0 -0
  61. data/spec/dummy/tmp/development_secret.txt +1 -1
  62. data/spec/dummy/tmp/storage/{Bh/RE/BhREgVesQFJGKZawuwybEm9o → ot/Pd/otPdDy2VPAj1cN6qYH7JAAPQ} +0 -0
  63. data/spec/dummy/tmp/storage/{x9/kn/x9knsAYKxaGksCFoE1kksZUn → wj/C5/wjC5TSUKngEV6ixGX465jgtP} +0 -0
  64. metadata +73 -19
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,34 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory.
30
+ #
31
+ # preload_app!
32
+
33
+ # Allow puma to be restarted by `rails restart` command.
34
+ plugin :tmp_restart
@@ -0,0 +1,6 @@
1
+ Rails.application.routes.draw do
2
+
3
+
4
+ mount Cmor::Files::Engine, at: '/'
5
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
6
+ end
@@ -0,0 +1,6 @@
1
+ %w[
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
Binary file
@@ -0,0 +1,54 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2019_03_31_091047) do
14
+
15
+ create_table "active_storage_attachments", force: :cascade do |t|
16
+ t.string "name", null: false
17
+ t.string "record_type", null: false
18
+ t.integer "record_id", null: false
19
+ t.integer "blob_id", null: false
20
+ t.datetime "created_at", null: false
21
+ t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
22
+ t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
23
+ end
24
+
25
+ create_table "active_storage_blobs", force: :cascade do |t|
26
+ t.string "key", null: false
27
+ t.string "filename", null: false
28
+ t.string "content_type"
29
+ t.text "metadata"
30
+ t.bigint "byte_size", null: false
31
+ t.string "checksum", null: false
32
+ t.datetime "created_at", null: false
33
+ t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
34
+ end
35
+
36
+ create_table "cmor_files_file_details", force: :cascade do |t|
37
+ t.integer "folder_id"
38
+ t.integer "asset_id"
39
+ t.string "title"
40
+ t.text "description"
41
+ t.integer "position"
42
+ t.datetime "created_at", null: false
43
+ t.datetime "updated_at", null: false
44
+ end
45
+
46
+ create_table "cmor_files_folders", force: :cascade do |t|
47
+ t.string "name"
48
+ t.datetime "published_at"
49
+ t.text "description"
50
+ t.datetime "created_at", null: false
51
+ t.datetime "updated_at", null: false
52
+ end
53
+
54
+ end
Binary file
@@ -0,0 +1,122 @@
1
+  (0.8ms) SELECT sqlite_version(*)
2
+ ↳ bin/rails:4
3
+  (32.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
+ ↳ bin/rails:4
5
+  (7.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
+ ↳ bin/rails:4
7
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
+ ↳ bin/rails:4
9
+ Migrating to CreateActiveStorageTables (20190331091014)
10
+  (0.2ms) begin transaction
11
+ ↳ bin/rails:4
12
+  (2.9ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
+ ↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:4
14
+  (0.5ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
15
+ ↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:4
16
+  (0.6ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
17
+ FOREIGN KEY ("blob_id")
18
+ REFERENCES "active_storage_blobs" ("id")
19
+ )
20
+ ↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
21
+  (0.3ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
22
+ ↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
23
+  (0.6ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
24
+ ↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
25
+ ActiveRecord::SchemaMigration Create (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190331091014"]]
26
+ ↳ bin/rails:4
27
+  (9.9ms) commit transaction
28
+ ↳ bin/rails:4
29
+ Migrating to CreateCmorFilesFolders (20190331091046)
30
+  (0.3ms) begin transaction
31
+ ↳ bin/rails:4
32
+  (3.4ms) CREATE TABLE "cmor_files_folders" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "published_at" datetime, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
+ ↳ db/migrate/20190331091046_create_cmor_files_folders.cmor_files.rb:4
34
+ ActiveRecord::SchemaMigration Create (2.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190331091046"]]
35
+ ↳ bin/rails:4
36
+  (10.1ms) commit transaction
37
+ ↳ bin/rails:4
38
+ Migrating to CreateCmorFilesFileDetails (20190331091047)
39
+  (0.2ms) begin transaction
40
+ ↳ bin/rails:4
41
+  (7.5ms) CREATE TABLE "cmor_files_file_details" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "asset_id" integer, "title" varchar, "description" text, "position" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
42
+ ↳ db/migrate/20190331091047_create_cmor_files_file_details.cmor_files.rb:4
43
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190331091047"]]
44
+ ↳ bin/rails:4
45
+  (25.8ms) commit transaction
46
+ ↳ bin/rails:4
47
+ ActiveRecord::InternalMetadata Load (1.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
48
+ ↳ bin/rails:4
49
+  (0.2ms) begin transaction
50
+ ↳ bin/rails:4
51
+ ActiveRecord::InternalMetadata Create (4.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-31 09:10:47.034154"], ["updated_at", "2019-03-31 09:10:47.034154"]]
52
+ ↳ bin/rails:4
53
+  (30.7ms) commit transaction
54
+ ↳ bin/rails:4
55
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
56
+ ↳ bin/rails:4
57
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
+ ↳ bin/rails:4
59
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
60
+ ↳ bin/rails:4
61
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
+ ↳ bin/rails:4
63
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
64
+ ↳ bin/rails:4
65
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
+ ↳ bin/rails:4
67
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
68
+ ↳ bin/rails:4
69
+  (0.3ms) DROP TABLE IF EXISTS "active_storage_attachments"
70
+ ↳ db/schema.rb:15
71
+  (0.3ms) SELECT sqlite_version(*)
72
+ ↳ db/schema.rb:15
73
+  (10.5ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
74
+ ↳ db/schema.rb:15
75
+  (11.1ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
76
+ ↳ db/schema.rb:15
77
+  (6.4ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
78
+ ↳ db/schema.rb:15
79
+  (1.0ms) DROP TABLE IF EXISTS "active_storage_blobs"
80
+ ↳ db/schema.rb:25
81
+  (9.3ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
82
+ ↳ db/schema.rb:25
83
+  (6.4ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
84
+ ↳ db/schema.rb:25
85
+  (0.6ms) DROP TABLE IF EXISTS "cmor_files_file_details"
86
+ ↳ db/schema.rb:36
87
+  (15.6ms) CREATE TABLE "cmor_files_file_details" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "asset_id" integer, "title" varchar, "description" text, "position" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
88
+ ↳ db/schema.rb:36
89
+  (0.5ms) DROP TABLE IF EXISTS "cmor_files_folders"
90
+ ↳ db/schema.rb:46
91
+  (17.2ms) CREATE TABLE "cmor_files_folders" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "published_at" datetime, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
92
+ ↳ db/schema.rb:46
93
+  (7.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
94
+ ↳ db/schema.rb:13
95
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
96
+ ↳ db/schema.rb:13
97
+  (15.0ms) INSERT INTO "schema_migrations" (version) VALUES (20190331091047)
98
+ ↳ db/schema.rb:13
99
+  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES
100
+ (20190331091046),
101
+ (20190331091014);
102
+
103
+ 
104
+ ↳ db/schema.rb:13
105
+  (12.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
106
+ ↳ db/schema.rb:13
107
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
108
+ ↳ db/schema.rb:13
109
+  (0.2ms) begin transaction
110
+ ↳ db/schema.rb:13
111
+ ActiveRecord::InternalMetadata Create (1.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-31 09:10:47.364240"], ["updated_at", "2019-03-31 09:10:47.364240"]]
112
+ ↳ db/schema.rb:13
113
+  (6.6ms) commit transaction
114
+ ↳ db/schema.rb:13
115
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
116
+ ↳ bin/rails:4
117
+  (0.3ms) begin transaction
118
+ ↳ bin/rails:4
119
+ ActiveRecord::InternalMetadata Update (2.8ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-03-31 09:10:47.387690"], ["key", "environment"]]
120
+ ↳ bin/rails:4
121
+  (4.9ms) commit transaction
122
+ ↳ bin/rails:4
@@ -0,0 +1,145 @@
1
+  (0.2ms) begin transaction
2
+  (0.4ms) rollback transaction
3
+  (0.4ms) begin transaction
4
+  (0.4ms) rollback transaction
5
+  (0.6ms) begin transaction
6
+  (0.3ms) rollback transaction
7
+  (0.3ms) begin transaction
8
+ Cmor::Files::Folder Exists (0.4ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" IS NULL LIMIT ? [["LIMIT", 1]]
9
+  (0.0ms) rollback transaction
10
+  (0.9ms) begin transaction
11
+ Cmor::Files::Folder Load (0.5ms) SELECT "cmor_files_folders".* FROM "cmor_files_folders" ORDER BY "cmor_files_folders"."id" ASC LIMIT ? [["LIMIT", 1]]
12
+  (0.6ms) SAVEPOINT active_record_1
13
+ Cmor::Files::Folder Create (1.5ms) INSERT INTO "cmor_files_folders" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-03-31 09:10:58.938163"], ["updated_at", "2019-03-31 09:10:58.938163"]]
14
+  (0.3ms) RELEASE SAVEPOINT active_record_1
15
+  (0.5ms) SAVEPOINT active_record_1
16
+ Cmor::Files::Folder Update (0.7ms) UPDATE "cmor_files_folders" SET "name" = ?, "updated_at" = ? WHERE "cmor_files_folders"."id" = ? [["name", "dummy value"], ["updated_at", "2019-03-31 09:10:58.949660"], ["id", 1]]
17
+  (0.3ms) RELEASE SAVEPOINT active_record_1
18
+ Cmor::Files::Folder Exists (0.8ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ? [["name", "dummy value"], ["LIMIT", 1]]
19
+ Cmor::Files::Folder Exists (0.8ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ? [["name", "DUMMY VALUE"], ["LIMIT", 1]]
20
+  (0.7ms) rollback transaction
21
+  (0.4ms) begin transaction
22
+  (1.5ms) rollback transaction
23
+  (7.7ms) begin transaction
24
+  (0.1ms) rollback transaction
25
+  (0.4ms) begin transaction
26
+ Cmor::Files::Folder Exists (1.0ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ? [["name", "Folder #1"], ["LIMIT", 1]]
27
+  (0.7ms) rollback transaction
28
+  (0.1ms) begin transaction
29
+ Cmor::Files::Folder Exists (0.7ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" IS NULL LIMIT ? [["LIMIT", 1]]
30
+  (0.3ms) rollback transaction
31
+  (0.3ms) begin transaction
32
+  (0.3ms) SAVEPOINT active_record_1
33
+ Cmor::Files::Folder Exists (0.5ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ? [["name", "Folder #2"], ["LIMIT", 1]]
34
+ Cmor::Files::Folder Create (1.2ms) INSERT INTO "cmor_files_folders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Folder #2"], ["created_at", "2019-03-31 09:10:59.156565"], ["updated_at", "2019-03-31 09:10:59.156565"]]
35
+  (0.3ms) RELEASE SAVEPOINT active_record_1
36
+  (0.9ms) rollback transaction
37
+  (0.5ms) begin transaction
38
+  (0.4ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.4ms) rollback transaction
41
+  (0.5ms) begin transaction
42
+  Disk Storage (2.9ms) Uploaded file to key: wjC5TSUKngEV6ixGX465jgtP (checksum: PQckBuk+cVT3lBy73cnuAQ==)
43
+  (0.8ms) SAVEPOINT active_record_1
44
+ ActiveStorage::Blob Create (1.0ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "wjC5TSUKngEV6ixGX465jgtP"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-03-31 09:10:59.534561"]]
45
+  (0.2ms) RELEASE SAVEPOINT active_record_1
46
+  (0.5ms) rollback transaction
47
+  (0.2ms) begin transaction
48
+  (0.2ms) rollback transaction
49
+  (0.3ms) begin transaction
50
+  Disk Storage (4.4ms) Uploaded file to key: otPdDy2VPAj1cN6qYH7JAAPQ (checksum: PQckBuk+cVT3lBy73cnuAQ==)
51
+  (0.3ms) SAVEPOINT active_record_1
52
+ ActiveStorage::Blob Create (1.7ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "otPdDy2VPAj1cN6qYH7JAAPQ"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-03-31 09:10:59.648304"]]
53
+  (0.3ms) RELEASE SAVEPOINT active_record_1
54
+  (0.6ms) SAVEPOINT active_record_1
55
+ Cmor::Files::Folder Exists (2.0ms) SELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ? [["name", "Folder #4"], ["LIMIT", 1]]
56
+ Cmor::Files::Folder Create (1.9ms) INSERT INTO "cmor_files_folders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Folder #4"], ["created_at", "2019-03-31 09:10:59.679955"], ["updated_at", "2019-03-31 09:10:59.679955"]]
57
+ ActiveStorage::Attachment Create (1.0ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Files::Folder"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:10:59.687118"]]
58
+ Cmor::Files::FileDetail Create (4.2ms) INSERT INTO "cmor_files_file_details" ("folder_id", "asset_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["folder_id", 1], ["asset_id", 1], ["created_at", "2019-03-31 09:10:59.692432"], ["updated_at", "2019-03-31 09:10:59.692432"]]
59
+ Cmor::Files::FileDetail Create (0.7ms) INSERT INTO "cmor_files_file_details" ("folder_id", "asset_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["folder_id", 1], ["asset_id", 1], ["created_at", "2019-03-31 09:10:59.702282"], ["updated_at", "2019-03-31 09:10:59.702282"]]
60
+ Cmor::Files::Folder Update (0.7ms) UPDATE "cmor_files_folders" SET "updated_at" = ? WHERE "cmor_files_folders"."id" = ? [["updated_at", "2019-03-31 09:10:59.691126"], ["id", 1]]
61
+  (0.6ms) RELEASE SAVEPOINT active_record_1
62
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 8f39df33-de5a-464d-99e7-ec964265b566) to Async(default) with arguments: #<GlobalID:0x00000004ed5478 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
63
+ ActiveStorage::Blob Load (3.2ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
64
+  (1.2ms) rollback transaction
65
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] Performing ActiveStorage::AnalyzeJob (Job ID: 8f39df33-de5a-464d-99e7-ec964265b566) from Async(default) with arguments: #<GlobalID:0x00000004ebeb10 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
66
+  (0.2ms) begin transaction
67
+  (0.2ms) rollback transaction
68
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566]  Disk Storage (2.1ms) Downloaded file from key: otPdDy2VPAj1cN6qYH7JAAPQ
69
+  (0.4ms) begin transaction
70
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] Skipping image analysis because the mini_magick gem isn't installed
71
+  (0.2ms) rollback transaction
72
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566]  (0.1ms) begin transaction
73
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566]  (0.3ms) begin transaction
74
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] ActiveStorage::Blob Update (0.5ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
75
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566]  (0.3ms) commit transaction
76
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566]  (0.4ms) commit transaction
77
+  (0.6ms) begin transaction
78
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] Performed ActiveStorage::AnalyzeJob (Job ID: 8f39df33-de5a-464d-99e7-ec964265b566) from Async(default) in 103.08ms
79
+  (0.3ms) rollback transaction
80
+  (0.2ms) begin transaction
81
+  (0.2ms) rollback transaction
82
+  (0.2ms) begin transaction
83
+  (0.2ms) rollback transaction
84
+  (0.5ms) begin transaction
85
+  (0.6ms) rollback transaction
86
+  (0.3ms) begin transaction
87
+  (1.3ms) rollback transaction
88
+  (0.0ms) begin transaction
89
+  (0.2ms) rollback transaction
90
+  (0.1ms) begin transaction
91
+  (0.2ms) rollback transaction
92
+  (0.5ms) begin transaction
93
+  (0.4ms) rollback transaction
94
+  (0.3ms) begin transaction
95
+  (0.3ms) rollback transaction
96
+  (0.2ms) begin transaction
97
+  (0.2ms) rollback transaction
98
+  (0.4ms) begin transaction
99
+  (0.1ms) rollback transaction
100
+  (0.7ms) begin transaction
101
+  (0.5ms) rollback transaction
102
+  (0.2ms) begin transaction
103
+  (0.1ms) rollback transaction
104
+  (0.6ms) begin transaction
105
+  (0.5ms) rollback transaction
106
+  (0.5ms) begin transaction
107
+  (0.4ms) rollback transaction
108
+  (0.5ms) begin transaction
109
+  (0.2ms) rollback transaction
110
+  (0.2ms) begin transaction
111
+  (0.2ms) rollback transaction
112
+  (0.1ms) begin transaction
113
+  (0.1ms) rollback transaction
114
+  (0.3ms) begin transaction
115
+  (0.3ms) rollback transaction
116
+  (0.3ms) begin transaction
117
+  (0.4ms) rollback transaction
118
+  (0.4ms) begin transaction
119
+  (0.3ms) rollback transaction
120
+  (1.4ms) begin transaction
121
+  (0.1ms) rollback transaction
122
+  (0.3ms) begin transaction
123
+  (0.1ms) rollback transaction
124
+  (0.4ms) begin transaction
125
+  (0.2ms) rollback transaction
126
+  (0.6ms) begin transaction
127
+  (0.3ms) rollback transaction
128
+  (0.8ms) begin transaction
129
+  (0.4ms) rollback transaction
130
+  (0.1ms) begin transaction
131
+  (0.3ms) rollback transaction
132
+  (0.3ms) begin transaction
133
+  (0.3ms) rollback transaction
134
+  (0.4ms) begin transaction
135
+  (0.4ms) rollback transaction
136
+  (0.3ms) begin transaction
137
+  (0.2ms) rollback transaction
138
+  (0.2ms) begin transaction
139
+  (0.1ms) rollback transaction
140
+  (0.5ms) begin transaction
141
+  (0.4ms) rollback transaction
142
+  (0.5ms) begin transaction
143
+  (0.3ms) rollback transaction
144
+  (0.5ms) begin transaction
145
+  (0.3ms) rollback transaction
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>