sitepress-rails 0.1.29 → 1.0.0

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: 401a760180d6fa086ddc28c9a46ba8beb605e2031e16ad579d6566e641ac35b3
4
- data.tar.gz: 6d125a704dfc1b5ebd1dbbc79d02bc6c5d7e9f6530880f1922c1539138155fe5
3
+ metadata.gz: 9b8d7a0d3d0bf5537540444e469a6a2d1240d27a198d5d7de3b12eee16987974
4
+ data.tar.gz: 5994a7fe8f40b317b990b488a5b434c1b84366b85baf7daa29de02485d628e3e
5
5
  SHA512:
6
- metadata.gz: fd06d47d16644a0cbfe9c7c662aa7f51c4a65bff6988e5477713b11e60f44eb473320a0cce150f721f919d2385f548f0559f9f6964d998545ffd56af5c9c4395
7
- data.tar.gz: 5a186ce97557a83e2dd286f358bb550998d389e1ea01640f4c7ac17ddf7674133f8dfa2d79ee605865bd76bfc82a716d46d4ce539c01820b03b6ee23c7e05859
6
+ metadata.gz: 43b0db4a564944e11f22c4092ebef89a48bef5ed196927b32309f56b848446fd4a230f04b7473026d4b68164f5cb122957671acc7acfc86532e3f7e273510e90
7
+ data.tar.gz: cfdac0511e6288950e9ab0218e0095012436bf511af57f5f7ee00cec22af5269dfc8588153ed6829038a6c08eebce89de5bd0750d47eba14e16bcd034457b3a2
data/README.md CHANGED
@@ -22,10 +22,16 @@ Then mount the engine into your `config/routes.rb` file:
22
22
  mount Sitepress::Engine => "/"
23
23
  ```
24
24
 
25
- Then add pages to the `app/views/pages` directory:
25
+ Create the `app/content/pages` in your rails project:
26
26
 
27
27
  ```bash
28
- $ echo "<h1>Hello</h1><p>It is <%= Time.now %> o'clock</p>" > app/views/pages/hello.html.erb
28
+ $ mkdir app/content/pages
29
+ ```
30
+
31
+ Then add pages to the `app/content/pages` directory:
32
+
33
+ ```bash
34
+ $ echo "<h1>Hello</h1><p>It is <%= Time.now %> o'clock</p>" > app/content/pages/hello.html.erb
29
35
  ```
30
36
 
31
37
  Point your browser to `http://127.0.0.1:3000/hello` and if all went well you should see the page you just created.
@@ -62,16 +62,15 @@ module Sitepress
62
62
  # exposed via some really convoluted private methods inside of the various
63
63
  # versions of Rails, so I try my best to hack out the path to the layout below.
64
64
  def controller_layout
65
- # Rails 4 and 5 expose the `_layout` via methods with different arity. Since
66
- # I don't want to hard code the version, I'm detecting arity and hoping that Rails 6
67
- # doesn't break this approach. If it does I'll probably have to get into the business
68
- # of version detection.
69
65
  private_layout_method = self.method(:_layout)
70
- layout = if private_layout_method.arity == 1 # Rails 5
71
- private_layout_method.call current_page_rails_formats
72
- else # Rails 4
73
- private_layout_method.call
74
- end
66
+ layout =
67
+ if Rails.version >= "6"
68
+ private_layout_method.call lookup_context, current_page_rails_formats
69
+ elsif Rails.version >= "5"
70
+ private_layout_method.call current_page_rails_formats
71
+ else
72
+ private_layout_method.call
73
+ end
75
74
 
76
75
  if layout.instance_of? String # Rails 4 and 5 return a string from above.
77
76
  layout
@@ -1,6 +1,8 @@
1
1
  require_relative 'boot'
2
2
 
3
- require 'rails/all'
3
+ require "action_controller/railtie"
4
+ require "action_mailer/railtie"
5
+ require "sprockets/railtie"
4
6
 
5
7
  Bundler.require(*Rails.groups)
6
8
  require "sitepress-rails"
@@ -19,7 +19,7 @@ Rails.application.configure do
19
19
  config.active_support.deprecation = :log
20
20
 
21
21
  # Raise an error on page load if there are pending migrations.
22
- config.active_record.migration_error = :page_load
22
+ # config.active_record.migration_error = :page_load
23
23
 
24
24
  # Debug mode disables concatenation and preprocessing of assets.
25
25
  # This option may cause significant delays in view rendering with a large
@@ -74,5 +74,5 @@ Rails.application.configure do
74
74
  end
75
75
 
76
76
  # Do not dump schema after migrations.
77
- config.active_record.dump_schema_after_migration = false
77
+ # config.active_record.dump_schema_after_migration = false
78
78
  end
@@ -79016,3 +79016,793 @@ Completed 404 Not Found in 6ms (ActiveRecord: 0.0ms)
79016
79016
   (0.1ms) rollback transaction
79017
79017
   (0.1ms) begin transaction
79018
79018
   (0.6ms) rollback transaction
