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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43bd60d546db8d7696d2c3f0ea7c52272063feb45dd0ee93d7f8e48e7d68819d
4
- data.tar.gz: 89f3c2ff9eff8820edb54bd580b57ecd7a3eec5f2dff783c3c4d76c6b9b53e30
3
+ metadata.gz: f82bcc475674528b0e517934b7f448369c61139587de79aba765da16433a6ac4
4
+ data.tar.gz: 929cddc8bec0e46daf0fcf6ee58237682fe7a295a1b14075b935aa52071b6471
5
5
  SHA512:
6
- metadata.gz: 19bfe157c486c5ef6cc804bfc88791d565ff18001f0ff1053cd3ff52661746bffec403750c1046244aba1d8f9c13f73ea8527deea36c29304aa5f4fbc0629e0c
7
- data.tar.gz: 2854003f69b4bdf4ae6a2c1b5a5d3f1ea6b4f4c88a456202e757af76fb003552b6425ac9347dd7ca1e6dae88227c8da4e412e68494d9cc0d97bbfa86463cef94
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MicroCms
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
@@ -1 +1,23 @@
1
-  (1.7ms) SELECT sqlite_version(*)
1
+ Started GET "/" for ::1 at 2020-05-06 15:26:50 +0200
2
+  (1.6ms) SELECT sqlite_version(*)
3
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
- 638a8ed4fb8252b2f79ceb879bb053cc8c8168698501f04426d68dd62586743b6534a65ded165fa22ab7425c4a1c15c1c16a63838b4b209edc38686aec8e1481
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.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: 2019-10-08 00:00:00.000000000 Z
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
- rubyforge_project:
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
Binary file
@@ -1,478 +0,0 @@
1
-  (1.8ms) SELECT sqlite_version(*)
2
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
3
-  (0.1ms) SELECT sqlite_version(*)
4
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
-  (0.1ms) begin transaction
6
-  (0.6ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
7
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
8
-  (0.0ms) SAVEPOINT active_record_1
9
- MicroCms::ContentBlock Create (1.0ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
11
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
12
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
13
-  (0.5ms) rollback transaction
14
-  (0.1ms) begin transaction
15
-  (0.1ms) SAVEPOINT active_record_1
16
- MicroCms::ContentBlock Create (0.3ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
18
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
19
-  (0.5ms) rollback transaction
20
-  (0.1ms) begin transaction
21
-  (0.0ms) rollback transaction
22
-  (0.1ms) begin transaction
23
-  (0.0ms) rollback transaction
24
-  (0.0ms) begin transaction
25
-  (0.0ms) rollback transaction
26
-  (0.0ms) begin transaction
27
-  (0.1ms) rollback transaction
28
-  (0.1ms) begin transaction
29
-  (0.0ms) rollback transaction
30
-  (1.4ms) SELECT sqlite_version(*)
31
-  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
32
-  (0.1ms) SELECT sqlite_version(*)
33
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
34
-  (0.1ms) begin transaction
35
-  (0.4ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
36
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
37
-  (0.0ms) SAVEPOINT active_record_1
38
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
40
-  (0.0ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
41
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
42
-  (0.5ms) rollback transaction
43
-  (0.1ms) begin transaction
44
-  (0.1ms) SAVEPOINT active_record_1
45
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
47
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
48
-  (0.6ms) rollback transaction
49
-  (0.1ms) begin transaction
50
-  (0.1ms) rollback transaction
51
-  (0.1ms) begin transaction
52
-  (0.1ms) rollback transaction
53
-  (0.1ms) begin transaction
54
-  (0.0ms) rollback transaction
55
-  (0.1ms) begin transaction
56
-  (0.1ms) rollback transaction
57
-  (0.0ms) begin transaction
58
-  (0.1ms) rollback transaction
59
-  (1.9ms) SELECT sqlite_version(*)
60
-  (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
61
-  (0.0ms) SELECT sqlite_version(*)
62
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
63
-  (0.1ms) begin transaction
64
-  (0.1ms) rollback transaction
65
-  (0.1ms) begin transaction
66
-  (0.1ms) rollback transaction
67
-  (0.1ms) begin transaction
68
-  (0.1ms) rollback transaction
69
-  (0.1ms) begin transaction
70
-  (0.1ms) rollback transaction
71
-  (0.1ms) begin transaction
72
-  (0.5ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
73
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
74
-  (0.1ms) SAVEPOINT active_record_1
75
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
77
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
78
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
79
-  (0.3ms) rollback transaction
80
-  (0.1ms) begin transaction
81
-  (0.1ms) SAVEPOINT active_record_1
82
- MicroCms::ContentBlock Create (0.3ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
84
- MicroCms::ContentBlock Load (0.0ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
85
-  (0.3ms) rollback transaction
86
-  (0.1ms) begin transaction
87
-  (0.1ms) rollback transaction
88
-  (1.4ms) SELECT sqlite_version(*)
89
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
90
-  (0.1ms) SELECT sqlite_version(*)
91
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
92
-  (0.1ms) begin transaction
93
-  (0.0ms) SAVEPOINT active_record_1
94
- MicroCms::ContentBlock Create (2.2ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
96
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
97
- Started PUT "/micro_cms/content_block/my-path-de.js?authorization_token=my-securely-generated-auth-token&micro_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
-  (0.5ms) rollback transaction
102
-  (0.1ms) begin transaction
103
- Started PUT "/micro_cms/content_block/not-existent.js?authorization_token=my-securely-generated-auth-token&micro_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
-  (0.1ms) rollback transaction
108
-  (1.0ms) SELECT sqlite_version(*)
109
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
110
-  (0.0ms) SELECT sqlite_version(*)
111
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
112
-  (0.1ms) begin transaction
113
-  (0.2ms) SAVEPOINT active_record_1
114
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
116
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
117
- Started PUT "/micro_cms/content_block/my-path-de.js?authorization_token=my-securely-generated-auth-token&micro_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
-  (0.4ms) rollback transaction
122
-  (0.1ms) begin transaction
123
- Started PUT "/micro_cms/content_block/not-existent.js?authorization_token=my-securely-generated-auth-token&micro_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
-  (0.1ms) rollback transaction
128
-  (1.0ms) SELECT sqlite_version(*)
129
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
130
-  (0.0ms) SELECT sqlite_version(*)
131
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
132
-  (0.1ms) begin transaction
133
-  (0.0ms) SAVEPOINT active_record_1
134
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
136
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["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&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-path-de"], ["LIMIT", 1]]
141
-  (0.0ms) SAVEPOINT active_record_1
142
- MicroCms::ContentBlock Update (5.7ms) UPDATE "micro_cms_content_blocks" SET "content" = ?, "updated_at" = ? WHERE "micro_cms_content_blocks"."id" = ? [["content", "my new content"], ["updated_at", "2019-09-30 14:41:23.144393"], ["id", 1]]
143
-  (0.1ms) RELEASE SAVEPOINT active_record_1
144
- Completed 204 No Content in 8ms (ActiveRecord: 5.9ms | Allocations: 1001)
145
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
146
-  (0.3ms) rollback transaction
147
-  (0.0ms) begin transaction
148
- Started PUT "/micro_cms/content_block/not-existent.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-token&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "not-existent"], ["LIMIT", 1]]
152
- Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms | Allocations: 442)
153
-  (0.0ms) rollback transaction
154
-  (2.0ms) SELECT sqlite_version(*)
155
-  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
156
-  (0.1ms) SELECT sqlite_version(*)
157
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
158
-  (0.1ms) begin transaction
159
-  (0.0ms) SAVEPOINT active_record_1
160
- MicroCms::ContentBlock Create (1.8ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
162
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["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&micro_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
-  (0.5ms) rollback transaction
168
-  (1.0ms) SELECT sqlite_version(*)
169
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
170
-  (0.0ms) SELECT sqlite_version(*)
171
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
172
-  (0.1ms) begin transaction
173
-  (0.0ms) SAVEPOINT active_record_1
174
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
176
-  (5.7ms) rollback transaction
177
-  (0.9ms) SELECT sqlite_version(*)
178
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
179
-  (0.0ms) SELECT sqlite_version(*)
180
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
181
-  (0.1ms) begin transaction
182
-  (0.1ms) SAVEPOINT active_record_1
183
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
185
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["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&micro_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
-  (0.6ms) rollback transaction
191
-  (0.9ms) SELECT sqlite_version(*)
192
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
193
-  (0.0ms) SELECT sqlite_version(*)
194
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
195
-  (0.1ms) begin transaction
196
-  (0.1ms) SAVEPOINT active_record_1
197
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
199
- Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-token&micro_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
-  (0.4ms) rollback transaction
204
-  (0.9ms) SELECT sqlite_version(*)
205
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
206
-  (0.0ms) SELECT sqlite_version(*)
207
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
208
-  (0.1ms) begin transaction
209
-  (0.0ms) SAVEPOINT active_record_1
210
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
212
- Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-token&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
217
-  (0.7ms) rollback transaction
218
-  (1.3ms) SELECT sqlite_version(*)
219
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
220
-  (0.0ms) SELECT sqlite_version(*)
221
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
222
-  (0.1ms) begin transaction
223
-  (0.1ms) rollback transaction
224
-  (0.0ms) begin transaction
225
-  (0.1ms) rollback transaction
226
-  (0.0ms) begin transaction
227
-  (0.0ms) rollback transaction
228
-  (0.0ms) begin transaction
229
-  (0.1ms) rollback transaction
230
-  (0.0ms) begin transaction
231
-  (0.0ms) rollback transaction
232
-  (0.1ms) begin transaction
233
-  (0.2ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
234
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
235
-  (0.0ms) SAVEPOINT active_record_1
236
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
238
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
239
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
240
-  (0.4ms) rollback transaction
241
-  (0.1ms) begin transaction
242
-  (0.1ms) SAVEPOINT active_record_1
243
- MicroCms::ContentBlock Create (0.3ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
245
- MicroCms::ContentBlock Load (0.0ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-content-block-en"], ["LIMIT", 1]]
246
-  (0.4ms) rollback transaction
247
-  (0.9ms) SELECT sqlite_version(*)
248
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
249
-  (0.0ms) SELECT sqlite_version(*)
250
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
251
-  (0.1ms) begin transaction
252
-  (0.0ms) SAVEPOINT active_record_1
253
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
255
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["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&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-path-de"], ["LIMIT", 1]]
260
-  (0.0ms) SAVEPOINT active_record_1
261
- MicroCms::ContentBlock Update (0.1ms) UPDATE "micro_cms_content_blocks" SET "content" = ?, "updated_at" = ? WHERE "micro_cms_content_blocks"."id" = ? [["content", "my new content"], ["updated_at", "2019-09-30 15:48:34.595093"], ["id", 1]]
262
-  (0.0ms) RELEASE SAVEPOINT active_record_1
263
- Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1073)
264
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
265
-  (0.5ms) rollback transaction
266
-  (0.1ms) begin transaction
267
- Started PUT "/micro_cms/content_block/not-existent.js?micro_cms_content_block%5Bauthorization_token%5D=my-securely-generated-auth-token&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "not-existent"], ["LIMIT", 1]]
271
- Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms | Allocations: 513)
272
-  (0.0ms) rollback transaction
273
-  (0.0ms) begin transaction
274
-  (0.1ms) SAVEPOINT active_record_1
275
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
277
- Started PUT "/micro_cms/content_block/my-path-de.js?micro_cms_content_block%5Bauthorization_token%5D=my-evil-spoofing-token&micro_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
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
282
-  (0.3ms) rollback transaction
283
-  (2.0ms) SELECT sqlite_version(*)
284
-  (2.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
285
-  (0.1ms) SELECT sqlite_version(*)
286
-  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
287
-  (0.1ms) begin transaction
288
- MicroCms::ContentBlock Load (0.5ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
289
-  (0.1ms) SAVEPOINT active_record_1
290
- MicroCms::ContentBlock Create (0.8ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
292
-  (0.1ms) SAVEPOINT active_record_1
293
- MicroCms::ContentBlock Create (0.2ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
295
-  (0.7ms) rollback transaction
296
-  (1.9ms) SELECT sqlite_version(*)
297
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
298
-  (0.1ms) SELECT sqlite_version(*)
299
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
300
-  (0.1ms) begin transaction
301
-  (0.1ms) SAVEPOINT active_record_1
302
- MicroCms::ContentBlock Create (0.5ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
304
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
305
-  (5.6ms) rollback transaction
306
-  (2.2ms) SELECT sqlite_version(*)
307
-  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
308
-  (0.1ms) SELECT sqlite_version(*)
309
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
310
-  (0.2ms) begin transaction
311
-  (0.1ms) SAVEPOINT active_record_1
312
- MicroCms::ContentBlock Create (1.1ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
314
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
315
-  (0.7ms) rollback transaction
316
-  (1.9ms) SELECT sqlite_version(*)
317
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
318
-  (0.1ms) SELECT sqlite_version(*)
319
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
320
-  (0.1ms) begin transaction
321
-  (0.2ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
322
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
323
-  (0.1ms) SAVEPOINT active_record_1
324
- MicroCms::ContentBlock Create (0.7ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
326
- Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 2.7ms | Allocations: 726)
327
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
328
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
329
-  (1.5ms) rollback transaction
330
-  (0.1ms) begin transaction
331
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
332
-  (0.1ms) SAVEPOINT active_record_1
333
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
335
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
336
-  (0.5ms) rollback transaction
337
-  (0.1ms) begin transaction
338
-  (0.3ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
339
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
340
-  (0.1ms) SAVEPOINT active_record_1
341
- MicroCms::ContentBlock Create (0.5ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["path", "my-custom-path-en"], ["content", " &lt;p&gt;This is my custom content&lt;/p&gt;"], ["created_at", "2019-09-30 16:02:01.660270"], ["updated_at", "2019-09-30 16:02:01.660270"]]
342
-  (0.1ms) RELEASE SAVEPOINT active_record_1
343
- Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 0.6ms | Allocations: 169)
344
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
345
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
346
-  (0.6ms) rollback transaction
347
-  (0.2ms) begin transaction
348
-  (0.2ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
349
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
350
-  (0.1ms) SAVEPOINT active_record_1
351
- MicroCms::ContentBlock Create (0.8ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
353
- Rendered /Users/lukas/r/micro_cms/app/views/micro_cms/_content_block.html.erb (Duration: 0.6ms | Allocations: 169)
354
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
355
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
356
-  (0.6ms) rollback transaction
357
-  (0.1ms) begin transaction
358
-  (0.1ms) SAVEPOINT active_record_1
359
- MicroCms::ContentBlock Create (0.5ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
361
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
362
-  (0.5ms) rollback transaction
363
-  (1.8ms) SELECT sqlite_version(*)
364
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
365
-  (0.1ms) SELECT sqlite_version(*)
366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
367
-  (0.3ms) begin transaction
368
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
369
-  (0.1ms) rollback transaction
370
-  (2.0ms) SELECT sqlite_version(*)
371
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
372
-  (0.1ms) SELECT sqlite_version(*)
373
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
374
-  (0.1ms) begin transaction
375
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
376
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
377
-  (0.1ms) SAVEPOINT active_record_1
378
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
380
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
381
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
382
-  (5.9ms) rollback transaction
383
-  (1.8ms) SELECT sqlite_version(*)
384
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
385
-  (0.1ms) SELECT sqlite_version(*)
386
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
387
-  (0.1ms) begin transaction
388
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
389
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
390
-  (0.1ms) SAVEPOINT active_record_1
391
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
393
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
394
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
395
-  (0.7ms) rollback transaction
396
-  (1.9ms) SELECT sqlite_version(*)
397
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
398
-  (0.1ms) SELECT sqlite_version(*)
399
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
400
-  (0.1ms) begin transaction
401
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
402
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
403
-  (0.1ms) SAVEPOINT active_record_1
404
- MicroCms::ContentBlock Create (0.8ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["path", "my-nonexistent-path-en"], ["content", " &lt;p&gt;This is my custom content&lt;/p&gt;"], ["created_at", "2019-09-30 16:04:40.962829"], ["updated_at", "2019-09-30 16:04:40.962829"]]
405
-  (0.1ms) RELEASE SAVEPOINT active_record_1
406
-  (0.2ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
407
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
408
-  (6.0ms) rollback transaction
409
-  (1.9ms) SELECT sqlite_version(*)
410
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
411
-  (0.1ms) SELECT sqlite_version(*)
412
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
413
-  (0.1ms) begin transaction
414
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
415
- MicroCms::ContentBlock Load (0.1ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
416
-  (0.1ms) SAVEPOINT active_record_1
417
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["path", "my-nonexistent-path-en"], ["content", " &lt;p&gt;This is my custom content&lt;/p&gt;"], ["created_at", "2019-09-30 16:05:59.375738"], ["updated_at", "2019-09-30 16:05:59.375738"]]
418
-  (0.0ms) RELEASE SAVEPOINT active_record_1
419
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
420
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
421
-  (5.6ms) rollback transaction
422
-  (2.0ms) SELECT sqlite_version(*)
423
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
424
-  (0.1ms) SELECT sqlite_version(*)
425
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
426
-  (0.1ms) begin transaction
427
- MicroCms::ContentBlock Load (0.4ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
428
-  (0.2ms) SAVEPOINT active_record_1
429
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
431
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
432
-  (6.2ms) rollback transaction
433
-  (1.2ms) SELECT sqlite_version(*)
434
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
435
-  (0.1ms) SELECT sqlite_version(*)
436
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
437
-  (0.1ms) begin transaction
438
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
439
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
440
-  (0.1ms) SAVEPOINT active_record_1
441
- MicroCms::ContentBlock Create (0.4ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
443
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
444
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
445
-  (2.0ms) rollback transaction
446
-  (2.0ms) SELECT sqlite_version(*)
447
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
448
-  (0.1ms) SELECT sqlite_version(*)
449
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
450
-  (0.1ms) begin transaction
451
-  (0.1ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
452
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-nonexistent-path-en"], ["LIMIT", 1]]
453
-  (0.1ms) SAVEPOINT active_record_1
454
- MicroCms::ContentBlock Create (0.6ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
456
-  (0.2ms) SELECT COUNT(*) FROM "micro_cms_content_blocks"
457
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" ORDER BY "micro_cms_content_blocks"."created_at" DESC LIMIT ? [["LIMIT", 1]]
458
-  (5.7ms) rollback transaction
459
-  (1.0ms) SELECT sqlite_version(*)
460
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
461
-  (0.0ms) SELECT sqlite_version(*)
462
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
463
-  (0.1ms) begin transaction
464
-  (0.1ms) SAVEPOINT active_record_1
465
- MicroCms::ContentBlock Create (0.7ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
467
- MicroCms::ContentBlock Load (0.3ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
468
-  (5.8ms) rollback transaction
469
-  (2.0ms) SELECT sqlite_version(*)
470
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
471
-  (0.1ms) SELECT sqlite_version(*)
472
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
473
-  (0.1ms) begin transaction
474
-  (0.1ms) SAVEPOINT active_record_1
475
- MicroCms::ContentBlock Create (10.1ms) INSERT INTO "micro_cms_content_blocks" ("path", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
477
- MicroCms::ContentBlock Load (0.2ms) SELECT "micro_cms_content_blocks".* FROM "micro_cms_content_blocks" WHERE "micro_cms_content_blocks"."path" = ? LIMIT ? [["path", "my-custom-path-en"], ["LIMIT", 1]]
478
-  (0.8ms) rollback transaction
@@ -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 |