lockup 1.5 → 1.5.1

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
  SHA1:
3
- metadata.gz: 8a6bf9eec1d92448d31c179460807829a164ebfb
4
- data.tar.gz: 95794d845959b877b952aeca58583f8451b48349
3
+ metadata.gz: dfdabe74f88fd0a7f96cc0954955ee25290aa744
4
+ data.tar.gz: 3d0ce975765cf1f47248cd0f0254776c08775633
5
5
  SHA512:
6
- metadata.gz: 3a54ec149ccd49a598316d40563f6ea6c11c867528a31560e5a23508b7e1d67bc4d94d809e627723cdee9f4832ab21dc20df63849a44bb01f6537fb4e67fd9ec
7
- data.tar.gz: 5725af2865efc4746b286410ea248ce55a1c8cb78a4843e1db3cd4521a9238c111a7e1cb13fd8d77141cbbf0328f9a77298d1027ed0d26f362f62f3d22469f2e
6
+ metadata.gz: b26afc7b25e14712686a38139028cb823d74ba8f79e296f244217bc06a4552715572eb8a0182aa15f6e2f3d7d9ddde52fcdcc2d89ef93fec13a1c4315148ced8
7
+ data.tar.gz: 3e5692094f806f2681c00ac2e3926854d05c6362e047d24ad892e44c6d640c2e5da71ae5191a22ca96ef06b0aa36deec8f36f009087235bc6c846c986d0f5e8e
data/README.md CHANGED
@@ -18,25 +18,33 @@ _“…what’s the codeword?”_
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
 
@@ -1,3 +1,3 @@
1
1
  module Lockup
2
- VERSION = "1.5"
2
+ VERSION = "1.5.1"
3
3
  end
@@ -5662,3 +5662,162 @@ 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
@@ -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.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gb Studio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-29 00:00:00.000000000 Z
11
+ date: 2019-09-05 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: '6.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6'
32
+ version: '6.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rspec-rails
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -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,6 +189,7 @@ 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
@@ -250,7 +260,9 @@ test_files:
250
260
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/YE/YEsgbIYcOj5b--9MgCOjHz3rqCE_I1AodoqgsXAc0Rk.cache
251
261
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-m--XYRC6sgzU20Fjl3eNNi-KRD--wHvyp9NLC1Osc.cache
252
262
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/PQ/PQou7FpFPKLaf9zYBRfJsDy7BpglbbzivmOAodVr8uk.cache
263
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/6u/6uw-euAXSnw7A8Rp165hOqamzG_4X6lAFqKpsUC269Y.cache
253
264
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/PE/PE4qT2vBxYzDt9ccdMf4qpdTP7dOm-R5cLIBQibKwRQ.cache
265
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/_a/_ahU6GJRXYWezxtUUOJlVQtFLRMU1fYvLTnTRFMrDLc.cache
254
266
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/GA/GASYa5vOdbDTxwlNjrbfSeP0VqSsLpI1WPJOL-DlpX8.cache
255
267
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/a3/a3LI7V_UQhBf2PA5TNan-OFVEmOPGub-dALwHdcnl4g.cache
256
268
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/gO/gO-rpB7IiDeyguj60kVlTKZVtRC2P1B99AOB14IdvVI.cache
@@ -260,9 +272,13 @@ test_files:
260
272
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Be/BeQzK8km75VcVbxttC5dc_XGArX1AAuZhDSKhwEI7Rk.cache
261
273
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/-_/-_hoC7iCURPIMaZQtgjDhi4hCpLKG585HTC7Ul0JTyM.cache
262
274
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B33FTX989v8LP64xdx3RQwjUBAenWdgN6qT8sRqdw0U.cache
275
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/da/daE8WdGd6mDoG0keykx6rDUMRlngpenrFsL2vfufi3Q.cache
263
276
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hj8Ir9wcVSy1KYrnWu9bpD24vDhCG3tvt-nKbNxb1Wg.cache
277
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/BvvkkdlkVM4cBhtsLeO_KNhAw4lWc34LvJc6PpPe2_0.cache
264
278
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/JT/JT67EmzctkGMcnuWGu3PGVl4VdsixOmCeTj1iN8XqFU.cache
279
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/fj/fjfIq3nTka9gbbbTSocrSyKTA8Hw6aHbcK3qD1YI7RQ.cache
265
280
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCsZTGZyV4kH8Y4OeSDUdrwfkJFPzTODZjuBKZB8oGQ.cache
281
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ex/ex37pyZlJ6WVOlsFRfbNt8tJ6ItpOUdF25wSqyCZ0m8.cache
266
282
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/1S/1S-qcbypJoWh67XAomrFuZGWGFhl6HNhHAOp3gVaaiw.cache
267
283
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/1T/1T-a1hn7TPU4VqYN1_WMFcWXOJr7VHGalLxVInuxckM.cache
268
284
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/tE/tEEvLa1vvdK2lR98REdVz1IjLYaeMlV_AgQdGIW4LIo.cache
@@ -272,12 +288,16 @@ test_files:
272
288
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/2s/2s3YUjKGbnsy4nqjtt3_bLi2-n7vURwbi1N4I3efe3M.cache
273
289
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/3T/3TDG6xxFriIdNUVsjkfIPHi9mn6xyJiufz5luT9uV5o.cache
274
290
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/54/54JuizNobIWGWy1THHxcQSq9oLjimE6qRyKaKuNrnuA.cache
291
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/AI/AIq1hOqbIEsv4axZsOrIclrV--qSRMK14G7Y9YRmJKQ.cache
292
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/an/an5T9Xaa_8TzwqSi-3_QvugSt6XCrqMFMhj_wgbhdL8.cache
275
293
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/dJ/dJWRgn1--GxOqSrtxei98rXsb6G2dLteWRCtrwvf9lY.cache
294
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/B0/B0EBoWHSPTh5IQWXWeFGOwzYNb6Zxdwn27zAm_RVL74.cache
276
295
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/GC/GCrmbUWerBeVYCAFt30IhkIhhe1F5oG6X5SzWdyj4dE.cache
277
296
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/jB/jBSZ526UktWa5tR11UzXAqsEYE1Uf1yI6odiAdWnvmA.cache
278
297
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/FG/FG-BqpRggGMOXoepAAKDnKJf3YSxLoqyKYByHOyPhVE.cache
279
298
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_9WAKcyhWaKsXtDJBWkFXYEpjeVSDI-aYQcoIby45I.cache
280
299
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_N92h27J6XZ47drVHd36L-LHb1TeVSJOP8GCoR6rfc.cache
300
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/wA/wATh7Ebr5mFZMB9ZJY3oSB30TkhmKO7d13dHqZYv-G0.cache
281
301
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/2W/2WafOXAlZWOOKjT_pCsPP6H0bip-q92L9Q8XzWyMqbc.cache
282
302
  - spec/features/access_restricted_spec.rb
283
303
  - spec/support/features/user_agent_helper.rb