lockup 1.5 → 1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8a6bf9eec1d92448d31c179460807829a164ebfb
4
- data.tar.gz: 95794d845959b877b952aeca58583f8451b48349
2
+ SHA256:
3
+ metadata.gz: 1a05abd77f71e6fbbb6773ea4a774a5b1fbfb5bf9f0849edd5ae88c0ec0e7ee4
4
+ data.tar.gz: 94366159b3e5c2eef6d208bf8ca1a2a8cd867eacad7e8cf2fe76c704d2d54f45
5
5
  SHA512:
6
- metadata.gz: 3a54ec149ccd49a598316d40563f6ea6c11c867528a31560e5a23508b7e1d67bc4d94d809e627723cdee9f4832ab21dc20df63849a44bb01f6537fb4e67fd9ec
7
- data.tar.gz: 5725af2865efc4746b286410ea248ce55a1c8cb78a4843e1db3cd4521a9238c111a7e1cb13fd8d77141cbbf0328f9a77298d1027ed0d26f362f62f3d22469f2e
6
+ metadata.gz: cc2543f8f45173df6dfa52c0bc15773f709e3b900dbceda2c7ea58464bc9687dde58910fd5b76ecdc774aa5075232d1ffa15cc3471e3a235d2e68e25a90b0f05
7
+ data.tar.gz: 37ac450b84bed3aef5b823ec18330403ff3d1c4481ed401456fede0921c487f1da274f26ab3e4eb4cc6b317f640c687817e956cdaac112630a021da5542886f8
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2013 gb Studio, llc
1
+ Copyright 2013-2022 Interdiscipline (gb Studio, llc)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- <img src="http://lockupgem.com/github_host/lockup_mark.png" width="100" height="134" alt="Lockup Shield" />
1
+ <img src="http://lockup.interdiscipline.com/github_host/lockup_mark.png" width="100" height="134" alt="Lockup Shield" />
2
2
 
3
3
  # Lockup
4
4
 
