frikandel 2.3.0 → 3.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: a857451a8180dae2842702e657035f3ca0d832fe79ba4846bbafc634ee6c542a
4
- data.tar.gz: ef1f626c20166d465e63b4ca36563c4bc6dc2eec54b7be4140adcb7b3fc04d05
3
+ metadata.gz: 953546b3b694c8e7efb06b2504d1a0bf2799a7278678d68fe2a6174b70834bcc
4
+ data.tar.gz: 076b382d7f30e0547a14e5e9f24c1632772902a0f984d358263423209cdbc3c1
5
5
  SHA512:
6
- metadata.gz: b1a0eb96d67790766871a4615e31d7c40c4181ce643d9fd1a4cb92ac43c28ca07700a8ef6d44a739e477d973377dabcceeec05182204d0dda4c79a5aaba167e7
7
- data.tar.gz: b0d089434e1f9910bdd1ac8f14c83e3599f020d4a881d47ee19a4b06dc3e5e8def9f4fd475f7a0d6de0688d794e089bbb342fa140071fdca466eb4458030475f
6
+ metadata.gz: d0e21f2e57371f59db23ea027a41243ea60ed7f9994c1cd8cecd51f427deacede7f23269bca37a17529a98d5f11c94e75977c1bf4c94a8c701b5cf6a29aeba19
7
+ data.tar.gz: 589ea44f7f68078121f336075b4f1434792e38a5a0401fc2f8579c52773a9512f62f3029dd90ffca35da68ab644213df5bc450db26ad755b1e4d8595a64ced33
@@ -0,0 +1,47 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: CI
9
+
10
+ on:
11
+ push:
12
+ branches: [main]
13
+ pull_request:
14
+ branches: [main]
15
+ schedule:
16
+ - cron: '30 5 * * *'
17
+
18
+ jobs:
19
+ test:
20
+
21
+ runs-on: ubuntu-latest
22
+ strategy:
23
+ matrix:
24
+ ruby-version: ['2.6', '2.7', '3.0', jruby, truffleruby]
25
+ gemfile: [rails-5.2.x, rails-6.0.x, rails-6.1.x]
26
+ exclude:
27
+ # ruby 3 is not compatible with rails < 6
28
+ - ruby-version: '3.0'
29
+ gemfile: rails-5.2.x
30
+ env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
31
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
32
+
33
+ name: test (ruby ${{ matrix.ruby-version }}, ${{ matrix.gemfile }})
34
+
35
+ steps:
36
+ - name: Checkout
37
+ uses: actions/checkout@v2
38
+ - name: Set up Ruby
39
+ # Using ruby/setup-ruby@v1 will automatically get bug fixes and new Ruby
40
+ # versions for ruby/setup-ruby (see
41
+ # https://github.com/ruby/setup-ruby#versioning).
42
+ uses: ruby/setup-ruby@v1
43
+ with:
44
+ ruby-version: ${{ matrix.ruby-version }}
45
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
46
+ - name: Run tests
47
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -5,6 +5,7 @@
5
5
  .ruby-*
6
6
  .yardoc
7
7
  Gemfile*.lock
8
+ *.gemfile.lock
8
9
  InstalledFiles
9
10
  _yardoc