79019
+  (8.8ms) begin transaction
79020
+  (0.1ms) rollback transaction
79021
+  (0.0ms) begin transaction
79022
+  (0.0ms) rollback transaction
79023
+  (0.0ms) begin transaction
79024
+  (0.1ms) rollback transaction
79025
+  (0.0ms) begin transaction
79026
+  (0.1ms) rollback transaction
79027
+  (0.0ms) begin transaction
79028
+  (0.1ms) rollback transaction
79029
+  (0.1ms) begin transaction
79030
+  (0.2ms) begin transaction
79031
+  (0.2ms) begin transaction
79032
+  (0.2ms) begin transaction
79033
+  (0.2ms) begin transaction
79034
+  (0.1ms) rollback transaction
79035
+  (0.0ms) begin transaction
79036
+  (0.2ms) begin transaction
79037
+  (0.2ms) begin transaction
79038
+  (0.0ms) rollback transaction
79039
+  (0.1ms) begin transaction
79040
+  (0.0ms) rollback transaction
79041
+  (0.0ms) begin transaction
79042
+  (0.0ms) rollback transaction
79043
+  (0.0ms) begin transaction
79044
+  (0.1ms) rollback transaction
79045
+  (0.0ms) begin transaction
79046
+ Processing by Sitepress::SiteController#show as HTML
79047
+ Parameters: {"resource_path"=>"/time"}
79048
+ Rendered app/content/pages/_stupid.html.erb (0.4ms)
79049
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.3ms)
79050
+ Rendered inline template within layouts/sitepress_test_layout (48.7ms)
79051
+ Completed 200 OK in 113ms (Views: 80.5ms | ActiveRecord: 0.0ms)
79052
+  (0.0ms) rollback transaction
79053
+  (0.0ms) begin transaction
79054
+ Processing by Sitepress::SiteController#show as HTML
79055
+ Parameters: {"resource_path"=>"/time"}
79056
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79057
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79058
+ Rendered inline template within layouts/sitepress_test_layout (1.0ms)
79059
+ Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
79060
+  (0.1ms) rollback transaction
79061
+  (0.0ms) begin transaction
79062
+ Processing by Sitepress::SiteController#show as HTML
79063
+ Parameters: {"resource_path"=>"/time"}
79064
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79065
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79066
+ Rendered inline template within layouts/sitepress_test_layout (0.8ms)
79067
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
79068
+  (0.1ms) rollback transaction
79069
+  (0.0ms) begin transaction
79070
+ Processing by Sitepress::SiteController#show as HTML
79071
+ Parameters: {"resource_path"=>"/time"}
79072
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79073
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79074
+ Rendered inline template within layouts/sitepress_test_layout (0.7ms)
79075
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
79076
+  (0.1ms) rollback transaction
79077
+  (0.0ms) begin transaction
79078
+ Processing by Sitepress::SiteController#show as HTML
79079
+ Parameters: {"resource_path"=>"/time"}
79080
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79081
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79082
+ Rendered inline template within layouts/sitepress_test_layout (0.8ms)
79083
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
79084
+  (0.1ms) rollback transaction
79085
+  (0.0ms) begin transaction
79086
+ Processing by Sitepress::SiteController#show as HTML
79087
+ Parameters: {"resource_path"=>"/time"}
79088
+ Rendered app/content/pages/_stupid.html.erb (0.1ms)
79089
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79090
+ Rendered inline template within layouts/sitepress_test_layout (0.9ms)
79091
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
79092
+  (0.0ms) rollback transaction
79093
+  (0.0ms) begin transaction
79094
+ Processing by Sitepress::SiteController#show as HTML
79095
+ Parameters: {"resource_path"=>"/hi"}
79096
+ Rendered inline template within layouts/application (0.4ms)
79097
+ Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.0ms)
79098
+  (0.1ms) rollback transaction
79099
+  (0.1ms) begin transaction
79100
+ Processing by Sitepress::SiteController#show as HTML
79101
+ Parameters: {"resource_path"=>"/hi"}
79102
+ Rendered inline template within layouts/application (0.3ms)
79103
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms)
79104
+  (0.1ms) rollback transaction
79105
+  (0.1ms) begin transaction
79106
+ Processing by Sitepress::SiteController#show as HTML
79107
+ Parameters: {"resource_path"=>"/hi"}
79108
+ Rendered inline template within layouts/application (0.3ms)
79109
+ Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.0ms)
79110
+  (0.1ms) rollback transaction
79111
+  (0.0ms) begin transaction
79112
+ Processing by Sitepress::SiteController#show as HTML
79113
+ Parameters: {"resource_path"=>"/hi"}
79114
+ Rendered inline template within layouts/application (0.2ms)
79115
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms)
79116
+  (0.3ms) rollback transaction
79117
+  (0.1ms) begin transaction
79118
+ Processing by Sitepress::SiteController#show as HTML
79119
+ Parameters: {"resource_path"=>"/non-existent"}
79120
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79121
+  (0.0ms) rollback transaction
79122
+  (0.0ms) begin transaction
79123
+  (0.0ms) rollback transaction
79124
+  (0.0ms) begin transaction
79125
+  (0.0ms) rollback transaction
79126
+  (0.0ms) begin transaction
79127
+  (0.1ms) rollback transaction
79128
+  (0.0ms) begin transaction
79129
+  (0.0ms) rollback transaction
79130
+  (0.0ms) begin transaction
79131
+  (0.0ms) rollback transaction
79132
+  (0.3ms) begin transaction
79133
+  (0.0ms) rollback transaction
79134
+  (0.0ms) begin transaction
79135
+  (0.0ms) rollback transaction
79136
+  (0.0ms) begin transaction
79137
+ Processing by Sitepress::SiteController#show as HTML
79138
+ Parameters: {"resource_path"=>"/hi"}
79139
+ Rendered inline template within layouts/application (1.0ms)
79140
+ Completed 200 OK in 101ms (Views: 8.5ms | ActiveRecord: 0.0ms)
79141
+  (0.1ms) rollback transaction
79142
+  (0.0ms) begin transaction
79143
+ Processing by Sitepress::SiteController#show as HTML
79144
+ Parameters: {"resource_path"=>"/hi"}
79145
+ Rendered inline template within layouts/application (0.2ms)
79146
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
79147
+  (0.1ms) rollback transaction
79148
+  (0.0ms) begin transaction
79149
+ Processing by Sitepress::SiteController#show as HTML
79150
+ Parameters: {"resource_path"=>"/hi"}
79151
+ Rendered inline template within layouts/application (0.2ms)
79152
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
79153
+  (0.0ms) rollback transaction
79154
+  (0.0ms) begin transaction
79155
+ Processing by Sitepress::SiteController#show as HTML
79156
+ Parameters: {"resource_path"=>"/hi"}
79157
+ Rendered inline template within layouts/application (0.3ms)
79158
+ Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.0ms)
79159
+  (0.1ms) rollback transaction
79160
+  (0.2ms) begin transaction
79161
+ Processing by Sitepress::SiteController#show as HTML
79162
+ Parameters: {"resource_path"=>"/non-existent"}
79163
+ Completed 404 Not Found in 3ms (ActiveRecord: 0.0ms)
79164
+  (0.0ms) rollback transaction
79165
+  (0.0ms) begin transaction
79166
+ Processing by Sitepress::SiteController#show as HTML
79167
+ Parameters: {"resource_path"=>"/time"}
79168
+ Rendered app/content/pages/_stupid.html.erb (0.3ms)
79169
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.6ms)
79170
+ Rendered inline template within layouts/sitepress_test_layout (13.9ms)
79171
+ Completed 200 OK in 24ms (Views: 19.8ms | ActiveRecord: 0.0ms)
79172
+  (0.0ms) rollback transaction
79173
+  (0.4ms) begin transaction
79174
+ Processing by Sitepress::SiteController#show as HTML
79175
+ Parameters: {"resource_path"=>"/time"}
79176
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79177
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79178
+ Rendered inline template within layouts/sitepress_test_layout (1.0ms)
79179
+ Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
79180
+  (0.0ms) rollback transaction
79181
+  (0.0ms) begin transaction
79182
+ Processing by Sitepress::SiteController#show as HTML
79183
+ Parameters: {"resource_path"=>"/time"}
79184
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79185
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79186
+ Rendered inline template within layouts/sitepress_test_layout (0.5ms)
79187
+ Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
79188
+  (0.0ms) rollback transaction
79189
+  (0.0ms) begin transaction
79190
+ Processing by Sitepress::SiteController#show as HTML
79191
+ Parameters: {"resource_path"=>"/time"}
79192
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79193
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79194
+ Rendered inline template within layouts/sitepress_test_layout (0.7ms)
79195
+ Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
79196
+  (0.0ms) rollback transaction
79197
+  (0.0ms) begin transaction
79198
+ Processing by Sitepress::SiteController#show as HTML
79199
+ Parameters: {"resource_path"=>"/time"}
79200
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79201
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79202
+ Rendered inline template within layouts/sitepress_test_layout (0.5ms)
79203
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
79204
+  (0.0ms) rollback transaction
79205
+  (0.0ms) begin transaction
79206
+ Processing by Sitepress::SiteController#show as HTML
79207
+ Parameters: {"resource_path"=>"/time"}
79208
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79209
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79210
+ Rendered inline template within layouts/sitepress_test_layout (0.5ms)
79211
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
79212
+  (0.1ms) rollback transaction
79213
+  (0.0ms) begin transaction
79214
+  (0.0ms) rollback transaction
79215
+  (0.2ms) begin transaction
79216
+  (0.0ms) rollback transaction
79217
+  (0.0ms) begin transaction
79218
+  (0.0ms) rollback transaction
79219
+  (0.0ms) begin transaction
79220
+  (0.0ms) rollback transaction
79221
+  (0.0ms) begin transaction
79222
+  (0.0ms) rollback transaction
79223
+  (0.0ms) begin transaction
79224
+  (0.1ms) rollback transaction
79225
+  (0.0ms) begin transaction
79226
+  (0.1ms) rollback transaction
79227
+  (0.1ms) begin transaction
79228
+  (0.0ms) rollback transaction
79229
+  (0.0ms) begin transaction
79230
+  (0.1ms) begin transaction
79231
+  (0.1ms) begin transaction
79232
+  (0.1ms) begin transaction
79233
+  (0.1ms) begin transaction
79234
+  (0.0ms) rollback transaction
79235
+  (0.0ms) begin transaction
79236
+  (0.0ms) rollback transaction
79237
+  (0.0ms) begin transaction
79238
+  (0.0ms) rollback transaction
79239
+  (0.0ms) begin transaction
79240
+  (0.0ms) rollback transaction
79241
+  (0.0ms) begin transaction
79242
+  (0.2ms) begin transaction
79243
+  (0.1ms) begin transaction
79244
+  (0.0ms) rollback transaction
79245
+  (0.3ms) begin transaction
79246
+  (0.1ms) rollback transaction
79247
+  (0.1ms) begin transaction
79248
+  (0.1ms) rollback transaction
79249
+  (0.0ms) begin transaction
79250
+  (0.1ms) rollback transaction
79251
+  (0.1ms) begin transaction
79252
+  (0.1ms) rollback transaction
79253
+  (0.0ms) begin transaction
79254
+  (0.0ms) rollback transaction
79255
+  (0.0ms) begin transaction
79256
+  (0.8ms) rollback transaction
79257
+  (0.0ms) begin transaction
79258
+  (0.0ms) rollback transaction
79259
+  (0.0ms) begin transaction
79260
+  (0.2ms) begin transaction
79261
+  (0.2ms) begin transaction
79262
+  (0.1ms) begin transaction
79263
+  (0.2ms) begin transaction
79264
+  (0.1ms) rollback transaction
79265
+  (0.1ms) begin transaction
79266
+  (0.0ms) rollback transaction
79267
+  (0.0ms) begin transaction
79268
+  (0.1ms) rollback transaction
79269
+  (0.0ms) begin transaction
79270
+  (0.1ms) rollback transaction
79271
+  (0.7ms) begin transaction
79272
+  (0.2ms) begin transaction
79273
+  (0.2ms) begin transaction
79274
+  (0.1ms) rollback transaction
79275
+  (0.0ms) begin transaction
79276
+ Processing by Sitepress::SiteController#show as HTML
79277
+ Parameters: {"resource_path"=>"/hi"}
79278
+ Rendered inline template within layouts/application (0.7ms)
79279
+ Completed 200 OK in 71ms (Views: 17.8ms | ActiveRecord: 0.0ms)
79280
+  (0.1ms) rollback transaction
79281
+  (0.0ms) begin transaction
79282
+ Processing by Sitepress::SiteController#show as HTML
79283
+ Parameters: {"resource_path"=>"/hi"}
79284
+ Rendered inline template within layouts/application (0.3ms)
79285
+ Completed 200 OK in 43ms (Views: 4.2ms | ActiveRecord: 0.0ms)
79286
+  (0.1ms) rollback transaction
79287
+  (0.0ms) begin transaction
79288
+ Processing by Sitepress::SiteController#show as HTML
79289
+ Parameters: {"resource_path"=>"/hi"}
79290
+ Rendered inline template within layouts/application (0.3ms)
79291
+ Completed 200 OK in 35ms (Views: 4.5ms | ActiveRecord: 0.0ms)
79292
+  (0.1ms) rollback transaction
79293
+  (0.0ms) begin transaction
79294
+ Processing by Sitepress::SiteController#show as HTML
79295
+ Parameters: {"resource_path"=>"/hi"}
79296
+ Rendered inline template within layouts/application (0.3ms)
79297
+ Completed 200 OK in 35ms (Views: 3.4ms | ActiveRecord: 0.0ms)
79298
+  (0.0ms) rollback transaction
79299
+  (0.0ms) begin transaction
79300
+ Processing by Sitepress::SiteController#show as HTML
79301
+ Parameters: {"resource_path"=>"/time"}
79302
+ Rendered app/content/pages/_stupid.html.erb (0.3ms)
79303
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.2ms)
79304
+ Rendered inline template within layouts/sitepress_test_layout (33.7ms)
79305
+ Completed 200 OK in 74ms (Views: 52.4ms | ActiveRecord: 0.0ms)
79306
+  (0.0ms) rollback transaction
79307
+  (0.0ms) begin transaction
79308
+ Processing by Sitepress::SiteController#show as HTML
79309
+ Parameters: {"resource_path"=>"/time"}
79310
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79311
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79312
+ Rendered inline template within layouts/sitepress_test_layout (37.3ms)
79313
+ Completed 200 OK in 79ms (Views: 55.0ms | ActiveRecord: 0.0ms)
79314
+  (0.0ms) rollback transaction
79315
+  (0.0ms) begin transaction
79316
+ Processing by Sitepress::SiteController#show as HTML
79317
+ Parameters: {"resource_path"=>"/time"}
79318
+ Rendered app/content/pages/_stupid.html.erb (0.1ms)
79319
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79320
+ Rendered inline template within layouts/sitepress_test_layout (33.3ms)
79321
+ Completed 200 OK in 74ms (Views: 53.2ms | ActiveRecord: 0.0ms)
79322
+  (0.0ms) rollback transaction
79323
+  (0.0ms) begin transaction
79324
+ Processing by Sitepress::SiteController#show as HTML
79325
+ Parameters: {"resource_path"=>"/time"}
79326
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79327
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79328
+ Rendered inline template within layouts/sitepress_test_layout (34.8ms)
79329
+ Completed 200 OK in 75ms (Views: 52.9ms | ActiveRecord: 0.0ms)
79330
+  (0.0ms) rollback transaction
79331
+  (0.0ms) begin transaction
79332
+ Processing by Sitepress::SiteController#show as HTML
79333
+ Parameters: {"resource_path"=>"/time"}
79334
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79335
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79336
+ Rendered inline template within layouts/sitepress_test_layout (30.6ms)
79337
+ Completed 200 OK in 72ms (Views: 47.9ms | ActiveRecord: 0.0ms)
79338
+  (0.1ms) rollback transaction
79339
+  (0.1ms) begin transaction
79340
+ Processing by Sitepress::SiteController#show as HTML
79341
+ Parameters: {"resource_path"=>"/time"}
79342
+ Rendered app/content/pages/_stupid.html.erb (0.1ms)
79343
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.1ms)
79344
+ Rendered inline template within layouts/sitepress_test_layout (35.3ms)
79345
+ Completed 200 OK in 82ms (Views: 60.3ms | ActiveRecord: 0.0ms)
79346
+  (0.0ms) rollback transaction
79347
+  (0.1ms) begin transaction
79348
+ Processing by Sitepress::SiteController#show as HTML
79349
+ Parameters: {"resource_path"=>"/non-existent"}
79350
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms)
79351
+  (0.0ms) rollback transaction
79352
+  (0.1ms) begin transaction
79353
+  (0.0ms) rollback transaction
79354
+  (0.1ms) begin transaction
79355
+  (0.0ms) rollback transaction
79356
+  (0.1ms) begin transaction
79357
+  (0.0ms) rollback transaction
79358
+  (0.3ms) begin transaction
79359
+  (0.2ms) begin transaction
79360
+  (0.1ms) begin transaction
79361
+  (0.2ms) begin transaction
79362
+  (0.2ms) begin transaction
79363
+  (0.1ms) rollback transaction
79364
+  (0.0ms) begin transaction
79365
+  (0.1ms) rollback transaction
79366
+  (0.0ms) begin transaction
79367
+  (0.0ms) rollback transaction
79368
+  (0.0ms) begin transaction
79369
+  (0.0ms) rollback transaction
79370
+  (0.0ms) begin transaction
79371
+  (0.2ms) begin transaction
79372
+  (0.2ms) begin transaction
79373
+  (0.1ms) rollback transaction
79374
+  (0.0ms) begin transaction
79375
+  (0.0ms) rollback transaction
79376
+  (0.0ms) begin transaction
79377
+  (0.0ms) rollback transaction
79378
+  (0.0ms) begin transaction
79379
+  (0.1ms) rollback transaction
79380
+  (0.0ms) begin transaction
79381
+  (0.2ms) rollback transaction
79382
+  (0.1ms) begin transaction
79383
+  (0.1ms) rollback transaction
79384
+  (0.1ms) begin transaction
79385
+  (0.0ms) rollback transaction
79386
+  (0.0ms) begin transaction
79387
+  (0.0ms) rollback transaction
79388
+  (0.0ms) begin transaction
79389
+  (0.1ms) rollback transaction
79390
+  (0.0ms) begin transaction
79391
+  (0.1ms) rollback transaction
79392
+  (0.1ms) begin transaction
79393
+  (0.1ms) rollback transaction
79394
+  (0.1ms) begin transaction
79395
+ Processing by Sitepress::SiteController#show as HTML
79396
+ Parameters: {"resource_path"=>"/hi"}
79397
+ Rendered inline template within layouts/application (0.3ms)
79398
+ Completed 200 OK in 35ms (Views: 6.7ms | ActiveRecord: 0.0ms)
79399
+  (0.0ms) rollback transaction
79400
+  (0.0ms) begin transaction
79401
+ Processing by Sitepress::SiteController#show as HTML
79402
+ Parameters: {"resource_path"=>"/hi"}
79403
+ Rendered inline template within layouts/application (0.2ms)
79404
+ Completed 200 OK in 29ms (Views: 2.8ms | ActiveRecord: 0.0ms)
79405
+  (0.0ms) rollback transaction
79406
+  (0.0ms) begin transaction
79407
+ Processing by Sitepress::SiteController#show as HTML
79408
+ Parameters: {"resource_path"=>"/hi"}
79409
+ Rendered inline template within layouts/application (0.2ms)
79410
+ Completed 200 OK in 26ms (Views: 2.8ms | ActiveRecord: 0.0ms)
79411
+  (0.0ms) rollback transaction
79412
+  (0.0ms) begin transaction
79413
+ Processing by Sitepress::SiteController#show as HTML
79414
+ Parameters: {"resource_path"=>"/hi"}
79415
+ Rendered inline template within layouts/application (0.2ms)
79416
+ Completed 200 OK in 26ms (Views: 3.1ms | ActiveRecord: 0.0ms)
79417
+  (0.1ms) rollback transaction
79418
+  (0.0ms) begin transaction
79419
+ Processing by Sitepress::SiteController#show as HTML
79420
+ Parameters: {"resource_path"=>"/time"}
79421
+ Rendered app/content/pages/_stupid.html.erb (0.2ms)
79422
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.2ms)
79423
+ Rendered inline template within layouts/sitepress_test_layout (30.5ms)
79424
+ Completed 200 OK in 75ms (Views: 48.6ms | ActiveRecord: 0.0ms)
79425
+  (0.0ms) rollback transaction
79426
+  (0.0ms) begin transaction
79427
+ Processing by Sitepress::SiteController#show as HTML
79428
+ Parameters: {"resource_path"=>"/time"}
79429
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79430
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79431
+ Rendered inline template within layouts/sitepress_test_layout (31.7ms)
79432
+ Completed 200 OK in 69ms (Views: 48.1ms | ActiveRecord: 0.0ms)
79433
+  (0.0ms) rollback transaction
79434
+  (0.0ms) begin transaction
79435
+ Processing by Sitepress::SiteController#show as HTML
79436
+ Parameters: {"resource_path"=>"/time"}
79437
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79438
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79439
+ Rendered inline template within layouts/sitepress_test_layout (29.5ms)
79440
+ Completed 200 OK in 66ms (Views: 45.3ms | ActiveRecord: 0.0ms)
79441
+  (0.0ms) rollback transaction
79442
+  (0.0ms) begin transaction
79443
+ Processing by Sitepress::SiteController#show as HTML
79444
+ Parameters: {"resource_path"=>"/time"}
79445
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79446
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79447
+ Rendered inline template within layouts/sitepress_test_layout (34.4ms)
79448
+ Completed 200 OK in 77ms (Views: 54.0ms | ActiveRecord: 0.0ms)
79449
+  (0.0ms) rollback transaction
79450
+  (0.0ms) begin transaction
79451
+ Processing by Sitepress::SiteController#show as HTML
79452
+ Parameters: {"resource_path"=>"/time"}
79453
+ Rendered app/content/pages/_stupid.html.erb (0.1ms)
79454
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79455
+ Rendered inline template within layouts/sitepress_test_layout (35.9ms)
79456
+ Completed 200 OK in 76ms (Views: 54.1ms | ActiveRecord: 0.0ms)
79457
+  (0.0ms) rollback transaction
79458
+  (0.1ms) begin transaction
79459
+ Processing by Sitepress::SiteController#show as HTML
79460
+ Parameters: {"resource_path"=>"/time"}
79461
+ Rendered app/content/pages/_stupid.html.erb (0.0ms)
79462
+ Rendered app/content/pages/partials/_really_stupid.html.erb (0.0ms)
79463
+ Rendered inline template within layouts/sitepress_test_layout (30.8ms)
79464
+ Completed 200 OK in 71ms (Views: 48.0ms | ActiveRecord: 0.0ms)
79465
+  (0.0ms) rollback transaction
79466
+  (0.0ms) begin transaction
79467
+ Processing by Sitepress::SiteController#show as HTML
79468
+ Parameters: {"resource_path"=>"/non-existent"}
79469
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms)
79470
+  (0.0ms) rollback transaction
79471
+  (0.3ms) begin transaction
79472
+  (0.0ms) rollback transaction
79473
+  (0.0ms) begin transaction
79474
+  (0.0ms) rollback transaction
79475
+  (0.0ms) begin transaction
79476
+  (0.1ms) rollback transaction
79477
+  (0.0ms) begin transaction
79478
+  (0.0ms) rollback transaction
79479
+  (0.0ms) begin transaction
79480
+  (0.1ms) rollback transaction
79481
+  (0.0ms) begin transaction
79482
+  (0.1ms) rollback transaction
79483
+  (0.1ms) begin transaction
79484
+  (0.0ms) rollback transaction
79485
+  (0.0ms) begin transaction
79486
+  (0.1ms) rollback transaction
79487
+  (0.0ms) begin transaction
79488
+  (0.0ms) rollback transaction
79489
+  (0.0ms) begin transaction
79490
+ Processing by Sitepress::SiteController#show as HTML
79491
+ Parameters: {"resource_path"=>"/non-existent"}
79492
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79493
+  (0.1ms) rollback transaction
79494
+  (0.0ms) begin transaction
79495
+ Processing by Sitepress::SiteController#show as HTML
79496
+ Parameters: {"resource_path"=>"/hi"}
79497
+ Completed 404 Not Found in 9ms (ActiveRecord: 0.0ms)
79498
+  (0.1ms) rollback transaction
79499
+  (0.0ms) begin transaction
79500
+ Processing by Sitepress::SiteController#show as HTML
79501
+ Parameters: {"resource_path"=>"/hi"}
79502
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79503
+  (0.0ms) rollback transaction
79504
+  (0.0ms) begin transaction
79505
+ Processing by Sitepress::SiteController#show as HTML
79506
+ Parameters: {"resource_path"=>"/hi"}
79507
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79508
+  (0.0ms) rollback transaction
79509
+  (0.1ms) begin transaction
79510
+ Processing by Sitepress::SiteController#show as HTML
79511
+ Parameters: {"resource_path"=>"/hi"}
79512
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79513
+  (0.0ms) rollback transaction
79514
+  (0.0ms) begin transaction
79515
+ Processing by Sitepress::SiteController#show as HTML
79516
+ Parameters: {"resource_path"=>"/time"}
79517
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79518
+  (0.0ms) rollback transaction
79519
+  (0.0ms) begin transaction
79520
+ Processing by Sitepress::SiteController#show as HTML
79521
+ Parameters: {"resource_path"=>"/time"}
79522
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms)
79523
+  (0.1ms) rollback transaction
79524
+  (0.0ms) begin transaction
79525
+ Processing by Sitepress::SiteController#show as HTML
79526
+ Parameters: {"resource_path"=>"/time"}
79527
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79528
+  (0.0ms) rollback transaction
79529
+  (0.0ms) begin transaction
79530
+ Processing by Sitepress::SiteController#show as HTML
79531
+ Parameters: {"resource_path"=>"/time"}
79532
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79533
+  (0.0ms) rollback transaction
79534
+  (0.0ms) begin transaction
79535
+ Processing by Sitepress::SiteController#show as HTML
79536
+ Parameters: {"resource_path"=>"/time"}
79537
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79538
+  (0.0ms) rollback transaction
79539
+  (0.0ms) begin transaction
79540
+ Processing by Sitepress::SiteController#show as HTML
79541
+ Parameters: {"resource_path"=>"/time"}
79542
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79543
+  (0.0ms) rollback transaction
79544
+  (0.0ms) begin transaction
79545
+  (0.0ms) rollback transaction
79546
+  (0.0ms) begin transaction
79547
+  (0.2ms) begin transaction
79548
+  (0.2ms) begin transaction
79549
+  (0.1ms) begin transaction
79550
+  (0.2ms) begin transaction
79551
+  (0.0ms) rollback transaction
79552
+  (0.0ms) begin transaction
79553
+  (0.2ms) begin transaction
79554
+  (0.2ms) begin transaction
79555
+  (0.1ms) rollback transaction
79556
+  (0.1ms) begin transaction
79557
+  (0.0ms) rollback transaction
79558
+  (0.0ms) begin transaction
79559
+  (0.0ms) rollback transaction
79560
+  (0.0ms) begin transaction
79561
+  (0.1ms) rollback transaction
79562
+  (0.3ms) begin transaction
79563
+  (0.1ms) rollback transaction
79564
+  (0.0ms) begin transaction
79565
+  (0.1ms) rollback transaction
79566
+  (0.0ms) begin transaction
79567
+  (0.1ms) rollback transaction
79568
+  (0.0ms) begin transaction
79569
+ Processing by Sitepress::SiteController#show as HTML
79570
+ Parameters: {"resource_path"=>"/non-existent"}
79571
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79572
+  (0.1ms) rollback transaction
79573
+  (0.0ms) begin transaction
79574
+ Processing by Sitepress::SiteController#show as HTML
79575
+ Parameters: {"resource_path"=>"/time"}
79576
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79577
+  (0.1ms) rollback transaction
79578
+  (0.0ms) begin transaction
79579
+ Processing by Sitepress::SiteController#show as HTML
79580
+ Parameters: {"resource_path"=>"/time"}
79581
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79582
+  (0.1ms) rollback transaction
79583
+  (0.0ms) begin transaction
79584
+ Processing by Sitepress::SiteController#show as HTML
79585
+ Parameters: {"resource_path"=>"/time"}
79586
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79587
+  (0.0ms) rollback transaction
79588
+  (0.0ms) begin transaction
79589
+ Processing by Sitepress::SiteController#show as HTML
79590
+ Parameters: {"resource_path"=>"/time"}
79591
+ Completed 404 Not Found in 3ms (ActiveRecord: 0.0ms)
79592
+  (0.0ms) rollback transaction
79593
+  (0.0ms) begin transaction
79594
+ Processing by Sitepress::SiteController#show as HTML
79595
+ Parameters: {"resource_path"=>"/time"}
79596
+ Completed 404 Not Found in 6ms (ActiveRecord: 0.0ms)
79597
+  (0.1ms) rollback transaction
79598
+  (0.0ms) begin transaction
79599
+ Processing by Sitepress::SiteController#show as HTML
79600
+ Parameters: {"resource_path"=>"/time"}
79601
+ Completed 404 Not Found in 6ms (ActiveRecord: 0.0ms)
79602
+  (0.1ms) rollback transaction
79603
+  (0.0ms) begin transaction
79604
+ Processing by Sitepress::SiteController#show as HTML
79605
+ Parameters: {"resource_path"=>"/hi"}
79606
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79607
+  (0.0ms) rollback transaction
79608
+  (0.0ms) begin transaction
79609
+ Processing by Sitepress::SiteController#show as HTML
79610
+ Parameters: {"resource_path"=>"/hi"}
79611
+ Completed 404 Not Found in 9ms (ActiveRecord: 0.0ms)
79612
+  (0.0ms) rollback transaction
79613
+  (0.0ms) begin transaction
79614
+ Processing by Sitepress::SiteController#show as HTML
79615
+ Parameters: {"resource_path"=>"/hi"}
79616
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79617
+  (0.0ms) rollback transaction
79618
+  (0.0ms) begin transaction
79619
+ Processing by Sitepress::SiteController#show as HTML
79620
+ Parameters: {"resource_path"=>"/hi"}
79621
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79622
+  (0.0ms) rollback transaction
79623
+  (0.0ms) begin transaction
79624
+  (0.1ms) begin transaction
79625
+  (0.2ms) begin transaction
79626
+  (0.1ms) begin transaction
79627
+  (0.1ms) begin transaction
79628
+  (0.0ms) rollback transaction
79629
+  (0.0ms) begin transaction
79630
+  (0.0ms) rollback transaction
79631
+  (0.0ms) begin transaction
79632
+  (0.0ms) rollback transaction
79633
+  (0.0ms) begin transaction
79634
+  (0.0ms) rollback transaction
79635
+  (0.0ms) begin transaction
79636
+  (0.2ms) begin transaction
79637
+  (0.2ms) begin transaction
79638
+  (0.0ms) rollback transaction
79639
+  (0.0ms) begin transaction
79640
+  (0.0ms) rollback transaction
79641
+  (0.0ms) begin transaction
79642
+  (0.1ms) rollback transaction
79643
+  (0.0ms) begin transaction
79644
+  (0.0ms) rollback transaction
79645
+  (0.0ms) begin transaction
79646
+  (0.1ms) rollback transaction
79647
+  (0.0ms) begin transaction
79648
+  (0.0ms) rollback transaction
79649
+  (0.0ms) begin transaction
79650
+  (0.0ms) rollback transaction
79651
+  (0.0ms) begin transaction
79652
+  (0.0ms) rollback transaction
79653
+  (0.3ms) begin transaction
79654
+ Processing by Sitepress::SiteController#show as HTML
79655
+ Parameters: {"resource_path"=>"/non-existent"}
79656
+ Completed 404 Not Found in 93ms (ActiveRecord: 0.0ms)
79657
+  (0.1ms) rollback transaction
79658
+  (0.0ms) begin transaction
79659
+ Processing by Sitepress::SiteController#show as HTML
79660
+ Parameters: {"resource_path"=>"/time"}
79661
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79662
+  (0.1ms) rollback transaction
79663
+  (0.1ms) begin transaction
79664
+ Processing by Sitepress::SiteController#show as HTML
79665
+ Parameters: {"resource_path"=>"/time"}
79666
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79667
+  (0.1ms) rollback transaction
79668
+  (0.1ms) begin transaction
79669
+ Processing by Sitepress::SiteController#show as HTML
79670
+ Parameters: {"resource_path"=>"/time"}
79671
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79672
+  (0.1ms) rollback transaction
79673
+  (0.1ms) begin transaction
79674
+ Processing by Sitepress::SiteController#show as HTML
79675
+ Parameters: {"resource_path"=>"/time"}
79676
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79677
+  (0.1ms) rollback transaction
79678
+  (0.1ms) begin transaction
79679
+ Processing by Sitepress::SiteController#show as HTML
79680
+ Parameters: {"resource_path"=>"/time"}
79681
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.0ms)
79682
+  (0.1ms) rollback transaction
79683
+  (0.0ms) begin transaction
79684
+ Processing by Sitepress::SiteController#show as HTML
79685
+ Parameters: {"resource_path"=>"/time"}
79686
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79687
+  (0.1ms) rollback transaction
79688
+  (0.1ms) begin transaction
79689
+ Processing by Sitepress::SiteController#show as HTML
79690
+ Parameters: {"resource_path"=>"/hi"}
79691
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.0ms)
79692
+  (0.6ms) rollback transaction
79693
+  (0.0ms) begin transaction
79694
+ Processing by Sitepress::SiteController#show as HTML
79695
+ Parameters: {"resource_path"=>"/hi"}
79696
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79697
+  (0.1ms) rollback transaction
79698
+  (0.0ms) begin transaction
79699
+ Processing by Sitepress::SiteController#show as HTML
79700
+ Parameters: {"resource_path"=>"/hi"}
79701
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.0ms)
79702
+  (0.1ms) rollback transaction
79703
+  (0.0ms) begin transaction
79704
+ Processing by Sitepress::SiteController#show as HTML
79705
+ Parameters: {"resource_path"=>"/hi"}
79706
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms)
79707
+  (0.0ms) rollback transaction
79708
+  (0.0ms) begin transaction
79709
+  (0.0ms) rollback transaction
79710
+  (0.0ms) begin transaction
79711
+  (0.1ms) rollback transaction
79712
+  (0.1ms) begin transaction
79713
+  (0.1ms) rollback transaction
79714
+  (0.0ms) begin transaction
79715
+  (0.0ms) rollback transaction
79716
+  (0.0ms) begin transaction
79717
+  (0.1ms) rollback transaction
79718
+  (0.0ms) begin transaction
79719
+  (0.1ms) rollback transaction
79720
+  (0.1ms) begin transaction
79721
+  (0.1ms) rollback transaction
79722
+  (0.0ms) begin transaction
79723
+  (0.0ms) rollback transaction
79724
+  (0.0ms) begin transaction
79725
+  (0.0ms) rollback transaction
79726
+  (0.0ms) begin transaction
79727
+  (0.1ms) rollback transaction
79728
+  (0.0ms) begin transaction
79729
+  (0.2ms) begin transaction
79730
+  (0.2ms) begin transaction
79731
+  (0.2ms) begin transaction
79732
+  (0.2ms) begin transaction
79733
+  (0.0ms) rollback transaction
79734
+  (0.0ms) begin transaction
79735
+  (0.0ms) rollback transaction
79736
+  (0.1ms) begin transaction
79737
+  (0.0ms) rollback transaction
79738
+  (0.0ms) begin transaction
79739
+  (0.0ms) rollback transaction
79740
+  (0.1ms) begin transaction
79741
+  (0.2ms) begin transaction
79742
+  (0.1ms) begin transaction
79743
+  (0.0ms) rollback transaction
79744
+ Processing by Sitepress::SiteController#show as HTML
79745
+ Parameters: {"resource_path"=>"/time"}
79746
+ Rendering inline template within layouts/sitepress_test_layout
79747
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.9ms | Allocations: 77)
79748
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 1.2ms | Allocations: 75)
79749
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 15.6ms | Allocations: 1053)
79750
+ Completed 200 OK in 247ms (Views: 27.6ms | Allocations: 124781)
79751
+ Processing by Sitepress::SiteController#show as HTML
79752
+ Parameters: {"resource_path"=>"/time"}
79753
+ Rendering inline template within layouts/sitepress_test_layout
79754
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
79755
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
79756
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
79757
+ Completed 200 OK in 5ms (Views: 1.5ms | Allocations: 2298)
79758
+ Processing by Sitepress::SiteController#show as HTML
79759
+ Parameters: {"resource_path"=>"/time"}
79760
+ Rendering inline template within layouts/sitepress_test_layout
79761
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
79762
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
79763
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 277)
79764
+ Completed 200 OK in 35ms (Views: 1.5ms | Allocations: 2304)
79765
+ Processing by Sitepress::SiteController#show as HTML
79766
+ Parameters: {"resource_path"=>"/time"}
79767
+ Rendering inline template within layouts/sitepress_test_layout
79768
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
79769
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
79770
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
79771
+ Completed 200 OK in 4ms (Views: 1.3ms | Allocations: 2298)
79772
+ Processing by Sitepress::SiteController#show as HTML
79773
+ Parameters: {"resource_path"=>"/time"}
79774
+ Rendering inline template within layouts/sitepress_test_layout
79775
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
79776
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
79777
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 1.6ms | Allocations: 274)
79778
+ Completed 200 OK in 8ms (Views: 2.6ms | Allocations: 2298)
79779
+ Processing by Sitepress::SiteController#show as HTML
79780
+ Parameters: {"resource_path"=>"/time"}
79781
+ Rendering inline template within layouts/sitepress_test_layout
79782
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
79783
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
79784
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 3.1ms | Allocations: 274)
79785
+ Completed 200 OK in 6ms (Views: 3.8ms | Allocations: 2298)
79786
+ Processing by Sitepress::SiteController#show as HTML
79787
+ Parameters: {"resource_path"=>"/non-existent"}
79788
+ Completed 404 Not Found in 3ms (Allocations: 1793)
79789
+ Processing by Sitepress::SiteController#show as HTML
79790
+ Parameters: {"resource_path"=>"/hi"}
79791
+ Rendering inline template within layouts/application
79792
+ Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 66)
79793
+ Completed 200 OK in 5ms (Views: 1.8ms | Allocations: 2162)
79794
+ Processing by Sitepress::SiteController#show as HTML
79795
+ Parameters: {"resource_path"=>"/hi"}
79796
+ Rendering inline template within layouts/application
79797
+ Rendered inline template within layouts/application (Duration: 0.4ms | Allocations: 65)
79798
+ Completed 200 OK in 7ms (Views: 3.0ms | Allocations: 2051)
79799
+ Processing by Sitepress::SiteController#show as HTML
79800
+ Parameters: {"resource_path"=>"/hi"}
79801
+ Rendering inline template within layouts/application
79802
+ Rendered inline template within layouts/application (Duration: 0.5ms | Allocations: 65)
79803
+ Completed 200 OK in 21ms (Views: 12.1ms | Allocations: 2048)
79804
+ Processing by Sitepress::SiteController#show as HTML
79805
+ Parameters: {"resource_path"=>"/hi"}
79806
+ Rendering inline template within layouts/application
79807
+ Rendered inline template within layouts/application (Duration: 0.4ms | Allocations: 65)
79808
+ Completed 200 OK in 7ms (Views: 3.2ms | Allocations: 2048)
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitepress-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.29
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-20 00:00:00.000000000 Z
11
+ date: 2020-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: sqlite3
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: rspec-rails
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +58,14 @@ dependencies:
72
58
  requirements:
