micro_cms 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +35 -2
- data/app/helpers/micro_cms/application_helper.rb +14 -0
- data/lib/micro_cms/version.rb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/log/development.log +23 -1
- data/spec/dummy/tmp/development_secret.txt +1 -1
- data/spec/helpers/micro_cms/application_helper_spec.rb +13 -0
- metadata +5 -10
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +0 -478
- data/spec/examples.txt +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f82bcc475674528b0e517934b7f448369c61139587de79aba765da16433a6ac4
|
4
|
+
data.tar.gz: 929cddc8bec0e46daf0fcf6ee58237682fe7a295a1b14075b935aa52071b6471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f03e665fbfba77727515767e86d9b8c37081b64132530bf42f51efd70e4347606527c51596f8bf6543fe6d4981a6ee5b06f461cbad840bd95f50550c258699f0
|
7
|
+
data.tar.gz: d303f667552bccc6baa54b1024546ae7cb9725a34c8810eddd07b780f21affb715db985a97225332b5090ab051f53a6bd085cfa13c97f3a5b56487eb32573af9
|
data/README.md
CHANGED
@@ -54,13 +54,46 @@ bin/rails db:migrate
|
|
54
54
|
```
|
55
55
|
to copy the migrations.
|
56
56
|
|
57
|
-
Require the JavaScript (e.g. `//= require micro_cms`) and all styles (e.g. `@import 'micro_cms';'`).
|
58
|
-
|
59
57
|
Mount the engine routes in you `config/routes.rb` file:
|
60
58
|
```ruby
|
61
59
|
mount MicroCms::Engine => '/micro_cms'
|
62
60
|
```
|
63
61
|
|
62
|
+
### Usage with Sprockets
|
63
|
+
|
64
|
+
Require the JavaScript (e.g. `//= require micro_cms`) and all styles (e.g. `@import 'micro_cms';'`).
|
65
|
+
|
66
|
+
### Usage with Webpacker
|
67
|
+
|
68
|
+
Make sure that you import `rails/ujs` like that in your `application.js`:
|
69
|
+
|
70
|
+
```js
|
71
|
+
import Rails from '@rails/ujs';
|
72
|
+
Rails.start();
|
73
|
+
...
|
74
|
+
window.Rails = Rails;
|
75
|
+
```
|
76
|
+
|
77
|
+
The last line makes the Rails scope global (since we inline the script, this is needed).
|
78
|
+
|
79
|
+
Now you have to include the helper to your ApplicationHelper:
|
80
|
+
|
81
|
+
```rb
|
82
|
+
module ApplicationHelper
|
83
|
+
include MicroCms::ApplicationHelper
|
84
|
+
...
|
85
|
+
end
|
86
|
+
```
|
87
|
+
|
88
|
+
Now you can use the helper to inline the needed scripts via `app/views/layouts/application.html.slim`. It's strongly
|
89
|
+
recommended to check first, if the user is allowed to edit (but this is not part of this gem):
|
90
|
+
|
91
|
+
```rb
|
92
|
+
- if user_signed_in? # not part of this gem!
|
93
|
+
= micro_cms_asset_tags
|
94
|
+
```
|
95
|
+
|
96
|
+
|
64
97
|
## Configuration
|
65
98
|
`app/config/initializers/micro_cms.rb`:
|
66
99
|
|
@@ -2,5 +2,19 @@
|
|
2
2
|
|
3
3
|
module MicroCms
|
4
4
|
module ApplicationHelper
|
5
|
+
# rubocop:disable Rails/OutputSafety
|
6
|
+
def micro_cms_asset_tags
|
7
|
+
js = load_gem_file 'micro_cms', 'app/assets/javascripts/micro_cms.js'
|
8
|
+
css = load_gem_file 'micro_cms', 'app/assets/stylesheets/micro_cms/micro_cms.css'
|
9
|
+
tag.script(js.html_safe) + tag.style(css)
|
10
|
+
end
|
11
|
+
# rubocop:enable Rails/OutputSafety
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def load_gem_file(gem_name, assets_path)
|
16
|
+
path = File.join(Gem.loaded_specs[gem_name].full_gem_path, assets_path)
|
17
|
+
File.read(path)
|
18
|
+
end
|
5
19
|
end
|
6
20
|
end
|
data/lib/micro_cms/version.rb
CHANGED
Binary file
|
@@ -1 +1,23 @@
|
|
1
|
-
|
1
|
+
Started GET "/" for ::1 at 2020-05-06 15:26:50 +0200
|
2
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendering /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb
|
6
|
+
Rendered /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb (Duration: 7.1ms | Allocations: 484)
|
7
|
+
Completed 200 OK in 13ms (Views: 10.3ms | ActiveRecord: 0.0ms | Allocations: 2613)
|
8
|
+
|
9
|
+
|
10
|
+
Started GET "/" for ::1 at 2020-05-06 15:26:52 +0200
|
11
|
+
Processing by Rails::WelcomeController#index as HTML
|
12
|
+
Rendering /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb
|
13
|
+
Rendered /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb (Duration: 6.1ms | Allocations: 195)
|
14
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 748)
|
15
|
+
|
16
|
+
|
17
|
+
Started GET "/" for ::1 at 2020-05-06 15:26:55 +0200
|
18
|
+
Processing by Rails::WelcomeController#index as HTML
|
19
|
+
Rendering /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb
|
20
|
+
Rendered /Users/sihu/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/railties-6.0.0/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.5ms | Allocations: 7)
|
21
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 254)
|
22
|
+
|
23
|
+
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
7cfb9f8d4c8aa40683f54684e3e2619959171f25006b85f56e30261f7958590a32e0cf15971318e12e65bb65ac264fdcf9e64cd74de6e2b51c2f9b9cd1c7582a
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails_helper'
|
4
|
+
|
5
|
+
RSpec.describe MicroCms::ApplicationHelper, type: :helper do
|
6
|
+
describe '#micro_cms_asset_tags' do
|
7
|
+
describe 'returns a script and css tag containing data from the micro_cms gem' do
|
8
|
+
subject { helper.micro_cms_asset_tags }
|
9
|
+
|
10
|
+
it { is_expected.to match(/<script>.*micro_cms.*<style>/m) }
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: micro_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Bischof
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -135,9 +135,7 @@ files:
|
|
135
135
|
- spec/dummy/db/development.sqlite3
|
136
136
|
- spec/dummy/db/migrate/20190923150252_create_micro_cms_content_blocks.micro_cms.rb
|
137
137
|
- spec/dummy/db/schema.rb
|
138
|
-
- spec/dummy/db/test.sqlite3
|
139
138
|
- spec/dummy/log/development.log
|
140
|
-
- spec/dummy/log/test.log
|
141
139
|
- spec/dummy/public/404.html
|
142
140
|
- spec/dummy/public/422.html
|
143
141
|
- spec/dummy/public/500.html
|
@@ -146,8 +144,8 @@ files:
|
|
146
144
|
- spec/dummy/public/favicon.ico
|
147
145
|
- spec/dummy/tmp/development_secret.txt
|
148
146
|
- spec/engine/micro_cms_spec.rb
|
149
|
-
- spec/examples.txt
|
150
147
|
- spec/factories/micro_cms/content_blocks.rb
|
148
|
+
- spec/helpers/micro_cms/application_helper_spec.rb
|
151
149
|
- spec/helpers/micro_cms/cms_block_helper_spec.rb
|
152
150
|
- spec/models/micro_cms/content_block_spec.rb
|
153
151
|
- spec/rails_helper.rb
|
@@ -176,8 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
174
|
- !ruby/object:Gem::Version
|
177
175
|
version: '0'
|
178
176
|
requirements: []
|
179
|
-
|
180
|
-
rubygems_version: 2.7.6
|
177
|
+
rubygems_version: 3.0.3
|
181
178
|
signing_key:
|
182
179
|
specification_version: 4
|
183
180
|
summary: An inline micro cms
|
@@ -232,13 +229,10 @@ test_files:
|
|
232
229
|
- spec/dummy/public/404.html
|
233
230
|
- spec/dummy/public/apple-touch-icon-precomposed.png
|
234
231
|
- spec/dummy/db/schema.rb
|
235
|
-
- spec/dummy/db/test.sqlite3
|
236
232
|
- spec/dummy/db/migrate/20190923150252_create_micro_cms_content_blocks.micro_cms.rb
|
237
233
|
- spec/dummy/db/development.sqlite3
|
238
|
-
- spec/dummy/log/test.log
|
239
234
|
- spec/dummy/log/development.log
|
240
235
|
- spec/dummy/tmp/development_secret.txt
|
241
|
-
- spec/examples.txt
|
242
236
|
- spec/models/micro_cms/content_block_spec.rb
|
243
237
|
- spec/requests/micro_cms/content_block_controller_spec.rb
|
244
238
|
- spec/support/shared_examples/cms_block_helper_spec_helper.rb
|
@@ -247,4 +241,5 @@ test_files:
|
|
247
241
|
- spec/views/micro_cms/content_block_spec.rb
|
248
242
|
- spec/engine/micro_cms_spec.rb
|
249
243
|
- spec/rails_helper.rb
|
244
|
+
- spec/helpers/micro_cms/application_helper_spec.rb
|
250
245
|
- spec/helpers/micro_cms/cms_block_helper_spec.rb
|
data/spec/dummy/db/test.sqlite3
DELETED
Binary file
|
data/spec/dummy/log/test.log
DELETED
@@ -1,478 +0,0 @@
|
|
1
|
-
[1m[35m (1.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
3
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
4
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
5
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6
|
-
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
7
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
8
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9
|
-
[1m[36mMicroCms::ContentBlock Create (1.0ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "my content"], ["created_at", "2019-09-25 14:44:34.248149"], ["updated_at", "2019-09-25 14:44:34.248149"]]
|
10
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
11
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
12
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
13
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
14
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
15
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16
|
-
[1m[36mMicroCms::ContentBlock Create (0.3ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "MyText"], ["created_at", "2019-09-25 14:44:34.255699"], ["updated_at", "2019-09-25 14:44:34.255699"]]
|
17
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
18
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
19
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
20
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
21
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
22
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
23
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
24
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
25
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
26
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
30
|
-
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
31
|
-
[1m[35m (1.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
32
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
33
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
34
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
35
|
-
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
36
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
37
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
38
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "my content"], ["created_at", "2019-09-25 14:47:47.098878"], ["updated_at", "2019-09-25 14:47:47.098878"]]
|
39
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
40
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
41
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
42
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
43
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
44
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
45
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "MyText"], ["created_at", "2019-09-25 14:47:47.105857"], ["updated_at", "2019-09-25 14:47:47.105857"]]
|
46
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
48
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
49
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
50
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
51
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
56
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
57
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
58
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
59
|
-
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
60
|
-
[1m[35m (0.9ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
61
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
62
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
63
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
64
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
65
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
66
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
71
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
72
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
73
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
74
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
75
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "my content"], ["created_at", "2019-09-25 14:48:07.408546"], ["updated_at", "2019-09-25 14:48:07.408546"]]
|
76
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
77
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
78
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
79
|
-
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
80
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
81
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
82
|
-
[1m[36mMicroCms::ContentBlock Create (0.3ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "MyText"], ["created_at", "2019-09-25 14:48:07.413684"], ["updated_at", "2019-09-25 14:48:07.413684"]]
|
83
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
84
|
-
[1m[36mMicroCms::ContentBlock Load (0.0ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
85
|
-
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
86
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
87
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
88
|
-
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
89
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
90
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
91
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
92
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
93
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
94
|
-
[1m[36mMicroCms::ContentBlock Create (2.2ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:40:04.779032"], ["updated_at", "2019-09-30 14:40:04.779032"]]
|
95
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
96
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
97
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?authorization_token=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:40:04 +0200
|
98
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
99
|
-
Parameters: {"authorization_token"=>"my-securely-generated-auth-token", "micro_cms_content_block"=>{"content"=>"my new content"}, "path"=>"my-path-de"}
|
100
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 367)
|
101
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
102
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
103
|
-
Started PUT "/micro_cms/content_block/not-existent.js?authorization_token=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:40:04 +0200
|
104
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
105
|
-
Parameters: {"authorization_token"=>"my-securely-generated-auth-token", "micro_cms_content_block"=>{"content"=>"my new content"}, "path"=>"not-existent"}
|
106
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 298)
|
107
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
108
|
-
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
109
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
110
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
111
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
112
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
113
|
-
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
114
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:40:36.000954"], ["updated_at", "2019-09-30 14:40:36.000954"]]
|
115
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
116
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
117
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?authorization_token=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:40:36 +0200
|
118
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
119
|
-
Parameters: {"authorization_token"=>"my-securely-generated-auth-token", "micro_cms_content_block"=>{"content"=>"my new content"}, "path"=>"my-path-de"}
|
120
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 439)
|
121
|
-
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
122
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
123
|
-
Started PUT "/micro_cms/content_block/not-existent.js?authorization_token=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:40:36 +0200
|
124
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
125
|
-
Parameters: {"authorization_token"=>"my-securely-generated-auth-token", "micro_cms_content_block"=>{"content"=>"my new content"}, "path"=>"not-existent"}
|
126
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 369)
|
127
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
128
|
-
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
129
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
130
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
131
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
132
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
133
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
134
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:41:23.121076"], ["updated_at", "2019-09-30 14:41:23.121076"]]
|
135
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
136
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
137
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:41:23 +0200
|
138
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
139
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-securely-generated-auth-token", "content"=>"my new content"}, "path"=>"my-path-de"}
|
140
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-path-de"], ["LIMIT", 1]]
|
141
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
142
|
-
[1m[36mMicroCms::ContentBlock Update (5.7ms)[0m [1m[33mUPDATE "micro_cms_content_blocks" SET "content" = ?, "updated_at" = ? WHERE "micro_cms_content_blocks"."id" = ?[0m [["content", "my new content"], ["updated_at", "2019-09-30 14:41:23.144393"], ["id", 1]]
|
143
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
144
|
-
Completed 204 No Content in 8ms (ActiveRecord: 5.9ms | Allocations: 1001)
|
145
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
146
|
-
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
147
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
148
|
-
Started PUT "/micro_cms/content_block/not-existent.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 16:41:23 +0200
|
149
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
150
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-securely-generated-auth-token", "content"=>"my new content"}, "path"=>"not-existent"}
|
151
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "not-existent"], ["LIMIT", 1]]
|
152
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms | Allocations: 442)
|
153
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
154
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
155
|
-
[1m[35m (1.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
156
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
157
|
-
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
158
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
159
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
160
|
-
[1m[36mMicroCms::ContentBlock Create (1.8ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:43:42.160360"], ["updated_at", "2019-09-30 14:43:42.160360"]]
|
161
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
162
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
163
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-tokenµ_cms_content_block%5Bcontent%5D=blubb" for 127.0.0.1 at 2019-09-30 16:43:42 +0200
|
164
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
165
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-evil-spoofing-token", "content"=>"blubb"}, "path"=>"my-path-de"}
|
166
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 361)
|
167
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
168
|
-
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
169
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
170
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
171
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
172
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
173
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
174
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:44:08.748528"], ["updated_at", "2019-09-30 14:44:08.748528"]]
|
175
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
176
|
-
[1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
|
177
|
-
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
178
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
179
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
180
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
181
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
182
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
183
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:44:33.886789"], ["updated_at", "2019-09-30 14:44:33.886789"]]
|
184
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
185
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
186
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-tokenµ_cms_content_block%5Bcontent%5D=blubb" for 127.0.0.1 at 2019-09-30 16:44:33 +0200
|
187
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
188
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-evil-spoofing-token", "content"=>"blubb"}, "path"=>"my-path-de"}
|
189
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 361)
|
190
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
191
|
-
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
192
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
193
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
194
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
195
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
196
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
197
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:45:04.948044"], ["updated_at", "2019-09-30 14:45:04.948044"]]
|
198
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
199
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-tokenµ_cms_content_block%5Bcontent%5D=blubb" for 127.0.0.1 at 2019-09-30 16:45:04 +0200
|
200
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
201
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-evil-spoofing-token", "content"=>"blubb"}, "path"=>"my-path-de"}
|
202
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 358)
|
203
|
-
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
204
|
-
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
205
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
206
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
207
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
208
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
209
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
210
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 14:46:03.949440"], ["updated_at", "2019-09-30 14:46:03.949440"]]
|
211
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
212
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-tokenµ_cms_content_block%5Bcontent%5D=blubb" for 127.0.0.1 at 2019-09-30 16:46:03 +0200
|
213
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
214
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-evil-spoofing-token", "content"=>"blubb"}, "path"=>"my-path-de"}
|
215
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 368)
|
216
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
217
|
-
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
218
|
-
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
219
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
220
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
221
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
222
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
223
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
224
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
225
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
226
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
227
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
228
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
229
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
230
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
231
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
232
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
233
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
234
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
235
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
236
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "my content"], ["created_at", "2019-09-30 15:48:28.548546"], ["updated_at", "2019-09-30 15:48:28.548546"]]
|
237
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
238
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
239
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
240
|
-
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
241
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
242
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
243
|
-
[1m[36mMicroCms::ContentBlock Create (0.3ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-content-block-en"], ["content", "MyText"], ["created_at", "2019-09-30 15:48:28.554037"], ["updated_at", "2019-09-30 15:48:28.554037"]]
|
244
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
245
|
-
[1m[36mMicroCms::ContentBlock Load (0.0ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-content-block-en"], ["LIMIT", 1]]
|
246
|
-
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
247
|
-
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
248
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
249
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
250
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
251
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
252
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
253
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 15:48:34.563982"], ["updated_at", "2019-09-30 15:48:34.563982"]]
|
254
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
255
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
256
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 17:48:34 +0200
|
257
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
258
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-securely-generated-auth-token", "content"=>"my new content"}, "path"=>"my-path-de"}
|
259
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-path-de"], ["LIMIT", 1]]
|
260
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
261
|
-
[1m[36mMicroCms::ContentBlock Update (0.1ms)[0m [1m[33mUPDATE "micro_cms_content_blocks" SET "content" = ?, "updated_at" = ? WHERE "micro_cms_content_blocks"."id" = ?[0m [["content", "my new content"], ["updated_at", "2019-09-30 15:48:34.595093"], ["id", 1]]
|
262
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
263
|
-
Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1073)
|
264
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
265
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
266
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
267
|
-
Started PUT "/micro_cms/content_block/not-existent.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-tokenµ_cms_content_block%5Bcontent%5D=my+new+content" for 127.0.0.1 at 2019-09-30 17:48:34 +0200
|
268
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
269
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-securely-generated-auth-token", "content"=>"my new content"}, "path"=>"not-existent"}
|
270
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "not-existent"], ["LIMIT", 1]]
|
271
|
-
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms | Allocations: 513)
|
272
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
273
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
274
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
275
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-path-de"], ["content", "MyText"], ["created_at", "2019-09-30 15:48:34.616213"], ["updated_at", "2019-09-30 15:48:34.616213"]]
|
276
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
277
|
-
Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-tokenµ_cms_content_block%5Bcontent%5D=blubb" for 127.0.0.1 at 2019-09-30 17:48:34 +0200
|
278
|
-
Processing by MicroCms::ContentBlockController#update as JS
|
279
|
-
Parameters: {"micro_cms_content_block"=>{"authorization_token"=>"my-evil-spoofing-token", "content"=>"blubb"}, "path"=>"my-path-de"}
|
280
|
-
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms | Allocations: 379)
|
281
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
282
|
-
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
283
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
284
|
-
[1m[35m (2.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
285
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
286
|
-
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
287
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
288
|
-
[1m[36mMicroCms::ContentBlock Load (0.5ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
289
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
290
|
-
[1m[36mMicroCms::ContentBlock Create (0.8ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", ""], ["created_at", "2019-09-30 15:54:48.620837"], ["updated_at", "2019-09-30 15:54:48.620837"]]
|
291
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
292
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
293
|
-
[1m[36mMicroCms::ContentBlock Create (0.2ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "MyText"], ["created_at", "2019-09-30 15:54:48.626640"], ["updated_at", "2019-09-30 15:54:48.626640"]]
|
294
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
295
|
-
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
296
|
-
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
297
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
298
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
299
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
300
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
301
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
302
|
-
[1m[36mMicroCms::ContentBlock Create (0.5ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "MyText"], ["created_at", "2019-09-30 15:55:25.768544"], ["updated_at", "2019-09-30 15:55:25.768544"]]
|
303
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
304
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
305
|
-
[1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
|
306
|
-
[1m[35m (2.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
307
|
-
[1m[35m (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
308
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
309
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
310
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
311
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
312
|
-
[1m[36mMicroCms::ContentBlock Create (1.1ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "my custom content of the block"], ["created_at", "2019-09-30 15:59:43.146467"], ["updated_at", "2019-09-30 15:59:43.146467"]]
|
313
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
314
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
315
|
-
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
316
|
-
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
317
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
318
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
319
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
320
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
321
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
322
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
323
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
324
|
-
[1m[36mMicroCms::ContentBlock Create (0.7ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "my default value"], ["created_at", "2019-09-30 16:02:01.617154"], ["updated_at", "2019-09-30 16:02:01.617154"]]
|
325
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
326
|
-
Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 2.7ms | Allocations: 726)
|
327
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
328
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
329
|
-
[1m[35m (1.5ms)[0m [1m[31mrollback transaction[0m
|
330
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
331
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
332
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
333
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", ""], ["created_at", "2019-09-30 16:02:01.648836"], ["updated_at", "2019-09-30 16:02:01.648836"]]
|
334
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
335
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
336
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
337
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
338
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
339
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
340
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
341
|
-
[1m[36mMicroCms::ContentBlock Create (0.5ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", " <p>This is my custom content</p>"], ["created_at", "2019-09-30 16:02:01.660270"], ["updated_at", "2019-09-30 16:02:01.660270"]]
|
342
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
343
|
-
Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 0.6ms | Allocations: 169)
|
344
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
345
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
346
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
347
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
348
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
349
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
350
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
351
|
-
[1m[36mMicroCms::ContentBlock Create (0.8ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", ""], ["created_at", "2019-09-30 16:02:01.671854"], ["updated_at", "2019-09-30 16:02:01.671854"]]
|
352
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
353
|
-
Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 0.6ms | Allocations: 169)
|
354
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
355
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
356
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
357
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
358
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
359
|
-
[1m[36mMicroCms::ContentBlock Create (0.5ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "MyText"], ["created_at", "2019-09-30 16:02:01.681102"], ["updated_at", "2019-09-30 16:02:01.681102"]]
|
360
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
361
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
362
|
-
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
363
|
-
[1m[35m (1.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
364
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
365
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
366
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
367
|
-
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
368
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
369
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
370
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
371
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
372
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
373
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
374
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
375
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
376
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
377
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
378
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", "my default value"], ["created_at", "2019-09-30 16:03:13.344496"], ["updated_at", "2019-09-30 16:03:13.344496"]]
|
379
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
380
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
381
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
382
|
-
[1m[35m (5.9ms)[0m [1m[31mrollback transaction[0m
|
383
|
-
[1m[35m (1.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
384
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
385
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
386
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
387
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
388
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
389
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
390
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
391
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", "my default"], ["created_at", "2019-09-30 16:04:23.575902"], ["updated_at", "2019-09-30 16:04:23.575902"]]
|
392
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
393
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
394
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
395
|
-
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
396
|
-
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
397
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
398
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
399
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
400
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
401
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
402
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
403
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
404
|
-
[1m[36mMicroCms::ContentBlock Create (0.8ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", " <p>This is my custom content</p>"], ["created_at", "2019-09-30 16:04:40.962829"], ["updated_at", "2019-09-30 16:04:40.962829"]]
|
405
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
406
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
407
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
408
|
-
[1m[35m (6.0ms)[0m [1m[31mrollback transaction[0m
|
409
|
-
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
410
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
411
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
412
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
413
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
414
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
415
|
-
[1m[36mMicroCms::ContentBlock Load (0.1ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
416
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
417
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", " <p>This is my custom content</p>"], ["created_at", "2019-09-30 16:05:59.375738"], ["updated_at", "2019-09-30 16:05:59.375738"]]
|
418
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
419
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
420
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
421
|
-
[1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
|
422
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
423
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
424
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
425
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
426
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
427
|
-
[1m[36mMicroCms::ContentBlock Load (0.4ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
428
|
-
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
429
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", ""], ["created_at", "2019-09-30 16:06:54.883500"], ["updated_at", "2019-09-30 16:06:54.883500"]]
|
430
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
431
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
432
|
-
[1m[35m (6.2ms)[0m [1m[31mrollback transaction[0m
|
433
|
-
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
434
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
435
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
436
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
437
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
438
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
439
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
440
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
441
|
-
[1m[36mMicroCms::ContentBlock Create (0.4ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", "my default"], ["created_at", "2019-09-30 16:07:24.975260"], ["updated_at", "2019-09-30 16:07:24.975260"]]
|
442
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
443
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
444
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
445
|
-
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
446
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
447
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
448
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
449
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
450
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
451
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
452
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
|
453
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
454
|
-
[1m[36mMicroCms::ContentBlock Create (0.6ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-nonexistent-path-en"], ["content", ""], ["created_at", "2019-09-30 16:07:46.774803"], ["updated_at", "2019-09-30 16:07:46.774803"]]
|
455
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
456
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "micro_cms_content_blocks"[0m
|
457
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ?[0m [["LIMIT", 1]]
|
458
|
-
[1m[35m (5.7ms)[0m [1m[31mrollback transaction[0m
|
459
|
-
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
460
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
461
|
-
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
462
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
463
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
464
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
465
|
-
[1m[36mMicroCms::ContentBlock Create (0.7ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "my custom content of the block"], ["created_at", "2019-09-30 16:08:14.393651"], ["updated_at", "2019-09-30 16:08:14.393651"]]
|
466
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
467
|
-
[1m[36mMicroCms::ContentBlock Load (0.3ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
468
|
-
[1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
|
469
|
-
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
470
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
471
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
472
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
473
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
474
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
475
|
-
[1m[36mMicroCms::ContentBlock Create (10.1ms)[0m [1m[32mINSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["path", "my-custom-path-en"], ["content", "my custom content of the block"], ["created_at", "2019-09-30 16:08:24.368635"], ["updated_at", "2019-09-30 16:08:24.368635"]]
|
476
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
477
|
-
[1m[36mMicroCms::ContentBlock Load (0.2ms)[0m [1m[34mSELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ?[0m [["path", "my-custom-path-en"], ["LIMIT", 1]]
|
478
|
-
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
data/spec/examples.txt
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
example_id | status | run_time |
|
2
|
-
--------------------------------------------------------------------- | ------- | --------------- |
|
3
|
-
./spec/engine/micro_cms_spec.rb[1:1:1] | passed | 0.01991 seconds |
|
4
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:1:1:1:1] | passed | 0.02075 seconds |
|
5
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:1:1:2:1:1] | passed | 0.00998 seconds |
|
6
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:1:1:3:1:1] | passed | 0.09654 seconds |
|
7
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:1:1:4:1:1] | passed | 0.01025 seconds |
|
8
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:1:2:1:1] | passed | 0.00707 seconds |
|
9
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:2:1:1] | passed | 0.11106 seconds |
|
10
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:2:2:1:1:1] | unknown | |
|
11
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:2:2:2:1:1] | passed | 0.0555 seconds |
|
12
|
-
./spec/helpers/micro_cms/cms_block_helper_spec.rb[1:2:2:3:1:1] | passed | 0.08544 seconds |
|
13
|
-
./spec/models/micro_cms/content_block_spec.rb[1:1:1] | passed | 0.01632 seconds |
|
14
|
-
./spec/models/micro_cms/content_block_spec.rb[1:1:2] | passed | 0.00248 seconds |
|
15
|
-
./spec/models/micro_cms/content_block_spec.rb[1:2:1] | passed | 0.00164 seconds |
|
16
|
-
./spec/models/micro_cms/content_block_spec.rb[1:3:1] | passed | 0.0314 seconds |
|
17
|
-
./spec/models/micro_cms/content_block_spec.rb[1:4:1:1] | passed | 0.00415 seconds |
|
18
|
-
./spec/models/micro_cms/content_block_spec.rb[1:4:2:1] | passed | 0.01077 seconds |
|
19
|
-
./spec/models/micro_cms/content_block_spec.rb[1:5:1] | passed | 0.00118 seconds |
|
20
|
-
./spec/requests/micro_cms/content_block_controller_spec.rb[1:1:1:1] | passed | 0.24317 seconds |
|
21
|
-
./spec/requests/micro_cms/content_block_controller_spec.rb[1:1:1:2:1] | passed | 0.01317 seconds |
|
22
|
-
./spec/requests/micro_cms/content_block_controller_spec.rb[1:1:2:1] | passed | 0.00883 seconds |
|
23
|
-
./spec/routing/micro_cms/content_blocks_routing_spec.rb[1:1:1] | passed | 0.00197 seconds |
|
24
|
-
./spec/routing/micro_cms/content_blocks_routing_spec.rb[1:1:2] | passed | 0.00338 seconds |
|
25
|
-
./spec/views/micro_cms/content_block_spec.rb[1:1] | passed | 0.01204 seconds |
|
26
|
-
./spec/views/micro_cms/content_block_spec.rb[1:2] | passed | 0.02707 seconds |
|
27
|
-
./spec/views/micro_cms/content_block_spec.rb[1:3] | passed | 0.0134 seconds |
|
28
|
-
./spec/views/micro_cms/content_block_spec.rb[1:4] | passed | 0.01026 seconds |
|