10
11
  coverage
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Frikandel
2
2
  [![Gem Version](https://badge.fury.io/rb/frikandel.png)](http://badge.fury.io/rb/frikandel)
3
- [![Build Status](https://api.travis-ci.org/taktsoft/frikandel.png)](https://travis-ci.org/taktsoft/frikandel)
3
+ [![Build Status](https://github.com/taktsoft/frikandel/actions/workflows/ci.yml/badge.svg)](https://github.com/taktsoft/frikandel/actions/workflows/ci.yml)
4
4
  [![Code Climate](https://codeclimate.com/github/taktsoft/frikandel.png)](https://codeclimate.com/github/taktsoft/frikandel)
5
5
  [![Dependency Status](https://gemnasium.com/taktsoft/frikandel.svg)](https://gemnasium.com/taktsoft/frikandel)
6
6
 
@@ -18,7 +18,7 @@ By adding a TTL the attack window gets smaller. An stolen has to be used within
18
18
 
19
19
  ## Requirements
20
20
 
21
- Rails 3.2 and 4.x are currently supported.
21
+ Rails 5.2 and 6.x are currently supported.
22
22
 
23
23
 
24
24
  ## Installation
@@ -93,20 +93,20 @@ end
93
93
 
94
94
  ## Changes
95
95
 
96
- 2.1.0 -- Reset session only once if using the combination of TTL and IP address binding.
97
- 2.0.0 -- Added IP address binding. Renamed callback from 'on_expired_session' to 'on_invalid_session'.
96
+ * v3.0.0 -- Drop support for Rails < v5.2, add support for Rails v6.1 and switch from TravisCI to GithubActions
97
+ * v2.3.0 -- Add support for Rails v5.1 and Rails v6.0 and fix TravisCI builds
98
+ * v2.2.0 -- Add support for Rails v5.0 and update to RSpec 3
99
+ * v2.1.0 -- Reset session only once if using the combination of TTL and IP address binding.
100
+ * v2.0.0 -- Added IP address binding. Renamed callback from 'on_expired_session' to 'on_invalid_session'.
98
101
 
99
102
  ## Test
100
103
 
101
- To run the test suite with different rails version by selecting the corresponding gemfile. You can use this one liners:
104
+ To run the test suite with different rails version by selecting the corresponding gemfile. You can use these one liners:
102
105
 
103
- $ export BUNDLE_GEMFILE=Gemfile.rails-3.2.x && bundle update && bundle exec rake spec
104
- $ export BUNDLE_GEMFILE=Gemfile.rails-4.0.x && bundle update && bundle exec rake spec
105
- $ export BUNDLE_GEMFILE=Gemfile.rails-4.1.x && bundle update && bundle exec rake spec
106
- $ export BUNDLE_GEMFILE=Gemfile.rails-4.2.x && bundle update && bundle exec rake spec
107
- $ export BUNDLE_GEMFILE=Gemfile.rails-5.0.x && bundle update && bundle exec rake spec
108
- $ export BUNDLE_GEMFILE=Gemfile.rails-5.1.x && bundle update && bundle exec rake spec
109
- $ export BUNDLE_GEMFILE=Gemfile.rails-5.2.x && bundle update && bundle exec rake spec
106
+ $ export BUNDLE_GEMFILE=gemfiles/rails-5.2.x.gemfile && bundle update && bundle exec rake spec
107
+ $ export BUNDLE_GEMFILE=gemfiles/rails-6.0.x.gemfile && bundle update && bundle exec rake spec
108
+ $ export BUNDLE_GEMFILE=gemfiles/rails-6.1.x.gemfile && bundle update && bundle exec rake spec
109
+ $ export BUNDLE_GEMFILE=gemfiles/rails-head.gemfile && bundle update && bundle exec rake spec
110
110
 
111
111
  ## Contributing
112
112
  1. Fork it
data/frikandel.gemspec CHANGED
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
31
31
  spec.add_development_dependency "pry"
32
32
  spec.add_development_dependency "test-unit"
33
33
 
34
- spec.add_dependency "rails", ">= 3.2.0"
34
+ spec.add_dependency "rails", ">= 5.2.0", "< 7.0.0"
35
35
  end
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in frikandel.gemspec
4
- gemspec
4
+ gemspec path: "../"
5
5
 
6
6
  gem 'rails', '~> 5.2.0'
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in frikandel.gemspec
4
- gemspec
4
+ gemspec path: "../"
5
5
 
6
6
  gem 'rails', '~> 6.0.0'
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in frikandel.gemspec
4
+ gemspec path: "../"
5
+
6
+ gem 'rails', '~> 6.1.0'
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in frikandel.gemspec
4
- gemspec
4
+ gemspec path: "../"
5
5
 
6
6
  gem 'rails', 'github' => 'rails/rails'
@@ -1,3 +1,3 @@
1
1
  module Frikandel
2
- VERSION = "2.3.0"
2
+ VERSION = "3.0.0"
3
3
  end
@@ -2197,3 +2197,737 @@ Processing by LimitSessionLifetimeController#home as HTML
2197
2197
  Rendered text template (Duration: 0.0ms | Allocations: 1)
2198
2198
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 168)
2199
2199
  TRANSACTION (0.1ms) rollback transaction
2200
+  (0.1ms) begin transaction
2201
+  (0.1ms) rollback transaction
2202
+  (0.0ms) begin transaction
2203
+  (0.0ms) rollback transaction
2204
+  (0.0ms) begin transaction
2205
+  (0.0ms) rollback transaction
2206
+  (0.0ms) begin transaction
2207
+  (0.0ms) rollback transaction
2208
+  (0.0ms) begin transaction
2209
+  (0.0ms) rollback transaction
2210
+  (0.0ms) begin transaction
2211
+  (0.0ms) rollback transaction
2212
+  (0.0ms) begin transaction
2213
+  (0.0ms) rollback transaction
2214
+  (0.0ms) begin transaction
2215
+ Processing by BindSessionToIpAddressController#home as HTML
2216
+ Rendering text template
2217
+ Rendered text template (0.0ms)
2218
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2219
+  (0.0ms) rollback transaction
2220
+  (0.0ms) begin transaction
2221
+ Processing by BindSessionToIpAddressController#redirect_home as HTML
2222
+ Redirected to http://test.host/bind_session_to_ip_address_home
2223
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2224
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2225
+ Processing by BindSessionToIpAddressController#home as HTML
2226
+ Rendering text template
2227
+ Rendered text template (0.0ms)
2228
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2229
+  (0.0ms) rollback transaction
2230
+  (0.0ms) begin transaction
2231
+ Processing by BindSessionToIpAddressController#home as HTML
2232
+ Rendering text template
2233
+ Rendered text template (0.0ms)
2234
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2235
+  (0.0ms) rollback transaction
2236
+  (0.1ms) begin transaction
2237
+ Processing by BindSessionToIpAddressController#home as HTML
2238
+ Rendering text template
2239
+ Rendered text template (0.0ms)
2240
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2241
+  (0.1ms) rollback transaction
2242
+  (0.0ms) begin transaction
2243
+ Processing by BindSessionToIpAddressController#home as HTML
2244
+ Rendering text template
2245
+ Rendered text template (0.0ms)
2246
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2247
+  (0.0ms) rollback transaction
2248
+  (0.0ms) begin transaction
2249
+  (0.0ms) rollback transaction
2250
+  (0.0ms) begin transaction
2251
+  (0.0ms) rollback transaction
2252
+  (0.0ms) begin transaction
2253
+  (0.0ms) rollback transaction
2254
+  (0.0ms) begin transaction
2255
+  (0.0ms) rollback transaction
2256
+  (0.0ms) begin transaction
2257
+  (0.0ms) rollback transaction
2258
+  (0.0ms) begin transaction
2259
+  (0.0ms) rollback transaction
2260
+  (0.0ms) begin transaction
2261
+ Processing by LimitSessionLifetimeController#home as HTML
2262
+ Rendering text template
2263
+ Rendered text template (0.0ms)
2264
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2265
+ Processing by LimitSessionLifetimeController#home as HTML
2266
+ Redirected to http://test.host/
2267
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2268
+ Completed 302 Found in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2269
+  (0.0ms) rollback transaction
2270
+  (0.0ms) begin transaction
2271
+ Processing by LimitSessionLifetimeController#home as HTML
2272
+ Rendering text template
2273
+ Rendered text template (0.0ms)
2274
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2275
+ Processing by LimitSessionLifetimeController#home as HTML
2276
+ Rendering text template
2277
+ Rendered text template (0.0ms)
2278
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2279
+  (0.1ms) rollback transaction
2280
+  (0.2ms) begin transaction
2281
+ Processing by LimitSessionLifetimeController#home as HTML
2282
+ Rendering text template
2283
+ Rendered text template (0.0ms)
2284
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2285
+ Processing by LimitSessionLifetimeController#home as HTML
2286
+ Redirected to http://test.host/
2287
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2288
+ Completed 302 Found in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2289
+  (0.1ms) rollback transaction
2290
+  (0.1ms) begin transaction
2291
+ Processing by LimitSessionLifetimeController#home as HTML
2292
+ Rendering text template
2293
+ Rendered text template (0.0ms)
2294
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2295
+ Processing by LimitSessionLifetimeController#home as HTML
2296
+ Redirected to http://test.host/
2297
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2298
+ Completed 302 Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2299
+  (0.1ms) rollback transaction
2300
+  (0.1ms) begin transaction
2301
+ Processing by LimitSessionLifetimeController#redirect_home as HTML
2302
+ Redirected to http://test.host/limit_session_lifetime_home
2303
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2304
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2305
+ Processing by LimitSessionLifetimeController#home as HTML
2306
+ Rendering text template
2307
+ Rendered text template (0.0ms)
2308
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2309
+  (0.1ms) rollback transaction
2310
+  (0.1ms) begin transaction
2311
+ Processing by LimitSessionLifetimeController#home as HTML
2312
+ Rendering text template
2313
+ Rendered text template (0.0ms)
2314
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2315
+  (0.1ms) rollback transaction
2316
+  (0.1ms) begin transaction
2317
+ Processing by LimitSessionLifetimeController#home as HTML
2318
+ Rendering text template
2319
+ Rendered text template (0.0ms)
2320
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2321
+  (0.1ms) rollback transaction
2322
+  (0.1ms) begin transaction
2323
+ Processing by LimitSessionLifetimeController#home as HTML
2324
+ Rendering text template
2325
+ Rendered text template (0.0ms)
2326
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2327
+  (0.0ms) rollback transaction
2328
+  (0.0ms) begin transaction
2329
+ Processing by LimitSessionLifetimeController#home as HTML
2330
+ Rendering text template
2331
+ Rendered text template (0.0ms)
2332
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2333
+  (0.0ms) rollback transaction
2334
+  (0.0ms) begin transaction
2335
+ Processing by LimitSessionLifetimeController#home as HTML
2336
+ Rendering text template
2337
+ Rendered text template (0.0ms)
2338
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2339
+  (0.0ms) rollback transaction
2340
+  (0.0ms) begin transaction
2341
+ Processing by LimitSessionLifetimeController#home as HTML
2342
+ Rendering text template
2343
+ Rendered text template (0.0ms)
2344
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2345
+  (0.0ms) rollback transaction
2346
+  (0.0ms) begin transaction
2347
+ Processing by LimitSessionLifetimeController#home as HTML
2348
+ Rendering text template
2349
+ Rendered text template (0.0ms)
2350
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2351
+  (0.0ms) rollback transaction
2352
+  (0.0ms) begin transaction
2353
+  (0.0ms) rollback transaction
2354
+  (0.0ms) begin transaction
2355
+  (0.0ms) rollback transaction
2356
+  (0.0ms) begin transaction
2357
+  (0.0ms) rollback transaction
2358
+  (0.0ms) begin transaction
2359
+  (0.0ms) rollback transaction
2360
+  (0.0ms) begin transaction
2361
+  (0.0ms) rollback transaction
2362
+  (0.0ms) begin transaction
2363
+  (0.0ms) rollback transaction
2364
+  (0.0ms) begin transaction
2365
+  (0.0ms) rollback transaction
2366
+  (0.0ms) begin transaction
2367
+  (0.0ms) rollback transaction
2368
+  (0.0ms) begin transaction
2369
+  (0.0ms) rollback transaction
2370
+  (0.0ms) begin transaction
2371
+  (0.0ms) rollback transaction
2372
+  (0.0ms) begin transaction
2373
+  (0.0ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+  (0.0ms) rollback transaction
2376
+  (0.0ms) begin transaction
2377
+  (0.0ms) rollback transaction
2378
+  (0.0ms) begin transaction
2379
+  (0.0ms) rollback transaction
2380
+  (0.0ms) begin transaction
2381
+  (0.0ms) rollback transaction
2382
+  (0.1ms) begin transaction
2383
+  (0.0ms) rollback transaction
2384
+  (0.0ms) begin transaction
2385
+  (0.0ms) rollback transaction
2386
+  (0.0ms) begin transaction
2387
+ Processing by CombinedController#home as HTML
2388
+ Rendering text template
2389
+ Rendered text template (0.0ms)
2390
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2391
+  (0.0ms) rollback transaction
2392
+  (0.0ms) begin transaction
2393
+ Processing by CombinedController#home as HTML
2394
+ Rendering text template
2395
+ Rendered text template (0.0ms)
2396
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2397
+  (0.0ms) rollback transaction
2398
+  (0.0ms) begin transaction
2399
+ Processing by CombinedController#redirect_home as HTML
2400
+ Redirected to http://test.host/combined_controller_home
2401
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2402
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2403
+ Processing by CombinedController#home as HTML
2404
+ Rendering text template
2405
+ Rendered text template (0.0ms)
2406
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2407
+  (0.0ms) rollback transaction
2408
+  (0.0ms) begin transaction
2409
+ Processing by CombinedController#home as HTML
2410
+ Rendering text template
2411
+ Rendered text template (0.0ms)
2412
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2413
+  (0.0ms) rollback transaction
2414
+  (0.0ms) begin transaction
2415
+ Processing by CombinedController#home as HTML
2416
+ Rendering text template
2417
+ Rendered text template (0.0ms)
2418
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2419
+  (0.0ms) rollback transaction
2420
+  (0.0ms) begin transaction
2421
+ Processing by CombinedController#home as HTML
2422
+ Rendering text template
2423
+ Rendered text template (0.0ms)
2424
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2425
+  (0.0ms) rollback transaction
2426
+  (0.0ms) begin transaction
2427
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2428
+ Rendering text template
2429
+ Rendered text template (0.0ms)
2430
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2431
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2432
+ Redirected to http://test.host/
2433
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2434
+ Completed 302 Found in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2435
+  (0.0ms) rollback transaction
2436
+  (0.0ms) begin transaction
2437
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2438
+ Rendering text template
2439
+ Rendered text template (0.0ms)
2440
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2441
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2442
+ Completed 500 Internal Server Error in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2443
+  (0.0ms) rollback transaction
2444
+  (0.7ms) SELECT sqlite_version(*)
2445
+  (0.1ms) begin transaction
2446
+  (0.1ms) rollback transaction
2447
+  (0.0ms) begin transaction
2448
+  (0.0ms) rollback transaction
2449
+  (0.0ms) begin transaction
2450
+  (0.0ms) rollback transaction
2451
+  (0.0ms) begin transaction
2452
+  (0.0ms) rollback transaction
2453
+  (0.0ms) begin transaction
2454
+  (0.0ms) rollback transaction
2455
+  (0.0ms) begin transaction
2456
+  (0.0ms) rollback transaction
2457
+  (0.0ms) begin transaction
2458
+  (0.0ms) rollback transaction
2459
+  (0.0ms) begin transaction
2460
+  (0.0ms) rollback transaction
2461
+  (0.0ms) begin transaction
2462
+  (0.0ms) rollback transaction
2463
+  (0.0ms) begin transaction
2464
+  (0.0ms) rollback transaction
2465
+  (0.0ms) begin transaction
2466
+  (0.0ms) rollback transaction
2467
+  (0.0ms) begin transaction
2468
+  (0.0ms) rollback transaction
2469
+  (0.0ms) begin transaction
2470
+ Processing by BindSessionToIpAddressController#redirect_home as HTML
2471
+ Redirected to http://test.host/bind_session_to_ip_address_home
2472
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2473
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 229)
2474
+ Processing by BindSessionToIpAddressController#home as HTML
2475
+ Rendering text template
2476
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
2477
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 1285)
2478
+  (0.1ms) rollback transaction
2479
+  (0.0ms) begin transaction
2480
+ Processing by BindSessionToIpAddressController#home as HTML
2481
+ Rendering text template
2482
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2483
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 208)
2484
+  (0.0ms) rollback transaction
2485
+  (0.0ms) begin transaction
2486
+ Processing by BindSessionToIpAddressController#home as HTML
2487
+ Rendering text template
2488
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2489
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 166)
2490
+  (0.0ms) rollback transaction
2491
+  (0.0ms) begin transaction
2492
+ Processing by BindSessionToIpAddressController#home as HTML
2493
+ Rendering text template
2494
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2495
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 166)
2496
+  (0.0ms) rollback transaction
2497
+  (0.0ms) begin transaction
2498
+ Processing by BindSessionToIpAddressController#home as HTML
2499
+ Rendering text template
2500
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2501
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 254)
2502
+  (0.0ms) rollback transaction
2503
+  (0.0ms) begin transaction
2504
+  (0.0ms) rollback transaction
2505
+  (0.0ms) begin transaction
2506
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2507
+ Rendering text template
2508
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2509
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 359)
2510
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2511
+ Redirected to http://test.host/
2512
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2513
+ Completed 302 Found in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 131)
2514
+  (0.1ms) rollback transaction
2515
+  (0.0ms) begin transaction
2516
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2517
+ Rendering text template
2518
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2519
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 171)
2520
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2521
+ Completed 500 Internal Server Error in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 124)
2522
+  (0.0ms) rollback transaction
2523
+  (0.0ms) begin transaction
2524
+  (0.0ms) rollback transaction
2525
+  (0.0ms) begin transaction
2526
+  (0.0ms) rollback transaction
2527
+  (0.0ms) begin transaction
2528
+  (0.0ms) rollback transaction
2529
+  (0.0ms) begin transaction
2530
+  (0.0ms) rollback transaction
2531
+  (0.0ms) begin transaction
2532
+  (0.0ms) rollback transaction
2533
+  (0.0ms) begin transaction
2534
+  (0.0ms) rollback transaction
2535
+  (0.0ms) begin transaction
2536
+  (0.0ms) rollback transaction
2537
+  (0.1ms) begin transaction
2538
+  (0.0ms) rollback transaction
2539
+  (0.0ms) begin transaction
2540
+  (0.0ms) rollback transaction
2541
+  (0.0ms) begin transaction
2542
+  (0.0ms) rollback transaction
2543
+  (0.0ms) begin transaction
2544
+  (0.0ms) rollback transaction
2545
+  (0.0ms) begin transaction
2546
+  (0.0ms) rollback transaction
2547
+  (0.0ms) begin transaction
2548
+  (0.0ms) rollback transaction
2549
+  (0.0ms) begin transaction
2550
+  (0.0ms) rollback transaction
2551
+  (0.0ms) begin transaction
2552
+ Processing by LimitSessionLifetimeController#home as HTML
2553
+ Rendering text template
2554
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2555
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 370)
2556
+ Processing by LimitSessionLifetimeController#home as HTML
2557
+ Rendering text template
2558
+ Rendered text template (Duration: 0.1ms | Allocations: 1)
2559
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 180)
2560
+  (0.2ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ Processing by LimitSessionLifetimeController#home as HTML
2563
+ Rendering text template
2564
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2565
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 173)
2566
+ Processing by LimitSessionLifetimeController#home as HTML
2567
+ Redirected to http://test.host/
2568
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2569
+ Completed 302 Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 115)
2570
+  (0.1ms) rollback transaction
2571
+  (0.1ms) begin transaction
2572
+ Processing by LimitSessionLifetimeController#home as HTML
2573
+ Rendering text template
2574
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2575
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 173)
2576
+ Processing by LimitSessionLifetimeController#home as HTML
2577
+ Redirected to http://test.host/
2578
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2579
+ Completed 302 Found in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 117)
2580
+  (0.1ms) rollback transaction
2581
+  (0.1ms) begin transaction
2582
+ Processing by LimitSessionLifetimeController#home as HTML
2583
+ Rendering text template
2584
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2585
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 173)
2586
+ Processing by LimitSessionLifetimeController#home as HTML
2587
+ Redirected to http://test.host/
2588
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2589
+ Completed 302 Found in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 114)
2590
+  (0.1ms) rollback transaction
2591
+  (0.1ms) begin transaction
2592
+ Processing by LimitSessionLifetimeController#redirect_home as HTML
2593
+ Redirected to http://test.host/limit_session_lifetime_home
2594
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2595
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 139)
2596
+ Processing by LimitSessionLifetimeController#home as HTML
2597
+ Rendering text template
2598
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2599
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 183)
2600
+  (0.1ms) rollback transaction
2601
+  (0.1ms) begin transaction
2602
+ Processing by LimitSessionLifetimeController#home as HTML
2603
+ Rendering text template
2604
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2605
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 173)
2606
+  (0.1ms) rollback transaction
2607
+  (0.1ms) begin transaction
2608
+ Processing by LimitSessionLifetimeController#home as HTML
2609
+ Rendering text template
2610
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2611
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 173)
2612
+  (0.0ms) rollback transaction
2613
+  (0.0ms) begin transaction
2614
+ Processing by LimitSessionLifetimeController#home as HTML
2615
+ Rendering text template
2616
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2617
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 261)
2618
+  (0.1ms) rollback transaction
2619
+  (0.0ms) begin transaction
2620
+ Processing by LimitSessionLifetimeController#home as HTML
2621
+ Rendering text template
2622
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2623
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 173)
2624
+  (0.0ms) rollback transaction
2625
+  (0.0ms) begin transaction
2626
+ Processing by LimitSessionLifetimeController#home as HTML
2627
+ Rendering text template
2628
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2629
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 261)
2630
+  (0.0ms) rollback transaction
2631
+  (0.0ms) begin transaction
2632
+ Processing by LimitSessionLifetimeController#home as HTML
2633
+ Rendering text template
2634
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2635
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 265)
2636
+  (0.0ms) rollback transaction
2637
+  (0.0ms) begin transaction
2638
+ Processing by LimitSessionLifetimeController#home as HTML
2639
+ Rendering text template
2640
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2641
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 177)
2642
+  (0.0ms) rollback transaction
2643
+  (0.0ms) begin transaction
2644
+  (0.0ms) rollback transaction
2645
+  (0.0ms) begin transaction
2646
+  (0.0ms) rollback transaction
2647
+  (0.0ms) begin transaction
2648
+  (0.0ms) rollback transaction
2649
+  (0.0ms) begin transaction
2650
+ Processing by CombinedController#home as HTML
2651
+ Rendering text template
2652
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2653
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 408)
2654
+  (0.0ms) rollback transaction
2655
+  (0.0ms) begin transaction
2656
+ Processing by CombinedController#home as HTML
2657
+ Rendering text template
2658
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2659
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 194)
2660
+  (0.0ms) rollback transaction
2661
+  (0.1ms) begin transaction
2662
+ Processing by CombinedController#redirect_home as HTML
2663
+ Redirected to http://test.host/combined_controller_home
2664
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2665
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 161)
2666
+ Processing by CombinedController#home as HTML
2667
+ Rendering text template
2668
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2669
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 203)
2670
+  (0.0ms) rollback transaction
2671
+  (0.0ms) begin transaction
2672
+ Processing by CombinedController#home as HTML
2673
+ Rendering text template
2674
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2675
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 194)
2676
+  (0.0ms) rollback transaction
2677
+  (0.0ms) begin transaction
2678
+ Processing by CombinedController#home as HTML
2679
+ Rendering text template
2680
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2681
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 198)
2682
+  (0.0ms) rollback transaction
2683
+  (0.1ms) begin transaction
2684
+ Processing by CombinedController#home as HTML
2685
+ Rendering text template
2686
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2687
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 214)
2688
+  (0.0ms) rollback transaction
2689
+  (1.1ms) SELECT sqlite_version(*)
2690
+ TRANSACTION (0.1ms) begin transaction
2691
+ TRANSACTION (0.1ms) rollback transaction
2692
+ TRANSACTION (0.0ms) begin transaction
2693
+ TRANSACTION (0.0ms) rollback transaction
2694
+ TRANSACTION (0.0ms) begin transaction
2695
+ TRANSACTION (0.0ms) rollback transaction
2696
+ TRANSACTION (0.0ms) begin transaction
2697
+ TRANSACTION (0.0ms) rollback transaction
2698
+ TRANSACTION (0.0ms) begin transaction
2699
+ TRANSACTION (0.0ms) rollback transaction
2700
+ TRANSACTION (0.0ms) begin transaction
2701
+ TRANSACTION (0.0ms) rollback transaction
2702
+ TRANSACTION (0.0ms) begin transaction
2703
+ TRANSACTION (0.0ms) rollback transaction
2704
+ TRANSACTION (0.0ms) begin transaction
2705
+ Processing by LimitSessionLifetimeController#home as HTML
2706
+ Rendering text template
2707
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
2708
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms | Allocations: 1396)
2709
+ Processing by LimitSessionLifetimeController#home as HTML
2710
+ Redirected to http://test.host/
2711
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2712
+ Completed 302 Found in 0ms (Views: 3.0ms | ActiveRecord: 0.0ms | Allocations: 149)
2713
+ TRANSACTION (0.1ms) rollback transaction
2714
+ TRANSACTION (0.1ms) begin transaction
2715
+ Processing by LimitSessionLifetimeController#home as HTML
2716
+ Rendering text template
2717
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2718
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 164)
2719
+ TRANSACTION (0.0ms) rollback transaction
2720
+ TRANSACTION (0.0ms) begin transaction
2721
+ Processing by LimitSessionLifetimeController#home as HTML
2722
+ Rendering text template
2723
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2724
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 164)
2725
+ Processing by LimitSessionLifetimeController#home as HTML
2726
+ Redirected to http://test.host/
2727
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2728
+ Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 114)
2729
+ TRANSACTION (0.0ms) rollback transaction
2730
+ TRANSACTION (0.0ms) begin transaction
2731
+ Processing by LimitSessionLifetimeController#redirect_home as HTML
2732
+ Redirected to http://test.host/limit_session_lifetime_home
2733
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2734
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 134)
2735
+ Processing by LimitSessionLifetimeController#home as HTML
2736
+ Rendering text template
2737
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2738
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 174)
2739
+ TRANSACTION (0.0ms) rollback transaction
2740
+ TRANSACTION (0.0ms) begin transaction
2741
+ Processing by LimitSessionLifetimeController#home as HTML
2742
+ Rendering text template
2743
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2744
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 164)
2745
+ Processing by LimitSessionLifetimeController#home as HTML
2746
+ Rendering text template
2747
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2748
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 171)
2749
+ TRANSACTION (0.2ms) rollback transaction
2750
+ TRANSACTION (0.1ms) begin transaction
2751
+ Processing by LimitSessionLifetimeController#home as HTML
2752
+ Rendering text template
2753
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2754
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 164)
2755
+ Processing by LimitSessionLifetimeController#home as HTML
2756
+ Redirected to http://test.host/
2757
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2758
+ Completed 302 Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 110)
2759
+ TRANSACTION (0.1ms) rollback transaction
2760
+ TRANSACTION (0.2ms) begin transaction
2761
+ Processing by LimitSessionLifetimeController#home as HTML
2762
+ Rendering text template
2763
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2764
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 164)
2765
+ TRANSACTION (0.2ms) rollback transaction
2766
+ TRANSACTION (0.1ms) begin transaction
2767
+ Processing by LimitSessionLifetimeController#home as HTML
2768
+ Rendering text template
2769
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2770
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 252)
2771
+ TRANSACTION (0.1ms) rollback transaction
2772
+ TRANSACTION (0.1ms) begin transaction
2773
+ Processing by LimitSessionLifetimeController#home as HTML
2774
+ Rendering text template
2775
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2776
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 252)
2777
+ TRANSACTION (0.1ms) rollback transaction
2778
+ TRANSACTION (0.1ms) begin transaction
2779
+ Processing by LimitSessionLifetimeController#home as HTML
2780
+ Rendering text template
2781
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2782
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 164)
2783
+ TRANSACTION (0.1ms) rollback transaction
2784
+ TRANSACTION (0.1ms) begin transaction
2785
+ Processing by LimitSessionLifetimeController#home as HTML
2786
+ Rendering text template
2787
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2788
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 168)
2789
+ TRANSACTION (0.0ms) rollback transaction
2790
+ TRANSACTION (0.0ms) begin transaction
2791
+ Processing by LimitSessionLifetimeController#home as HTML
2792
+ Rendering text template
2793
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2794
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 256)
2795
+ TRANSACTION (0.0ms) rollback transaction
2796
+ TRANSACTION (0.0ms) begin transaction
2797
+ TRANSACTION (0.0ms) rollback transaction
2798
+ TRANSACTION (0.0ms) begin transaction
2799
+ TRANSACTION (0.0ms) rollback transaction
2800
+ TRANSACTION (0.0ms) begin transaction
2801
+ TRANSACTION (0.0ms) rollback transaction
2802
+ TRANSACTION (0.0ms) begin transaction
2803
+ TRANSACTION (0.0ms) rollback transaction
2804
+ TRANSACTION (0.0ms) begin transaction
2805
+ TRANSACTION (0.0ms) rollback transaction
2806
+ TRANSACTION (0.0ms) begin transaction
2807
+ TRANSACTION (0.0ms) rollback transaction
2808
+ TRANSACTION (0.0ms) begin transaction
2809
+ TRANSACTION (0.0ms) rollback transaction
2810
+ TRANSACTION (0.0ms) begin transaction
2811
+ TRANSACTION (0.0ms) rollback transaction
2812
+ TRANSACTION (0.0ms) begin transaction
2813
+ TRANSACTION (0.0ms) rollback transaction
2814
+ TRANSACTION (0.0ms) begin transaction
2815
+ TRANSACTION (0.0ms) rollback transaction
2816
+ TRANSACTION (0.0ms) begin transaction
2817
+ Processing by CombinedController#home as HTML
2818
+ Rendering text template
2819
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2820
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 389)
2821
+ TRANSACTION (0.0ms) rollback transaction
2822
+ TRANSACTION (0.0ms) begin transaction
2823
+ Processing by CombinedController#home as HTML
2824
+ Rendering text template
2825
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2826
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 185)
2827
+ TRANSACTION (0.0ms) rollback transaction
2828
+ TRANSACTION (0.0ms) begin transaction
2829
+ Processing by CombinedController#redirect_home as HTML
2830
+ Redirected to http://test.host/combined_controller_home
2831
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2832
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 155)
2833
+ Processing by CombinedController#home as HTML
2834
+ Rendering text template
2835
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2836
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 194)
2837
+ TRANSACTION (0.0ms) rollback transaction
2838
+ TRANSACTION (0.0ms) begin transaction
2839
+ Processing by CombinedController#home as HTML
2840
+ Rendering text template
2841
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2842
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 205)
2843
+ TRANSACTION (0.0ms) rollback transaction
2844
+ TRANSACTION (0.0ms) begin transaction
2845
+ Processing by CombinedController#home as HTML
2846
+ Rendering text template
2847
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2848
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 189)
2849
+ TRANSACTION (0.0ms) rollback transaction
2850
+ TRANSACTION (0.0ms) begin transaction
2851
+ Processing by CombinedController#home as HTML
2852
+ Rendering text template
2853
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2854
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 185)
2855
+ TRANSACTION (0.0ms) rollback transaction
2856
+ TRANSACTION (0.0ms) begin transaction
2857
+ TRANSACTION (0.0ms) rollback transaction
2858
+ TRANSACTION (0.0ms) begin transaction
2859
+ TRANSACTION (0.0ms) rollback transaction
2860
+ TRANSACTION (0.0ms) begin transaction
2861
+ TRANSACTION (0.0ms) rollback transaction
2862
+ TRANSACTION (0.0ms) begin transaction
2863
+ TRANSACTION (0.0ms) rollback transaction
2864
+ TRANSACTION (0.0ms) begin transaction
2865
+ TRANSACTION (0.0ms) rollback transaction
2866
+ TRANSACTION (0.0ms) begin transaction
2867
+ TRANSACTION (0.0ms) rollback transaction
2868
+ TRANSACTION (0.0ms) begin transaction
2869
+ TRANSACTION (0.0ms) rollback transaction
2870
+ TRANSACTION (0.0ms) begin transaction
2871
+ Processing by BindSessionToIpAddressController#home as HTML
2872
+ Rendering text template
2873
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2874
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 340)
2875
+ TRANSACTION (0.0ms) rollback transaction
2876
+ TRANSACTION (0.0ms) begin transaction
2877
+ Processing by BindSessionToIpAddressController#redirect_home as HTML
2878
+ Redirected to http://test.host/bind_session_to_ip_address_home
2879
+ Filter chain halted as :flash_alert_and_redirect_home rendered or redirected
2880
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 127)
2881
+ Processing by BindSessionToIpAddressController#home as HTML
2882
+ Rendering text template
2883
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2884
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 158)
2885
+ TRANSACTION (0.0ms) rollback transaction
2886
+ TRANSACTION (0.0ms) begin transaction
2887
+ Processing by BindSessionToIpAddressController#home as HTML
2888
+ Rendering text template
2889
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2890
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 199)
2891
+ TRANSACTION (0.0ms) rollback transaction
2892
+ TRANSACTION (0.0ms) begin transaction
2893
+ Processing by BindSessionToIpAddressController#home as HTML
2894
+ Rendering text template
2895
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2896
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 245)
2897
+ TRANSACTION (0.0ms) rollback transaction
2898
+ TRANSACTION (0.0ms) begin transaction
2899
+ Processing by BindSessionToIpAddressController#home as HTML
2900
+ Rendering text template
2901
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2902
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 157)
2903
+ TRANSACTION (0.0ms) rollback transaction
2904
+ TRANSACTION (0.0ms) begin transaction
2905
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2906
+ Rendering text template
2907
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2908
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 334)
2909
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2910
+ Redirected to http://test.host/
2911
+ Filter chain halted as :validate_session_timestamp rendered or redirected
2912
+ Completed 302 Found in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 117)
2913
+ TRANSACTION (0.0ms) rollback transaction
2914
+ TRANSACTION (0.0ms) begin transaction
2915
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2916
+ Rendering text template
2917
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
2918
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 161)
2919
+ Processing by CustomizedOnInvalidSessionController#home as HTML
2920
+ Completed 500 Internal Server Error in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 121)
2921
+ TRANSACTION (0.0ms) rollback transaction
2922
+ TRANSACTION (0.0ms) begin transaction
2923
+ TRANSACTION (0.0ms) rollback transaction
2924
+ TRANSACTION (0.0ms) begin transaction
2925
+ TRANSACTION (0.0ms) rollback transaction
2926
+ TRANSACTION (0.0ms) begin transaction
2927
+ TRANSACTION (0.0ms) rollback transaction
2928
+ TRANSACTION (0.0ms) begin transaction
2929
+ TRANSACTION (0.0ms) rollback transaction
2930
+ TRANSACTION (0.0ms) begin transaction
2931
+ TRANSACTION (0.0ms) rollback transaction
2932
+ TRANSACTION (0.0ms) begin transaction
2933
+ TRANSACTION (0.0ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: frikandel
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taktsoft
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-02 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -114,14 +114,20 @@ dependencies:
114
114
  requirements:
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: 3.2.0
117
+ version: 5.2.0
118
+ - - "<"
119
+ - !ruby/object:Gem::Version
120
+ version: 7.0.0
118
121
  type: :runtime
119
122
  prerelease: false
120
123
  version_requirements: !ruby/object:Gem::Requirement
121
124
  requirements:
122
125
  - - ">="
123
126
  - !ruby/object:Gem::Version
124
- version: 3.2.0
127
+ version: 5.2.0
128
+ - - "<"
129
+ - !ruby/object:Gem::Version
130
+ version: 7.0.0
125
131
  description: This gem adds a ttl to the session cookie of your application.
126
132
  email:
127
133
  - developers@taktsoft.com
@@ -129,18 +135,19 @@ executables: []
129
135
  extensions: []
130
136
  extra_rdoc_files: []
131
137
  files:
138
+ - ".github/workflows/ci.yml"
132
139
  - ".gitignore"
133
140
  - ".rspec"
134
- - ".travis.yml"
135
141
  - Gemfile
136
- - Gemfile.rails-5.2.x
137
- - Gemfile.rails-6.0.x
138
- - Gemfile.rails-head
139
142
  - Guardfile
140
143
  - LICENSE.txt
141
144
  - README.md
142
145
  - Rakefile
143
146
  - frikandel.gemspec
147
+ - gemfiles/rails-5.2.x.gemfile
148
+ - gemfiles/rails-6.0.x.gemfile
149
+ - gemfiles/rails-6.1.x.gemfile
150
+ - gemfiles/rails-head.gemfile
144
151
  - lib/frikandel.rb
145
152
  - lib/frikandel/bind_session_to_ip_address.rb
146
153
  - lib/frikandel/configuration.rb
data/.travis.yml DELETED
@@ -1,25 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.4
4
- - 2.5
5
- - 2.6
6
- - 2.7
7
- - ruby-head
8
- - jruby
9
- - truffleruby
10
- gemfile:
11
- - Gemfile.rails-5.2.x
12
- - Gemfile.rails-6.0.x
13
- - Gemfile.rails-head
14
- before_install:
15
- - gem update --system
16
- - gem install bundler
17
- matrix:
18
- allow_failures:
19
- - rvm: ruby-head
20
- - gemfile: Gemfile.rails-head
21
- exclude:
22
- - rvm: 2.4
23
- gemfile: Gemfile.rails-6.0.x
24
- - rvm: 2.4
25
- gemfile: Gemfile.rails-head