5
- [![Gem Version](https://badge.fury.io/rb/lockup.svg)](http://badge.fury.io/rb/lockup)
5
+ [![Gem Version](https://badge.fury.io/rb/lockup.svg)](http://badge.fury.io/rb/lockup) [![Build Status](https://travis-ci.com/gblakeman/lockup.svg?branch=master)](https://travis-ci.com/github/gblakeman/lockup)
6
6
 
7
7
  A simple gem to more elegantly place a staging server or other in-progress rails application behind a basic codeword. It’s easy to implement, share with clients/collaborators, and more beautiful than the typical password-protection sheet.
8
8
 
@@ -10,33 +10,41 @@ _“Can I come into your fort?”_
10
10
 
11
11
  _“…what’s the codeword?”_
12
12
 
13
- (currently used in production with Rails 3.X, Rails 4.X, and Rails 5.X)
13
+ (currently used in production with Rails 3.X, Rails 4.X, Rails 5.X, and Rails 6.X)
14
14
 
15
- [Demos and more information.](http://lockupgem.com)
15
+ [Demos and more information.](http://lockup.interdiscipline.com)
16
16
 
17
17
  ## Installation
18
18
 
19
19
  1. Add this line to your application’s Gemfile:
20
20
 
21
- gem 'lockup'
21
+ ```ruby
22
+ gem 'lockup'
23
+ ```
22
24
 
23
25
  2. Define a codeword (see Usage below).
24
26
 
25
27
  3. Mount the engine in your application’s routes file (usually first, for best results):
26
28
 
27
- mount Lockup::Engine, at: '/lockup'
29
+ ```ruby
30
+ mount Lockup::Engine, at: '/lockup'
31
+ ```
28
32
 
29
33
  ## Usage
30
34
 
31
35
  To set a codeword, define LOCKUP_CODEWORD in your environments/your_environment.rb file like so:
32
36
 
33
- ENV["LOCKUP_CODEWORD"] = 'secret'
37
+ ```ruby
38
+ ENV['LOCKUP_CODEWORD'] = 'secret'
39
+ ```
34
40
 
35
41
  If you think you might need a hint:
36
42
 
37
- ENV["LOCKUP_HINT"] = 'Something that you do not tell everyone.'
43
+ ```ruby
44
+ ENV['LOCKUP_HINT'] = 'Something that you do not tell everyone.'
45
+ ```
38
46
 
39
- If you’re using Rails >= 4.1 or Rails >= 5.2, you can add your Lockup Codeword via Rails Secrets or Rails Credentials functionality in your secrets.yml or credentials.yml.enc file, respectively:
47
+ If you’re using Rails >= 4.1 or Rails >= 5.2, you can add your Lockup Codeword via Rails Secrets or Rails Credentials functionality in your `secrets.yml` or `credentials.yml.enc` file, respectively:
40
48
 
41
49
  ```yml
42
50
  lockup_codeword: 'love'
@@ -68,11 +76,15 @@ lockup_hint: 'Pepé Le Pew'
68
76
 
69
77
  2. In your application_controller.rb file, add:
70
78
 
71
- skip_before_action :check_for_lockup, raise: false
79
+ ```ruby
80
+ skip_before_action :check_for_lockup, raise: false
81
+ ```
72
82
 
73
83
  4. In the controller(s) you would like to restrict:
74
84
 
75
- before_action :check_for_lockup
85
+ ```ruby
86
+ before_action :check_for_lockup
87
+ ```
76
88
 
77
89
  ### Link it with no typing:
78
90
 
@@ -86,9 +98,11 @@ The visitor is redirected and the cookie is set without them ever seeing the Loc
86
98
 
87
99
  The cookie set by Lockup defaults to 5 years. If you want to set a shorter amount of time, you can specify a number of weeks:
88
100
 
89
- ENV["COOKIE_LIFETIME_IN_WEEKS"] = 4
101
+ ```ruby
102
+ ENV['COOKIE_LIFETIME_IN_WEEKS'] = 4
90
103
 
91
- cookie_lifetime_in_weeks: 4
104
+ cookie_lifetime_in_weeks: 4
105
+ ```
92
106
 
93
107
  ### Design Customization
94
108
 
@@ -98,6 +112,6 @@ If you would like to change the content or design of the lockup page, you can cr
98
112
 
99
113
  Pull requests are quite welcome.
100
114
 
101
- ## Project Site
115
+ ## Project Site (with Demo)
102
116
 
103
- [lockupgem.com](http://lockupgem.com)
117
+ [lockup.interdiscipline.com](https://lockup.interdiscipline.com)
@@ -1,3 +1,3 @@
1
1
  module Lockup
2
- VERSION = "1.5"
2
+ VERSION = "1.7"
3
3
  end
data/lib/lockup.rb CHANGED
@@ -27,7 +27,7 @@ module Lockup
27
27
 
28
28
  def check_for_lockup
29
29
  return unless respond_to?(:lockup) && lockup_codeword
30
- return if cookies[:lockup].present? && cookies[:lockup] == lockup_codeword.to_s.downcase
30
+ return if cookies && cookies[:lockup].present? && cookies[:lockup] == lockup_codeword.to_s.downcase
31
31
 
32
32
  redirect_to lockup.unlock_path(
33
33
  return_to: request.fullpath.split('?lockup_codeword')[0],
@@ -3,7 +3,7 @@ require File.expand_path('../boot', __FILE__)
3
3
  # Pick the frameworks you want:
4
4
  require "action_controller/railtie"
5
5
  require "action_mailer/railtie"
6
- require "sprockets/railtie"
6
+ # require "sprockets/railtie"
7
7
  require 'active_model'
8
8
 
9
9
  Bundler.require(*Rails.groups)
@@ -5662,3 +5662,663 @@ Processing by PostsController#index as HTML
5662
5662
  Rendering posts/index.html.erb within layouts/application
5663
5663
  Rendered posts/index.html.erb within layouts/application (0.5ms)
5664
5664
  Completed 200 OK in 9ms (Views: 7.1ms)
5665
+ Started GET "/posts?lookup_codeword=lolwut" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5666
+ Processing by PostsController#index as HTML
5667
+ Parameters: {"lookup_codeword"=>"lolwut"}
5668
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut
5669
+ Filter chain halted as :check_for_lockup rendered or redirected
5670
+ Completed 302 Found in 2ms
5671
+ Started GET "/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5672
+ Processing by Lockup::LockupController#unlock as HTML
5673
+ Parameters: {"return_to"=>"/posts?lookup_codeword=lolwut"}
5674
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5675
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (8.4ms)
5676
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.6ms)
5677
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.4ms)
5678
+ Completed 200 OK in 35ms (Views: 30.9ms)
5679
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5680
+ Processing by PostsController#index as HTML
5681
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5682
+ Filter chain halted as :check_for_lockup rendered or redirected
5683
+ Completed 302 Found in 1ms
5684
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5685
+ Processing by Lockup::LockupController#unlock as HTML
5686
+ Parameters: {"return_to"=>"/posts"}
5687
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5688
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.6ms)
5689
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5690
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5691
+ Completed 200 OK in 1ms (Views: 1.3ms)
5692
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5693
+ Processing by Lockup::LockupController#unlock as HTML
5694
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"omgponies", "return_to"=>"/posts"}, "button"=>""}
5695
+ Redirected to http://www.example.com/posts
5696
+ Completed 302 Found in 4ms
5697
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5698
+ Processing by PostsController#index as HTML
5699
+ Rendering posts/index.html.erb within layouts/application
5700
+ Rendered posts/index.html.erb within layouts/application (0.8ms)
5701
+ Completed 200 OK in 221ms (Views: 197.7ms)
5702
+ Started GET "/this-does-not-exist?lockup_codeword=omgponies" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5703
+ Processing by ApplicationController#render_404 as HTML
5704
+ Parameters: {"lockup_codeword"=>"omgponies", "path"=>"this-does-not-exist"}
5705
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist
5706
+ Filter chain halted as :check_for_lockup rendered or redirected
5707
+ Completed 302 Found in 1ms
5708
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5709
+ Processing by Lockup::LockupController#unlock as HTML
5710
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/this-does-not-exist"}
5711
+ Redirected to http://www.example.com/this-does-not-exist
5712
+ Completed 302 Found in 1ms
5713
+ Started GET "/this-does-not-exist" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5714
+ Processing by ApplicationController#render_404 as HTML
5715
+ Parameters: {"path"=>"this-does-not-exist"}
5716
+ Rendering public/404.html within layouts/application
5717
+ Rendered public/404.html within layouts/application (0.5ms)
5718
+ Completed 404 Not Found in 19ms (Views: 18.4ms)
5719
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5720
+ Processing by PostsController#index as HTML
5721
+ Parameters: {"lockup_codeword"=>"omgponies"}
5722
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5723
+ Filter chain halted as :check_for_lockup rendered or redirected
5724
+ Completed 302 Found in 1ms
5725
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5726
+ Processing by Lockup::LockupController#unlock as HTML
5727
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5728
+ Redirected to http://www.example.com/posts
5729
+ Completed 302 Found in 1ms
5730
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5731
+ Processing by PostsController#index as HTML
5732
+ Rendering posts/index.html.erb within layouts/application
5733
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
5734
+ Completed 200 OK in 3ms (Views: 2.3ms)
5735
+ Started GET "/posts/1" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5736
+ Processing by PostsController#show as HTML
5737
+ Parameters: {"id"=>"1"}
5738
+ Rendering posts/show.html.erb within layouts/application
5739
+ Rendered posts/show.html.erb within layouts/application (0.4ms)
5740
+ Completed 200 OK in 6ms (Views: 1.8ms)
5741
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5742
+ Processing by PostsController#index as HTML
5743
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5744
+ Filter chain halted as :check_for_lockup rendered or redirected
5745
+ Completed 302 Found in 1ms
5746
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5747
+ Processing by Lockup::LockupController#unlock as HTML
5748
+ Parameters: {"return_to"=>"/posts"}
5749
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5750
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.7ms)
5751
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5752
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5753
+ Completed 200 OK in 2ms (Views: 1.5ms)
5754
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5755
+ Processing by Lockup::LockupController#unlock as HTML
5756
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"lolwut", "return_to"=>"/posts"}, "button"=>""}
5757
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5758
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.5ms)
5759
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5760
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5761
+ Completed 200 OK in 1ms (Views: 1.2ms)
5762
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5763
+ Processing by PostsController#index as HTML
5764
+ Parameters: {"lockup_codeword"=>"omgponies"}
5765
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5766
+ Filter chain halted as :check_for_lockup rendered or redirected
5767
+ Completed 302 Found in 1ms
5768
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5769
+ Processing by Lockup::LockupController#unlock as HTML
5770
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5771
+ Completed 200 OK in 0ms
5772
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5773
+ Processing by PostsController#index as HTML
5774
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5775
+ Filter chain halted as :check_for_lockup rendered or redirected
5776
+ Completed 302 Found in 1ms
5777
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5778
+ Processing by Lockup::LockupController#unlock as HTML
5779
+ Parameters: {"return_to"=>"/posts"}
5780
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5781
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.6ms)
5782
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5783
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5784
+ Completed 200 OK in 2ms (Views: 1.6ms)
5785
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5786
+ Processing by PostsController#index as HTML
5787
+ Parameters: {"lockup_codeword"=>"omgponies"}
5788
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5789
+ Filter chain halted as :check_for_lockup rendered or redirected
5790
+ Completed 302 Found in 1ms
5791
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5792
+ Processing by Lockup::LockupController#unlock as HTML
5793
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5794
+ Redirected to http://www.example.com/posts
5795
+ Completed 302 Found in 1ms
5796
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5797
+ Processing by PostsController#index as HTML
5798
+ Rendering posts/index.html.erb within layouts/application
5799
+ Rendered posts/index.html.erb within layouts/application (0.5ms)
5800
+ Completed 200 OK in 3ms (Views: 2.1ms)
5801
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5802
+ Processing by PostsController#index as HTML
5803
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5804
+ Filter chain halted as :check_for_lockup rendered or redirected
5805
+ Completed 302 Found in 1ms
5806
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5807
+ Processing by Lockup::LockupController#unlock as HTML
5808
+ Parameters: {"return_to"=>"/posts"}
5809
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5810
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.7ms)
5811
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5812
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5813
+ Completed 200 OK in 2ms (Views: 1.9ms)
5814
+ Started GET "/posts" for 127.0.0.1 at 2019-09-05 10:44:00 -0700
5815
+ Processing by PostsController#index as HTML
5816
+ Rendering posts/index.html.erb within layouts/application
5817
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
5818
+ Completed 200 OK in 2ms (Views: 2.0ms)
5819
+ Processing by Lockup::LockupController#unlock as TEXT
5820
+ Completed 406 Not Acceptable in 0ms
5821
+ Processing by Lockup::LockupController#unlock as HTML
5822
+ Parameters: {"foo"=>"bar"}
5823
+ Completed 200 OK in 0ms
5824
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5825
+ Processing by PostsController#index as HTML
5826
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5827
+ Filter chain halted as :check_for_lockup rendered or redirected
5828
+ Completed 302 Found in 1ms
5829
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5830
+ Processing by Lockup::LockupController#unlock as HTML
5831
+ Parameters: {"return_to"=>"/posts"}
5832
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5833
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (4.0ms)
5834
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.2ms)
5835
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.1ms)
5836
+ Completed 200 OK in 19ms (Views: 16.3ms)
5837
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5838
+ Processing by Lockup::LockupController#unlock as HTML
5839
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"omgponies", "return_to"=>"/posts"}, "button"=>""}
5840
+ Redirected to http://www.example.com/posts
5841
+ Completed 302 Found in 0ms
5842
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5843
+ Processing by PostsController#index as HTML
5844
+ Rendering posts/index.html.erb within layouts/application
5845
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
5846
+ Completed 200 OK in 103ms (Views: 91.2ms)
5847
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5848
+ Processing by PostsController#index as HTML
5849
+ Parameters: {"lockup_codeword"=>"omgponies"}
5850
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5851
+ Filter chain halted as :check_for_lockup rendered or redirected
5852
+ Completed 302 Found in 0ms
5853
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5854
+ Processing by Lockup::LockupController#unlock as HTML
5855
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5856
+ Redirected to http://www.example.com/posts
5857
+ Completed 302 Found in 0ms
5858
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5859
+ Processing by PostsController#index as HTML
5860
+ Rendering posts/index.html.erb within layouts/application
5861
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
5862
+ Completed 200 OK in 1ms (Views: 0.9ms)
5863
+ Started GET "/posts/1" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5864
+ Processing by PostsController#show as HTML
5865
+ Parameters: {"id"=>"1"}
5866
+ Rendering posts/show.html.erb within layouts/application
5867
+ Rendered posts/show.html.erb within layouts/application (0.2ms)
5868
+ Completed 200 OK in 3ms (Views: 1.4ms)
5869
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5870
+ Processing by PostsController#index as HTML
5871
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5872
+ Filter chain halted as :check_for_lockup rendered or redirected
5873
+ Completed 302 Found in 0ms
5874
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5875
+ Processing by Lockup::LockupController#unlock as HTML
5876
+ Parameters: {"return_to"=>"/posts"}
5877
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5878
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
5879
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5880
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5881
+ Completed 200 OK in 1ms (Views: 0.8ms)
5882
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5883
+ Processing by Lockup::LockupController#unlock as HTML
5884
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"lolwut", "return_to"=>"/posts"}, "button"=>""}
5885
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5886
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
5887
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5888
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5889
+ Completed 200 OK in 1ms (Views: 0.6ms)
5890
+ Started GET "/this-does-not-exist?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5891
+ Processing by ApplicationController#render_404 as HTML
5892
+ Parameters: {"lockup_codeword"=>"omgponies", "path"=>"this-does-not-exist"}
5893
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist
5894
+ Filter chain halted as :check_for_lockup rendered or redirected
5895
+ Completed 302 Found in 0ms
5896
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5897
+ Processing by Lockup::LockupController#unlock as HTML
5898
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/this-does-not-exist"}
5899
+ Redirected to http://www.example.com/this-does-not-exist
5900
+ Completed 302 Found in 0ms
5901
+ Started GET "/this-does-not-exist" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5902
+ Processing by ApplicationController#render_404 as HTML
5903
+ Parameters: {"path"=>"this-does-not-exist"}
5904
+ Rendering public/404.html within layouts/application
5905
+ Rendered public/404.html within layouts/application (0.2ms)
5906
+ Completed 404 Not Found in 7ms (Views: 7.3ms)
5907
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5908
+ Processing by PostsController#index as HTML
5909
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5910
+ Filter chain halted as :check_for_lockup rendered or redirected
5911
+ Completed 302 Found in 0ms
5912
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5913
+ Processing by Lockup::LockupController#unlock as HTML
5914
+ Parameters: {"return_to"=>"/posts"}
5915
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5916
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
5917
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5918
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5919
+ Completed 200 OK in 1ms (Views: 0.7ms)
5920
+ Started GET "/posts?lookup_codeword=lolwut" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5921
+ Processing by PostsController#index as HTML
5922
+ Parameters: {"lookup_codeword"=>"lolwut"}
5923
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut
5924
+ Filter chain halted as :check_for_lockup rendered or redirected
5925
+ Completed 302 Found in 0ms
5926
+ Started GET "/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5927
+ Processing by Lockup::LockupController#unlock as HTML
5928
+ Parameters: {"return_to"=>"/posts?lookup_codeword=lolwut"}
5929
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5930
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.2ms)
5931
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5932
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5933
+ Completed 200 OK in 1ms (Views: 0.6ms)
5934
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5935
+ Processing by PostsController#index as HTML
5936
+ Parameters: {"lockup_codeword"=>"omgponies"}
5937
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5938
+ Filter chain halted as :check_for_lockup rendered or redirected
5939
+ Completed 302 Found in 0ms
5940
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5941
+ Processing by Lockup::LockupController#unlock as HTML
5942
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5943
+ Completed 200 OK in 0ms
5944
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5945
+ Processing by PostsController#index as HTML
5946
+ Parameters: {"lockup_codeword"=>"omgponies"}
5947
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
5948
+ Filter chain halted as :check_for_lockup rendered or redirected
5949
+ Completed 302 Found in 0ms
5950
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5951
+ Processing by Lockup::LockupController#unlock as HTML
5952
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
5953
+ Redirected to http://www.example.com/posts
5954
+ Completed 302 Found in 0ms
5955
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5956
+ Processing by PostsController#index as HTML
5957
+ Rendering posts/index.html.erb within layouts/application
5958
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
5959
+ Completed 200 OK in 1ms (Views: 0.9ms)
5960
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5961
+ Processing by PostsController#index as HTML
5962
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5963
+ Filter chain halted as :check_for_lockup rendered or redirected
5964
+ Completed 302 Found in 0ms
5965
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5966
+ Processing by Lockup::LockupController#unlock as HTML
5967
+ Parameters: {"return_to"=>"/posts"}
5968
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
5969
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
5970
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
5971
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
5972
+ Completed 200 OK in 1ms (Views: 0.7ms)
5973
+ Started GET "/posts" for 127.0.0.1 at 2020-12-07 10:25:59 -0800
5974
+ Processing by PostsController#index as HTML
5975
+ Rendering posts/index.html.erb within layouts/application
5976
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
5977
+ Completed 200 OK in 1ms (Views: 0.8ms)
5978
+ Processing by Lockup::LockupController#unlock as TEXT
5979
+ Completed 406 Not Acceptable in 0ms
5980
+ Processing by Lockup::LockupController#unlock as HTML
5981
+ Parameters: {"foo"=>"bar"}
5982
+ Completed 200 OK in 0ms
5983
+ Processing by Lockup::LockupController#unlock as HTML
5984
+ Parameters: {"foo"=>"bar"}
5985
+ Completed 200 OK in 0ms
5986
+ Processing by Lockup::LockupController#unlock as TEXT
5987
+ Completed 406 Not Acceptable in 0ms
5988
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
5989
+ Processing by PostsController#index as HTML
5990
+ Rendering posts/index.html.erb within layouts/application
5991
+ Rendered posts/index.html.erb within layouts/application (1.0ms)
5992
+ Completed 200 OK in 108ms (Views: 90.5ms)
5993
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
5994
+ Processing by PostsController#index as HTML
5995
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
5996
+ Filter chain halted as :check_for_lockup rendered or redirected
5997
+ Completed 302 Found in 1ms
5998
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
5999
+ Processing by Lockup::LockupController#unlock as HTML
6000
+ Parameters: {"return_to"=>"/posts"}
6001
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6002
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (4.7ms)
6003
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.5ms)
6004
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.1ms)
6005
+ Completed 200 OK in 19ms (Views: 16.6ms)
6006
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6007
+ Processing by PostsController#index as HTML
6008
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6009
+ Filter chain halted as :check_for_lockup rendered or redirected
6010
+ Completed 302 Found in 0ms
6011
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6012
+ Processing by Lockup::LockupController#unlock as HTML
6013
+ Parameters: {"return_to"=>"/posts"}
6014
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6015
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
6016
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
6017
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
6018
+ Completed 200 OK in 1ms (Views: 0.7ms)
6019
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6020
+ Processing by Lockup::LockupController#unlock as HTML
6021
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"omgponies", "return_to"=>"/posts"}, "button"=>""}
6022
+ Redirected to http://www.example.com/posts
6023
+ Completed 302 Found in 0ms
6024
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6025
+ Processing by PostsController#index as HTML
6026
+ Rendering posts/index.html.erb within layouts/application
6027
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
6028
+ Completed 200 OK in 1ms (Views: 0.8ms)
6029
+ Started GET "/posts?lookup_codeword=lolwut" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6030
+ Processing by PostsController#index as HTML
6031
+ Parameters: {"lookup_codeword"=>"lolwut"}
6032
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut
6033
+ Filter chain halted as :check_for_lockup rendered or redirected
6034
+ Completed 302 Found in 0ms
6035
+ Started GET "/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6036
+ Processing by Lockup::LockupController#unlock as HTML
6037
+ Parameters: {"return_to"=>"/posts?lookup_codeword=lolwut"}
6038
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6039
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
6040
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
6041
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
6042
+ Completed 200 OK in 1ms (Views: 0.7ms)
6043
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6044
+ Processing by PostsController#index as HTML
6045
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6046
+ Filter chain halted as :check_for_lockup rendered or redirected
6047
+ Completed 302 Found in 0ms
6048
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6049
+ Processing by Lockup::LockupController#unlock as HTML
6050
+ Parameters: {"return_to"=>"/posts"}
6051
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6052
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.3ms)
6053
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
6054
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
6055
+ Completed 200 OK in 1ms (Views: 0.6ms)
6056
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6057
+ Processing by Lockup::LockupController#unlock as HTML
6058
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"lolwut", "return_to"=>"/posts"}, "button"=>""}
6059
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6060
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.2ms)
6061
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
6062
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
6063
+ Completed 200 OK in 1ms (Views: 0.6ms)
6064
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6065
+ Processing by PostsController#index as HTML
6066
+ Parameters: {"lockup_codeword"=>"omgponies"}
6067
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6068
+ Filter chain halted as :check_for_lockup rendered or redirected
6069
+ Completed 302 Found in 0ms
6070
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6071
+ Processing by Lockup::LockupController#unlock as HTML
6072
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6073
+ Redirected to http://www.example.com/posts
6074
+ Completed 302 Found in 0ms
6075
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6076
+ Processing by PostsController#index as HTML
6077
+ Rendering posts/index.html.erb within layouts/application
6078
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
6079
+ Completed 200 OK in 1ms (Views: 0.8ms)
6080
+ Started GET "/posts/1" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6081
+ Processing by PostsController#show as HTML
6082
+ Parameters: {"id"=>"1"}
6083
+ Rendering posts/show.html.erb within layouts/application
6084
+ Rendered posts/show.html.erb within layouts/application (0.2ms)
6085
+ Completed 200 OK in 3ms (Views: 0.8ms)
6086
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6087
+ Processing by PostsController#index as HTML
6088
+ Parameters: {"lockup_codeword"=>"omgponies"}
6089
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6090
+ Filter chain halted as :check_for_lockup rendered or redirected
6091
+ Completed 302 Found in 0ms
6092
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6093
+ Processing by Lockup::LockupController#unlock as HTML
6094
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6095
+ Completed 200 OK in 0ms
6096
+ Started GET "/this-does-not-exist?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6097
+ Processing by ApplicationController#render_404 as HTML
6098
+ Parameters: {"lockup_codeword"=>"omgponies", "path"=>"this-does-not-exist"}
6099
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist
6100
+ Filter chain halted as :check_for_lockup rendered or redirected
6101
+ Completed 302 Found in 0ms
6102
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6103
+ Processing by Lockup::LockupController#unlock as HTML
6104
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/this-does-not-exist"}
6105
+ Redirected to http://www.example.com/this-does-not-exist
6106
+ Completed 302 Found in 0ms
6107
+ Started GET "/this-does-not-exist" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6108
+ Processing by ApplicationController#render_404 as HTML
6109
+ Parameters: {"path"=>"this-does-not-exist"}
6110
+ Rendering public/404.html within layouts/application
6111
+ Rendered public/404.html within layouts/application (0.3ms)
6112
+ Completed 404 Not Found in 9ms (Views: 8.4ms)
6113
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6114
+ Processing by PostsController#index as HTML
6115
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6116
+ Filter chain halted as :check_for_lockup rendered or redirected
6117
+ Completed 302 Found in 0ms
6118
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6119
+ Processing by Lockup::LockupController#unlock as HTML
6120
+ Parameters: {"return_to"=>"/posts"}
6121
+ Rendering /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6122
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (0.4ms)
6123
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (0.0ms)
6124
+ Rendered /Users/gblakeman/Dropbox/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (0.0ms)
6125
+ Completed 200 OK in 1ms (Views: 0.9ms)
6126
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6127
+ Processing by PostsController#index as HTML
6128
+ Parameters: {"lockup_codeword"=>"omgponies"}
6129
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6130
+ Filter chain halted as :check_for_lockup rendered or redirected
6131
+ Completed 302 Found in 0ms
6132
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6133
+ Processing by Lockup::LockupController#unlock as HTML
6134
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6135
+ Redirected to http://www.example.com/posts
6136
+ Completed 302 Found in 0ms
6137
+ Started GET "/posts" for 127.0.0.1 at 2020-12-08 16:22:44 -0800
6138
+ Processing by PostsController#index as HTML
6139
+ Rendering posts/index.html.erb within layouts/application
6140
+ Rendered posts/index.html.erb within layouts/application (0.1ms)
6141
+ Completed 200 OK in 1ms (Views: 0.8ms)
6142
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:50 -0800
6143
+ Processing by PostsController#index as HTML
6144
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6145
+ Filter chain halted as :check_for_lockup rendered or redirected
6146
+ Completed 302 Found in 1ms (Allocations: 849)
6147
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:50 -0800
6148
+ Processing by Lockup::LockupController#unlock as HTML
6149
+ Parameters: {"return_to"=>"/posts"}
6150
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6151
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6152
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 4.3ms | Allocations: 3133)
6153
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.3ms | Allocations: 403)
6154
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.2ms | Allocations: 108)
6155
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 5.6ms | Allocations: 4181)
6156
+ Completed 200 OK in 9ms (Views: 7.4ms | Allocations: 6546)
6157
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2021-12-20 17:28:50 -0800
6158
+ Processing by Lockup::LockupController#unlock as HTML
6159
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"lolwut", "return_to"=>"/posts"}, "button"=>""}
6160
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6161
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6162
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 0.2ms | Allocations: 277)
6163
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.0ms | Allocations: 7)
6164
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.0ms | Allocations: 5)
6165
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 0.3ms | Allocations: 408)
6166
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 684)
6167
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6168
+ Processing by PostsController#index as HTML
6169
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6170
+ Filter chain halted as :check_for_lockup rendered or redirected
6171
+ Completed 302 Found in 0ms (Allocations: 183)
6172
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6173
+ Processing by Lockup::LockupController#unlock as HTML
6174
+ Parameters: {"return_to"=>"/posts"}
6175
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6176
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6177
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 0.2ms | Allocations: 266)
6178
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.0ms | Allocations: 7)
6179
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.0ms | Allocations: 5)
6180
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 0.3ms | Allocations: 397)
6181
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 666)
6182
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6183
+ Processing by PostsController#index as HTML
6184
+ Parameters: {"lockup_codeword"=>"omgponies"}
6185
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6186
+ Filter chain halted as :check_for_lockup rendered or redirected
6187
+ Completed 302 Found in 0ms (Allocations: 185)
6188
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6189
+ Processing by Lockup::LockupController#unlock as HTML
6190
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6191
+ Redirected to http://www.example.com/posts
6192
+ Completed 302 Found in 0ms (Allocations: 260)
6193
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6194
+ Processing by PostsController#index as HTML
6195
+ Rendering layout layouts/application.html.erb
6196
+ Rendering posts/index.html.erb within layouts/application
6197
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 259)
6198
+ Rendered layout layouts/application.html.erb (Duration: 0.7ms | Allocations: 658)
6199
+ Completed 200 OK in 10ms (Views: 1.1ms | Allocations: 7642)
6200
+ Started GET "/posts/1" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6201
+ Processing by PostsController#show as HTML
6202
+ Parameters: {"id"=>"1"}
6203
+ Rendering layout layouts/application.html.erb
6204
+ Rendering posts/show.html.erb within layouts/application
6205
+ Rendered posts/show.html.erb within layouts/application (Duration: 0.3ms | Allocations: 108)
6206
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 254)
6207
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 577)
6208
+ Started GET "/posts?lookup_codeword=lolwut" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6209
+ Processing by PostsController#index as HTML
6210
+ Parameters: {"lookup_codeword"=>"lolwut"}
6211
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut
6212
+ Filter chain halted as :check_for_lockup rendered or redirected
6213
+ Completed 302 Found in 0ms (Allocations: 185)
6214
+ Started GET "/lockup/unlock?return_to=%2Fposts%3Flookup_codeword%3Dlolwut" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6215
+ Processing by Lockup::LockupController#unlock as HTML
6216
+ Parameters: {"return_to"=>"/posts?lookup_codeword=lolwut"}
6217
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6218
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6219
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 0.1ms | Allocations: 267)
6220
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.0ms | Allocations: 7)
6221
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.0ms | Allocations: 5)
6222
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 0.3ms | Allocations: 398)
6223
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 663)
6224
+ Started GET "/this-does-not-exist?lockup_codeword=omgponies" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6225
+ Processing by ApplicationController#render_404 as HTML
6226
+ Parameters: {"lockup_codeword"=>"omgponies", "path"=>"this-does-not-exist"}
6227
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist
6228
+ Filter chain halted as :check_for_lockup rendered or redirected
6229
+ Completed 302 Found in 0ms (Allocations: 218)
6230
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fthis-does-not-exist" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6231
+ Processing by Lockup::LockupController#unlock as HTML
6232
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/this-does-not-exist"}
6233
+ Redirected to http://www.example.com/this-does-not-exist
6234
+ Completed 302 Found in 0ms (Allocations: 161)
6235
+ Started GET "/this-does-not-exist" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6236
+ Processing by ApplicationController#render_404 as HTML
6237
+ Parameters: {"path"=>"this-does-not-exist"}
6238
+ Rendering layout layouts/application.html.erb
6239
+ Rendering public/404.html within layouts/application
6240
+ Rendered public/404.html within layouts/application (Duration: 0.1ms | Allocations: 7)
6241
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 219)
6242
+ Completed 404 Not Found in 1ms (Views: 0.9ms | Allocations: 844)
6243
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6244
+ Processing by PostsController#index as HTML
6245
+ Parameters: {"lockup_codeword"=>"omgponies"}
6246
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6247
+ Filter chain halted as :check_for_lockup rendered or redirected
6248
+ Completed 302 Found in 0ms (Allocations: 185)
6249
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6250
+ Processing by Lockup::LockupController#unlock as HTML
6251
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6252
+ Completed 200 OK in 0ms (Allocations: 77)
6253
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6254
+ Processing by PostsController#index as HTML
6255
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6256
+ Filter chain halted as :check_for_lockup rendered or redirected
6257
+ Completed 302 Found in 0ms (Allocations: 181)
6258
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6259
+ Processing by Lockup::LockupController#unlock as HTML
6260
+ Parameters: {"return_to"=>"/posts"}
6261
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6262
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6263
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 0.2ms | Allocations: 264)
6264
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.0ms | Allocations: 7)
6265
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.0ms | Allocations: 5)
6266
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 0.3ms | Allocations: 395)
6267
+ Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 660)
6268
+ Started POST "/lockup/unlock" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6269
+ Processing by Lockup::LockupController#unlock as HTML
6270
+ Parameters: {"utf8"=>"✓", "lockup"=>{"codeword"=>"omgponies", "return_to"=>"/posts"}, "button"=>""}
6271
+ Redirected to http://www.example.com/posts
6272
+ Completed 302 Found in 0ms (Allocations: 166)
6273
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6274
+ Processing by PostsController#index as HTML
6275
+ Rendering layout layouts/application.html.erb
6276
+ Rendering posts/index.html.erb within layouts/application
6277
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 55)
6278
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 220)
6279
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 448)
6280
+ Started GET "/posts?lockup_codeword=omgponies" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6281
+ Processing by PostsController#index as HTML
6282
+ Parameters: {"lockup_codeword"=>"omgponies"}
6283
+ Redirected to http://www.example.com/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts
6284
+ Filter chain halted as :check_for_lockup rendered or redirected
6285
+ Completed 302 Found in 0ms (Allocations: 185)
6286
+ Started GET "/lockup/unlock?lockup_codeword=omgponies&return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6287
+ Processing by Lockup::LockupController#unlock as HTML
6288
+ Parameters: {"lockup_codeword"=>"omgponies", "return_to"=>"/posts"}
6289
+ Redirected to http://www.example.com/posts
6290
+ Completed 302 Found in 0ms (Allocations: 159)
6291
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6292
+ Processing by PostsController#index as HTML
6293
+ Rendering layout layouts/application.html.erb
6294
+ Rendering posts/index.html.erb within layouts/application
6295
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 67)
6296
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 235)
6297
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 504)
6298
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6299
+ Processing by PostsController#index as HTML
6300
+ Redirected to http://www.example.com/lockup/unlock?return_to=%2Fposts
6301
+ Filter chain halted as :check_for_lockup rendered or redirected
6302
+ Completed 302 Found in 0ms (Allocations: 181)
6303
+ Started GET "/lockup/unlock?return_to=%2Fposts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6304
+ Processing by Lockup::LockupController#unlock as HTML
6305
+ Parameters: {"return_to"=>"/posts"}
6306
+ Rendering layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb
6307
+ Rendering /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application
6308
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/lockup/lockup/unlock.html.erb within layouts/lockup/application (Duration: 0.1ms | Allocations: 238)
6309
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_css.html.erb (Duration: 0.0ms | Allocations: 7)
6310
+ Rendered /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/_inline_js.html.erb (Duration: 0.0ms | Allocations: 5)
6311
+ Rendered layout /Users/gblakeman/Dropbox/-Interdiscipline/-Projects/Lockup/Build/Gem/lockup_gem/app/views/layouts/lockup/application.html.erb (Duration: 0.2ms | Allocations: 369)
6312
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 633)
6313
+ Started GET "/posts" for 127.0.0.1 at 2021-12-20 17:28:51 -0800
6314
+ Processing by PostsController#index as HTML
6315
+ Rendering layout layouts/application.html.erb
6316
+ Rendering posts/index.html.erb within layouts/application
6317
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 77)
6318
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 248)
6319
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 529)
6320
+ Processing by Lockup::LockupController#unlock as HTML
6321
+ Parameters: {"foo"=>"bar"}
6322
+ Completed 200 OK in 0ms (Allocations: 107)
6323
+ Processing by Lockup::LockupController#unlock as TEXT
6324
+ Completed 406 Not Acceptable in 0ms (Allocations: 183)
@@ -0,0 +1 @@
1
+ "%��Rm�v�S3.��O�L���ڹc�ƕq�=_j�
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&id=585c5148650402378193936ad2b950baaeb72620f4a302dbb5fb993eeb0087cd:ET
@@ -0,0 +1 @@
1
+ I"}app/assets/stylesheets/application.css?type=text/css&id=3345bc906b70894180a4a96680bd66d37d5c54dbaa0fe150a85a2816c7284c13:ET
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=311c354d3e4e03ac3e70f6a82da4e9833f6ce45cc197fd687a0219fefa501062:ET
@@ -0,0 +1 @@
1
+ I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=5ffed0f8e845ab2587c94b9c7a84cf0fe2c79eaae3e7c0dd49d1b66a36b61137:ET
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lockup
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.5'
4
+ version: '1.7'
5
5
  platform: ruby
6
6
  authors:
7
- - gb Studio
8
- autorequire:
7
+ - Interdiscipline
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-29 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6'
22
+ version: '7.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,68 +29,68 @@ dependencies:
29
29
  version: '3'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6'
32
+ version: '7.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rspec-rails
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
37
+ - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '3.5'
39
+ version: '0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - "~>"
44
+ - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: '3.5'
46
+ version: '0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: capybara
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - "~>"
51
+ - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '2.9'
53
+ version: '0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - "~>"
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: '2.9'
60
+ version: '0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: launchy
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - "~>"
65
+ - - ">="
66
66
  - !ruby/object:Gem::Version
67
- version: '2.4'
67
+ version: '0'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - "~>"
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
- version: '2.4'
74
+ version: '0'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: byebug
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - "~>"
79
+ - - ">="
80
80
  - !ruby/object:Gem::Version
81
- version: '9.0'
81
+ version: '0'
82
82
  type: :development
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
- - - "~>"
86
+ - - ">="
87
87
  - !ruby/object:Gem::Version
88
- version: '9.0'
88
+ version: '0'
89
89
  description: A simple gem to more elegantly place a staging server or other in-progress
90
90
  application behind a basic codeword. It’s easy to implement, share with clients/collaborators,
91
91
  and more beautiful than the typical password-protection sheet.
92
92
  email:
93
- - hello@grantblakeman.com
93
+ - hello@interdiscipline.com
94
94
  executables: []
95
95
  extensions: []
96
96
  extra_rdoc_files: []
@@ -155,9 +155,13 @@ files:
155
155
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/3T/3TDG6xxFriIdNUVsjkfIPHi9mn6xyJiufz5luT9uV5o.cache
156
156
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/54/54JuizNobIWGWy1THHxcQSq9oLjimE6qRyKaKuNrnuA.cache
157
157
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-m--XYRC6sgzU20Fjl3eNNi-KRD--wHvyp9NLC1Osc.cache
158
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/6u/6uw-euAXSnw7A8Rp165hOqamzG_4X6lAFqKpsUC269Y.cache
158
159
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/95/95P6bvsQVesazfXbch-k2X1l8jd1M5dhQwf3gkEMkW0.cache
160
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/AI/AIq1hOqbIEsv4axZsOrIclrV--qSRMK14G7Y9YRmJKQ.cache
161
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/B0/B0EBoWHSPTh5IQWXWeFGOwzYNb6Zxdwn27zAm_RVL74.cache
159
162
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B33FTX989v8LP64xdx3RQwjUBAenWdgN6qT8sRqdw0U.cache
160
163
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Be/BeQzK8km75VcVbxttC5dc_XGArX1AAuZhDSKhwEI7Rk.cache
164
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/BvvkkdlkVM4cBhtsLeO_KNhAw4lWc34LvJc6PpPe2_0.cache
161
165
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/FG/FG-BqpRggGMOXoepAAKDnKJf3YSxLoqyKYByHOyPhVE.cache
162
166
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/GA/GASYa5vOdbDTxwlNjrbfSeP0VqSsLpI1WPJOL-DlpX8.cache
163
167
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/GC/GCrmbUWerBeVYCAFt30IhkIhhe1F5oG6X5SzWdyj4dE.cache
@@ -168,9 +172,14 @@ files:
168
172
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/PQ/PQou7FpFPKLaf9zYBRfJsDy7BpglbbzivmOAodVr8uk.cache
169
173
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/WC/WCPElyBEHMaQVSX5y9b3OeK62YirmwoDyI47yFYx5GQ.cache
170
174
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/YE/YEsgbIYcOj5b--9MgCOjHz3rqCE_I1AodoqgsXAc0Rk.cache
175
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/_a/_ahU6GJRXYWezxtUUOJlVQtFLRMU1fYvLTnTRFMrDLc.cache
171
176
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/a3/a3LI7V_UQhBf2PA5TNan-OFVEmOPGub-dALwHdcnl4g.cache
177
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/an/an5T9Xaa_8TzwqSi-3_QvugSt6XCrqMFMhj_wgbhdL8.cache
172
178
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/d7/d7DB4O8lDLFo9gOfMQSaCnB8k1EOhi9CI-wORs7phHA.cache
173
179
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/dJ/dJWRgn1--GxOqSrtxei98rXsb6G2dLteWRCtrwvf9lY.cache
180
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/da/daE8WdGd6mDoG0keykx6rDUMRlngpenrFsL2vfufi3Q.cache
181
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ex/ex37pyZlJ6WVOlsFRfbNt8tJ6ItpOUdF25wSqyCZ0m8.cache
182
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/fj/fjfIq3nTka9gbbbTSocrSyKTA8Hw6aHbcK3qD1YI7RQ.cache
174
183
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/gO/gO-rpB7IiDeyguj60kVlTKZVtRC2P1B99AOB14IdvVI.cache
175
184
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hj8Ir9wcVSy1KYrnWu9bpD24vDhCG3tvt-nKbNxb1Wg.cache
176
185
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/jB/jBSZ526UktWa5tR11UzXAqsEYE1Uf1yI6odiAdWnvmA.cache
@@ -180,15 +189,16 @@ files:
180
189
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_N92h27J6XZ47drVHd36L-LHb1TeVSJOP8GCoR6rfc.cache
181
190
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/q6/q6BYa32YJF11eGVapO4ouNl6gayPIsARgMavlzZmoi0.cache
182
191
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/tE/tEEvLa1vvdK2lR98REdVz1IjLYaeMlV_AgQdGIW4LIo.cache
192
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/wA/wATh7Ebr5mFZMB9ZJY3oSB30TkhmKO7d13dHqZYv-G0.cache
183
193
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7KkTV3ibfIEysLB_ug5bfmnn2VLV_BldukPR3EoPBk.cache
184
194
  - spec/features/access_restricted_spec.rb
185
195
  - spec/spec_helper.rb
186
196
  - spec/support/features/user_agent_helper.rb
187
- homepage: http://lockupgem.com
197
+ homepage: http://lockup.interdiscipline.com
188
198
  licenses:
189
199
  - MIT
190
200
  metadata: {}
191
- post_install_message:
201
+ post_install_message:
192
202
  rdoc_options: []
193
203
  require_paths:
194
204
  - lib
@@ -203,82 +213,91 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
213
  - !ruby/object:Gem::Version
204
214
  version: '0'
205
215
  requirements: []
206
- rubyforge_project:
207
- rubygems_version: 2.5.1
208
- signing_key:
216
+ rubygems_version: 3.2.32
217
+ signing_key:
209
218
  specification_version: 4
210
219
  summary: Lock staging servers from search engines and prying eyes.
211
220
  test_files:
212
- - spec/spec_helper.rb
213
- - spec/dummy/app/models/post.rb
221
+ - spec/controllers/lockup/lockup_controller_spec.rb
222
+ - spec/dummy/Rakefile
223
+ - spec/dummy/app/assets/javascripts/application.js
224
+ - spec/dummy/app/assets/stylesheets/application.css
214
225
  - spec/dummy/app/controllers/application_controller.rb
215
226
  - spec/dummy/app/controllers/posts_controller.rb
227
+ - spec/dummy/app/helpers/application_helper.rb
228
+ - spec/dummy/app/models/post.rb
229
+ - spec/dummy/app/views/layouts/application.html.erb
216
230
  - spec/dummy/app/views/posts/index.html.erb
217
231
  - spec/dummy/app/views/posts/show.html.erb
218
- - spec/dummy/app/views/layouts/application.html.erb
219
- - spec/dummy/app/assets/javascripts/application.js
220
- - spec/dummy/app/assets/stylesheets/application.css
221
- - spec/dummy/app/helpers/application_helper.rb
222
- - spec/dummy/bin/rake
223
232
  - spec/dummy/bin/bundle
224
233
  - spec/dummy/bin/rails
225
- - spec/dummy/config/routes.rb
226
- - spec/dummy/config/locales/en.yml
234
+ - spec/dummy/bin/rake
235
+ - spec/dummy/config/application.rb
236
+ - spec/dummy/config/boot.rb
227
237
  - spec/dummy/config/database.yml.old
228
- - spec/dummy/config/environments/production.rb
238
+ - spec/dummy/config/environment.rb
229
239
  - spec/dummy/config/environments/development.rb
240
+ - spec/dummy/config/environments/production.rb
230
241
  - spec/dummy/config/environments/test.rb
231
- - spec/dummy/config/environment.rb
232
- - spec/dummy/config/application.rb
233
- - spec/dummy/config/boot.rb
234
242
  - spec/dummy/config/initializers/backtrace_silencers.rb
235
- - spec/dummy/config/initializers/mime_types.rb
236
243
  - spec/dummy/config/initializers/filter_parameter_logging.rb
244
+ - spec/dummy/config/initializers/inflections.rb
245
+ - spec/dummy/config/initializers/mime_types.rb
246
+ - spec/dummy/config/initializers/secret_token.rb
237
247
  - spec/dummy/config/initializers/session_store.rb
238
248
  - spec/dummy/config/initializers/wrap_parameters.rb
239
- - spec/dummy/config/initializers/secret_token.rb
240
- - spec/dummy/config/initializers/inflections.rb
249
+ - spec/dummy/config/locales/en.yml
250
+ - spec/dummy/config/routes.rb
241
251
  - spec/dummy/config.ru
242
- - spec/dummy/Rakefile
243
- - spec/dummy/public/favicon.ico
252
+ - spec/dummy/log/test.log
253
+ - spec/dummy/public/404.html
244
254
  - spec/dummy/public/422.html
245
255
  - spec/dummy/public/500.html
246
- - spec/dummy/public/404.html
247
- - spec/dummy/log/test.log
248
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/95/95P6bvsQVesazfXbch-k2X1l8jd1M5dhQwf3gkEMkW0.cache
249
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/PM/PMPBz9_dKw9ipSgrNK8UFc61b5_CmXZe35m_NDnG878.cache
250
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/YE/YEsgbIYcOj5b--9MgCOjHz3rqCE_I1AodoqgsXAc0Rk.cache
251
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-m--XYRC6sgzU20Fjl3eNNi-KRD--wHvyp9NLC1Osc.cache
252
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/PQ/PQou7FpFPKLaf9zYBRfJsDy7BpglbbzivmOAodVr8uk.cache
253
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/PE/PE4qT2vBxYzDt9ccdMf4qpdTP7dOm-R5cLIBQibKwRQ.cache
254
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/GA/GASYa5vOdbDTxwlNjrbfSeP0VqSsLpI1WPJOL-DlpX8.cache
255
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/a3/a3LI7V_UQhBf2PA5TNan-OFVEmOPGub-dALwHdcnl4g.cache
256
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/gO/gO-rpB7IiDeyguj60kVlTKZVtRC2P1B99AOB14IdvVI.cache
257
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/Ng/NgxbVmfEhJPMVKKQOWa0nwrHB7PcQjSyU8CLLguWYlo.cache
258
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/mF/mFzO6RlRkEilcU4bVWSiyPNzUWv9R9eh45cdsmGqpvw.cache
259
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/d7/d7DB4O8lDLFo9gOfMQSaCnB8k1EOhi9CI-wORs7phHA.cache
260
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/Be/BeQzK8km75VcVbxttC5dc_XGArX1AAuZhDSKhwEI7Rk.cache
256
+ - spec/dummy/public/favicon.ico
261
257
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/-_/-_hoC7iCURPIMaZQtgjDhi4hCpLKG585HTC7Ul0JTyM.cache
262
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B33FTX989v8LP64xdx3RQwjUBAenWdgN6qT8sRqdw0U.cache
263
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hj8Ir9wcVSy1KYrnWu9bpD24vDhCG3tvt-nKbNxb1Wg.cache
264
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/JT/JT67EmzctkGMcnuWGu3PGVl4VdsixOmCeTj1iN8XqFU.cache
265
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCsZTGZyV4kH8Y4OeSDUdrwfkJFPzTODZjuBKZB8oGQ.cache
266
258
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/1S/1S-qcbypJoWh67XAomrFuZGWGFhl6HNhHAOp3gVaaiw.cache
267
259
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/1T/1T-a1hn7TPU4VqYN1_WMFcWXOJr7VHGalLxVInuxckM.cache
268
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/tE/tEEvLa1vvdK2lR98REdVz1IjLYaeMlV_AgQdGIW4LIo.cache
269
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/q6/q6BYa32YJF11eGVapO4ouNl6gayPIsARgMavlzZmoi0.cache
270
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/WC/WCPElyBEHMaQVSX5y9b3OeK62YirmwoDyI47yFYx5GQ.cache
271
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7KkTV3ibfIEysLB_ug5bfmnn2VLV_BldukPR3EoPBk.cache
260
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/2W/2WafOXAlZWOOKjT_pCsPP6H0bip-q92L9Q8XzWyMqbc.cache
272
261
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/2s/2s3YUjKGbnsy4nqjtt3_bLi2-n7vURwbi1N4I3efe3M.cache
273
262
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/3T/3TDG6xxFriIdNUVsjkfIPHi9mn6xyJiufz5luT9uV5o.cache
274
263
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/54/54JuizNobIWGWy1THHxcQSq9oLjimE6qRyKaKuNrnuA.cache
275
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/dJ/dJWRgn1--GxOqSrtxei98rXsb6G2dLteWRCtrwvf9lY.cache
264
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-m--XYRC6sgzU20Fjl3eNNi-KRD--wHvyp9NLC1Osc.cache
265
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/6u/6uw-euAXSnw7A8Rp165hOqamzG_4X6lAFqKpsUC269Y.cache
266
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/95/95P6bvsQVesazfXbch-k2X1l8jd1M5dhQwf3gkEMkW0.cache
267
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/AI/AIq1hOqbIEsv4axZsOrIclrV--qSRMK14G7Y9YRmJKQ.cache
268
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/B0/B0EBoWHSPTh5IQWXWeFGOwzYNb6Zxdwn27zAm_RVL74.cache
269
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B33FTX989v8LP64xdx3RQwjUBAenWdgN6qT8sRqdw0U.cache
270
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Be/BeQzK8km75VcVbxttC5dc_XGArX1AAuZhDSKhwEI7Rk.cache
271
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/BvvkkdlkVM4cBhtsLeO_KNhAw4lWc34LvJc6PpPe2_0.cache
272
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/FG/FG-BqpRggGMOXoepAAKDnKJf3YSxLoqyKYByHOyPhVE.cache
273
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/GA/GASYa5vOdbDTxwlNjrbfSeP0VqSsLpI1WPJOL-DlpX8.cache
276
274
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/GC/GCrmbUWerBeVYCAFt30IhkIhhe1F5oG6X5SzWdyj4dE.cache
275
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/JT/JT67EmzctkGMcnuWGu3PGVl4VdsixOmCeTj1iN8XqFU.cache
276
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Ng/NgxbVmfEhJPMVKKQOWa0nwrHB7PcQjSyU8CLLguWYlo.cache
277
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/PE/PE4qT2vBxYzDt9ccdMf4qpdTP7dOm-R5cLIBQibKwRQ.cache
278
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/PM/PMPBz9_dKw9ipSgrNK8UFc61b5_CmXZe35m_NDnG878.cache
279
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/PQ/PQou7FpFPKLaf9zYBRfJsDy7BpglbbzivmOAodVr8uk.cache
280
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/WC/WCPElyBEHMaQVSX5y9b3OeK62YirmwoDyI47yFYx5GQ.cache
281
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/YE/YEsgbIYcOj5b--9MgCOjHz3rqCE_I1AodoqgsXAc0Rk.cache
282
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/_a/_ahU6GJRXYWezxtUUOJlVQtFLRMU1fYvLTnTRFMrDLc.cache
283
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/a3/a3LI7V_UQhBf2PA5TNan-OFVEmOPGub-dALwHdcnl4g.cache
284
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/an/an5T9Xaa_8TzwqSi-3_QvugSt6XCrqMFMhj_wgbhdL8.cache
285
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/d7/d7DB4O8lDLFo9gOfMQSaCnB8k1EOhi9CI-wORs7phHA.cache
286
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/dJ/dJWRgn1--GxOqSrtxei98rXsb6G2dLteWRCtrwvf9lY.cache
287
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/da/daE8WdGd6mDoG0keykx6rDUMRlngpenrFsL2vfufi3Q.cache
288
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ex/ex37pyZlJ6WVOlsFRfbNt8tJ6ItpOUdF25wSqyCZ0m8.cache
289
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/fj/fjfIq3nTka9gbbbTSocrSyKTA8Hw6aHbcK3qD1YI7RQ.cache
290
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/gO/gO-rpB7IiDeyguj60kVlTKZVtRC2P1B99AOB14IdvVI.cache
291
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hj8Ir9wcVSy1KYrnWu9bpD24vDhCG3tvt-nKbNxb1Wg.cache
277
292
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/jB/jBSZ526UktWa5tR11UzXAqsEYE1Uf1yI6odiAdWnvmA.cache
278
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/FG/FG-BqpRggGMOXoepAAKDnKJf3YSxLoqyKYByHOyPhVE.cache
293
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/mF/mFzO6RlRkEilcU4bVWSiyPNzUWv9R9eh45cdsmGqpvw.cache
294
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCsZTGZyV4kH8Y4OeSDUdrwfkJFPzTODZjuBKZB8oGQ.cache
279
295
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_9WAKcyhWaKsXtDJBWkFXYEpjeVSDI-aYQcoIby45I.cache
280
296
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_N92h27J6XZ47drVHd36L-LHb1TeVSJOP8GCoR6rfc.cache
281
- - spec/dummy/tmp/cache/assets/sprockets/v3.0/2W/2WafOXAlZWOOKjT_pCsPP6H0bip-q92L9Q8XzWyMqbc.cache
297
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/q6/q6BYa32YJF11eGVapO4ouNl6gayPIsARgMavlzZmoi0.cache
298
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/tE/tEEvLa1vvdK2lR98REdVz1IjLYaeMlV_AgQdGIW4LIo.cache
299
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/wA/wATh7Ebr5mFZMB9ZJY3oSB30TkhmKO7d13dHqZYv-G0.cache
300
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7KkTV3ibfIEysLB_ug5bfmnn2VLV_BldukPR3EoPBk.cache
282
301
  - spec/features/access_restricted_spec.rb
302
+ - spec/spec_helper.rb
283
303
  - spec/support/features/user_agent_helper.rb
284
- - spec/controllers/lockup/lockup_controller_spec.rb