73
59
  - - '='
74
60
  - !ruby/object:Gem::Version
75
- version: 0.1.29
61
+ version: 1.0.0
76
62
  type: :runtime
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - '='
81
67
  - !ruby/object:Gem::Version
82
- version: 0.1.29
68
+ version: 1.0.0
83
69
  description:
84
70
  email:
85
71
  - bradgessler@gmail.com
@@ -118,7 +104,6 @@ files:
118
104
  - spec/dummy/app/helpers/application_helper.rb
119
105
  - spec/dummy/app/jobs/application_job.rb
120
106
  - spec/dummy/app/mailers/application_mailer.rb
121
- - spec/dummy/app/models/application_record.rb
122
107
  - spec/dummy/app/views/baseline/show.html.erb
123
108
  - spec/dummy/app/views/layouts/application.html.erb
124
109
  - spec/dummy/app/views/layouts/mailer.html.erb
@@ -195,8 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
180
  - !ruby/object:Gem::Version
196
181
  version: '0'
197
182
  requirements: []
198
- rubyforge_project:
199
- rubygems_version: 2.7.3
183
+ rubygems_version: 3.1.2
200
184
  signing_key:
201
185
  specification_version: 4
202
186
  summary: Sitepress rails integration.
@@ -210,7 +194,6 @@ test_files:
210
194
  - spec/dummy/app/content/pages/hi.html
211
195
  - spec/dummy/app/content/pages/partials/_really_stupid.html.erb
212
196
  - spec/dummy/app/content/helpers/sample_helper.rb
213
- - spec/dummy/app/models/application_record.rb
214
197
  - spec/dummy/app/jobs/application_job.rb
215
198
  - spec/dummy/app/controllers/application_controller.rb
216
199
  - spec/dummy/app/controllers/baseline_controller.rb
@@ -1,3 +0,0 @@
1
- class ApplicationRecord < ActiveRecord::Base
2
- self.abstract_class = true
3
- end