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.
- checksums.yaml +4 -4
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +36 -0
- data/spec/dummy/bin/update +31 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config/application.rb +30 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +61 -0
- data/spec/dummy/config/environments/production.rb +94 -0
- data/spec/dummy/config/environments/test.rb +46 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +14 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +6 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/{20190325174535_create_active_storage_tables.active_storage.rb → 20190331091014_create_active_storage_tables.active_storage.rb} +0 -0
- data/spec/dummy/db/migrate/{20190325174557_create_cmor_files_folders.cmor_files.rb → 20190331091046_create_cmor_files_folders.cmor_files.rb} +0 -0
- 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
- data/spec/dummy/db/schema.rb +54 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +122 -0
- data/spec/dummy/log/test.log +145 -0
- data/spec/dummy/package.json +5 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -1
- data/spec/dummy/tmp/storage/{Bh/RE/BhREgVesQFJGKZawuwybEm9o → ot/Pd/otPdDy2VPAj1cN6qYH7JAAPQ} +0 -0
- data/spec/dummy/tmp/storage/{x9/kn/x9knsAYKxaGksCFoE1kksZUn → wj/C5/wjC5TSUKngEV6ixGX465jgtP} +0 -0
- 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,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 ]
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
@@ -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
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,122 @@
|
|
1
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
↳ bin/rails:4
|
3
|
+
[1m[35m (32.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
4
|
+
↳ bin/rails:4
|
5
|
+
[1m[35m (7.9ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
6
|
+
↳ bin/rails:4
|
7
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
8
|
+
↳ bin/rails:4
|
9
|
+
Migrating to CreateActiveStorageTables (20190331091014)
|
10
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
11
|
+
↳ bin/rails:4
|
12
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE 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)[0m
|
13
|
+
↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:4
|
14
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")[0m
|
15
|
+
↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:4
|
16
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE 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
|
+
)[0m
|
20
|
+
↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
|
21
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")[0m
|
22
|
+
↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
|
23
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")[0m
|
24
|
+
↳ db/migrate/20190331091014_create_active_storage_tables.active_storage.rb:16
|
25
|
+
[1m[36mActiveRecord::SchemaMigration Create (1.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20190331091014"]]
|
26
|
+
↳ bin/rails:4
|
27
|
+
[1m[35m (9.9ms)[0m [1m[36mcommit transaction[0m
|
28
|
+
↳ bin/rails:4
|
29
|
+
Migrating to CreateCmorFilesFolders (20190331091046)
|
30
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
31
|
+
↳ bin/rails:4
|
32
|
+
[1m[35m (3.4ms)[0m [1m[35mCREATE 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)[0m
|
33
|
+
↳ db/migrate/20190331091046_create_cmor_files_folders.cmor_files.rb:4
|
34
|
+
[1m[36mActiveRecord::SchemaMigration Create (2.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20190331091046"]]
|
35
|
+
↳ bin/rails:4
|
36
|
+
[1m[35m (10.1ms)[0m [1m[36mcommit transaction[0m
|
37
|
+
↳ bin/rails:4
|
38
|
+
Migrating to CreateCmorFilesFileDetails (20190331091047)
|
39
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
40
|
+
↳ bin/rails:4
|
41
|
+
[1m[35m (7.5ms)[0m [1m[35mCREATE 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)[0m
|
42
|
+
↳ db/migrate/20190331091047_create_cmor_files_file_details.cmor_files.rb:4
|
43
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20190331091047"]]
|
44
|
+
↳ bin/rails:4
|
45
|
+
[1m[35m (25.8ms)[0m [1m[36mcommit transaction[0m
|
46
|
+
↳ bin/rails:4
|
47
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
48
|
+
↳ bin/rails:4
|
49
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
50
|
+
↳ bin/rails:4
|
51
|
+
[1m[36mActiveRecord::InternalMetadata Create (4.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (30.7ms)[0m [1m[36mcommit transaction[0m
|
54
|
+
↳ bin/rails:4
|
55
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
56
|
+
↳ bin/rails:4
|
57
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
58
|
+
↳ bin/rails:4
|
59
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
60
|
+
↳ bin/rails:4
|
61
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
62
|
+
↳ bin/rails:4
|
63
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
64
|
+
↳ bin/rails:4
|
65
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
66
|
+
↳ bin/rails:4
|
67
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
68
|
+
↳ bin/rails:4
|
69
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "active_storage_attachments"[0m
|
70
|
+
↳ db/schema.rb:15
|
71
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
72
|
+
↳ db/schema.rb:15
|
73
|
+
[1m[35m (10.5ms)[0m [1m[35mCREATE 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)[0m
|
74
|
+
↳ db/schema.rb:15
|
75
|
+
[1m[35m (11.1ms)[0m [1m[35mCREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")[0m
|
76
|
+
↳ db/schema.rb:15
|
77
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")[0m
|
78
|
+
↳ db/schema.rb:15
|
79
|
+
[1m[35m (1.0ms)[0m [1m[35mDROP TABLE IF EXISTS "active_storage_blobs"[0m
|
80
|
+
↳ db/schema.rb:25
|
81
|
+
[1m[35m (9.3ms)[0m [1m[35mCREATE 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)[0m
|
82
|
+
↳ db/schema.rb:25
|
83
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")[0m
|
84
|
+
↳ db/schema.rb:25
|
85
|
+
[1m[35m (0.6ms)[0m [1m[35mDROP TABLE IF EXISTS "cmor_files_file_details"[0m
|
86
|
+
↳ db/schema.rb:36
|
87
|
+
[1m[35m (15.6ms)[0m [1m[35mCREATE 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)[0m
|
88
|
+
↳ db/schema.rb:36
|
89
|
+
[1m[35m (0.5ms)[0m [1m[35mDROP TABLE IF EXISTS "cmor_files_folders"[0m
|
90
|
+
↳ db/schema.rb:46
|
91
|
+
[1m[35m (17.2ms)[0m [1m[35mCREATE 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)[0m
|
92
|
+
↳ db/schema.rb:46
|
93
|
+
[1m[35m (7.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
94
|
+
↳ db/schema.rb:13
|
95
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
96
|
+
↳ db/schema.rb:13
|
97
|
+
[1m[35m (15.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20190331091047)[0m
|
98
|
+
↳ db/schema.rb:13
|
99
|
+
[1m[35m (10.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
100
|
+
(20190331091046),
|
101
|
+
(20190331091014);
|
102
|
+
|
103
|
+
[0m
|
104
|
+
↳ db/schema.rb:13
|
105
|
+
[1m[35m (12.8ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
106
|
+
↳ db/schema.rb:13
|
107
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
108
|
+
↳ db/schema.rb:13
|
109
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
110
|
+
↳ db/schema.rb:13
|
111
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (6.6ms)[0m [1m[36mcommit transaction[0m
|
114
|
+
↳ db/schema.rb:13
|
115
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
116
|
+
↳ bin/rails:4
|
117
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
118
|
+
↳ bin/rails:4
|
119
|
+
[1m[36mActiveRecord::InternalMetadata Update (2.8ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ?[0m [["value", "test"], ["updated_at", "2019-03-31 09:10:47.387690"], ["key", "environment"]]
|
120
|
+
↳ bin/rails:4
|
121
|
+
[1m[35m (4.9ms)[0m [1m[36mcommit transaction[0m
|
122
|
+
↳ bin/rails:4
|
@@ -0,0 +1,145 @@
|
|
1
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
2
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
3
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
4
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
5
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
6
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
7
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
8
|
+
[1m[36mCmor::Files::Folder Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
9
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10
|
+
[1m[35m (0.9ms)[0m [1m[36mbegin transaction[0m
|
11
|
+
[1m[36mCmor::Files::Folder Load (0.5ms)[0m [1m[34mSELECT "cmor_files_folders".* FROM "cmor_files_folders" ORDER BY "cmor_files_folders"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
12
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
13
|
+
[1m[36mCmor::Files::Folder Create (1.5ms)[0m [1m[32mINSERT INTO "cmor_files_folders" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2019-03-31 09:10:58.938163"], ["updated_at", "2019-03-31 09:10:58.938163"]]
|
14
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
15
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16
|
+
[1m[36mCmor::Files::Folder Update (0.7ms)[0m [1m[33mUPDATE "cmor_files_folders" SET "name" = ?, "updated_at" = ? WHERE "cmor_files_folders"."id" = ?[0m [["name", "dummy value"], ["updated_at", "2019-03-31 09:10:58.949660"], ["id", 1]]
|
17
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
18
|
+
[1m[36mCmor::Files::Folder Exists (0.8ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ?[0m [["name", "dummy value"], ["LIMIT", 1]]
|
19
|
+
[1m[36mCmor::Files::Folder Exists (0.8ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ?[0m [["name", "DUMMY VALUE"], ["LIMIT", 1]]
|
20
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
21
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
22
|
+
[1m[35m (1.5ms)[0m [1m[31mrollback transaction[0m
|
23
|
+
[1m[35m (7.7ms)[0m [1m[36mbegin transaction[0m
|
24
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
25
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
26
|
+
[1m[36mCmor::Files::Folder Exists (1.0ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ?[0m [["name", "Folder #1"], ["LIMIT", 1]]
|
27
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
28
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29
|
+
[1m[36mCmor::Files::Folder Exists (0.7ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
30
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
31
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
32
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
33
|
+
[1m[36mCmor::Files::Folder Exists (0.5ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ?[0m [["name", "Folder #2"], ["LIMIT", 1]]
|
34
|
+
[1m[36mCmor::Files::Folder Create (1.2ms)[0m [1m[32mINSERT INTO "cmor_files_folders" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Folder #2"], ["created_at", "2019-03-31 09:10:59.156565"], ["updated_at", "2019-03-31 09:10:59.156565"]]
|
35
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
36
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
37
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
38
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
39
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
40
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
41
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
42
|
+
[36m Disk Storage (2.9ms) [0m[32mUploaded file to key: wjC5TSUKngEV6ixGX465jgtP (checksum: PQckBuk+cVT3lBy73cnuAQ==)[0m
|
43
|
+
[1m[35m (0.8ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
44
|
+
[1m[36mActiveStorage::Blob Create (1.0ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
47
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
48
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
49
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
50
|
+
[36m Disk Storage (4.4ms) [0m[32mUploaded file to key: otPdDy2VPAj1cN6qYH7JAAPQ (checksum: PQckBuk+cVT3lBy73cnuAQ==)[0m
|
51
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52
|
+
[1m[36mActiveStorage::Blob Create (1.7ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55
|
+
[1m[36mCmor::Files::Folder Exists (2.0ms)[0m [1m[34mSELECT 1 AS one FROM "cmor_files_folders" WHERE "cmor_files_folders"."name" = ? LIMIT ?[0m [["name", "Folder #4"], ["LIMIT", 1]]
|
56
|
+
[1m[36mCmor::Files::Folder Create (1.9ms)[0m [1m[32mINSERT INTO "cmor_files_folders" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Folder #4"], ["created_at", "2019-03-31 09:10:59.679955"], ["updated_at", "2019-03-31 09:10:59.679955"]]
|
57
|
+
[1m[36mActiveStorage::Attachment Create (1.0ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "assets"], ["record_type", "Cmor::Files::Folder"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:10:59.687118"]]
|
58
|
+
[1m[36mCmor::Files::FileDetail Create (4.2ms)[0m [1m[32mINSERT INTO "cmor_files_file_details" ("folder_id", "asset_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[36mCmor::Files::FileDetail Create (0.7ms)[0m [1m[32mINSERT INTO "cmor_files_file_details" ("folder_id", "asset_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[36mCmor::Files::Folder Update (0.7ms)[0m [1m[33mUPDATE "cmor_files_folders" SET "updated_at" = ? WHERE "cmor_files_folders"."id" = ?[0m [["updated_at", "2019-03-31 09:10:59.691126"], ["id", 1]]
|
61
|
+
[1m[35m (0.6ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mActiveStorage::Blob Load (3.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
64
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
67
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
68
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [36m Disk Storage (2.1ms) [0m[34mDownloaded file from key: otPdDy2VPAj1cN6qYH7JAAPQ[0m
|
69
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
70
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] Skipping image analysis because the mini_magick gem isn't installed
|
71
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
72
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
73
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
74
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [1m[36mActiveStorage::Blob Update (0.5ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
75
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [1m[35m (0.3ms)[0m [1m[36mcommit transaction[0m
|
76
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [8f39df33-de5a-464d-99e7-ec964265b566] [1m[35m (0.4ms)[0m [1m[36mcommit transaction[0m
|
77
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
80
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
81
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
82
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
83
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
84
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
85
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
86
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
87
|
+
[1m[35m (1.3ms)[0m [1m[31mrollback transaction[0m
|
88
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
89
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
90
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
91
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
92
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
93
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
94
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
95
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
96
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
97
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
98
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
99
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
100
|
+
[1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
|
101
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
102
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
103
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
104
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
105
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
106
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
107
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
108
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
109
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
110
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
111
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
112
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
113
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
114
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
115
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
116
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
117
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
118
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
119
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
120
|
+
[1m[35m (1.4ms)[0m [1m[36mbegin transaction[0m
|
121
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
122
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
123
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
124
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
125
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
126
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
127
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
128
|
+
[1m[35m (0.8ms)[0m [1m[36mbegin transaction[0m
|
129
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
130
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
131
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
132
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
133
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
134
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
135
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
136
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
137
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
138
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
139
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
140
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
141
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
142
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
143
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
144
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
145
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
@@ -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>
|