devise_sessionable 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +109 -0
  4. data/Rakefile +26 -0
  5. data/app/assets/config/devise_sessionable_manifest.js +2 -0
  6. data/app/assets/javascripts/devise_sessionable/application.js +13 -0
  7. data/app/assets/stylesheets/devise_sessionable/application.css +15 -0
  8. data/app/controllers/devise_sessionable/application_controller.rb +5 -0
  9. data/app/helpers/devise_sessionable/application_helper.rb +4 -0
  10. data/app/jobs/devise_sessionable/application_job.rb +4 -0
  11. data/app/mailers/devise_sessionable/application_mailer.rb +6 -0
  12. data/app/models/devise_sessionable/application_record.rb +5 -0
  13. data/app/models/devise_sessionable/session.rb +11 -0
  14. data/app/views/layouts/devise_sessionable/application.html.erb +14 -0
  15. data/config/initializers/simple_token_authentication.rb +31 -0
  16. data/config/routes.rb +3 -0
  17. data/lib/devise_sessionable.rb +15 -0
  18. data/lib/devise_sessionable/acts_as_sessionable.rb +17 -0
  19. data/lib/devise_sessionable/engine.rb +12 -0
  20. data/lib/devise_sessionable/version.rb +3 -0
  21. data/lib/generators/devise_sessionable/install/install_generator.rb +24 -0
  22. data/lib/generators/devise_sessionable/install/templates/migration.rb +16 -0
  23. data/lib/tasks/devise_sessionable_tasks.rake +4 -0
  24. data/spec/factories/sessions.rb +5 -0
  25. data/spec/factories/users.rb +4 -0
  26. data/spec/models/session_spec.rb +18 -0
  27. data/spec/rails_helper.rb +28 -0
  28. data/spec/spec_helper.rb +13 -0
  29. data/spec/test_app/Rakefile +6 -0
  30. data/spec/test_app/app/assets/config/manifest.js +5 -0
  31. data/spec/test_app/app/assets/javascripts/application.js +13 -0
  32. data/spec/test_app/app/assets/javascripts/cable.js +13 -0
  33. data/spec/test_app/app/assets/stylesheets/application.css +15 -0
  34. data/spec/test_app/app/channels/application_cable/channel.rb +4 -0
  35. data/spec/test_app/app/channels/application_cable/connection.rb +4 -0
  36. data/spec/test_app/app/controllers/application_controller.rb +3 -0
  37. data/spec/test_app/app/helpers/application_helper.rb +2 -0
  38. data/spec/test_app/app/jobs/application_job.rb +2 -0
  39. data/spec/test_app/app/mailers/application_mailer.rb +4 -0
  40. data/spec/test_app/app/models/application_record.rb +3 -0
  41. data/spec/test_app/app/models/user.rb +2 -0
  42. data/spec/test_app/app/views/layouts/application.html.erb +14 -0
  43. data/spec/test_app/app/views/layouts/mailer.html.erb +13 -0
  44. data/spec/test_app/app/views/layouts/mailer.text.erb +1 -0
  45. data/spec/test_app/bin/bundle +3 -0
  46. data/spec/test_app/bin/rails +4 -0
  47. data/spec/test_app/bin/rake +4 -0
  48. data/spec/test_app/bin/setup +38 -0
  49. data/spec/test_app/bin/update +29 -0
  50. data/spec/test_app/bin/yarn +11 -0
  51. data/spec/test_app/config.ru +5 -0
  52. data/spec/test_app/config/application.rb +25 -0
  53. data/spec/test_app/config/boot.rb +5 -0
  54. data/spec/test_app/config/cable.yml +10 -0
  55. data/spec/test_app/config/database.yml +85 -0
  56. data/spec/test_app/config/environment.rb +5 -0
  57. data/spec/test_app/config/environments/development.rb +54 -0
  58. data/spec/test_app/config/environments/production.rb +91 -0
  59. data/spec/test_app/config/environments/test.rb +42 -0
  60. data/spec/test_app/config/initializers/application_controller_renderer.rb +6 -0
  61. data/spec/test_app/config/initializers/assets.rb +14 -0
  62. data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  63. data/spec/test_app/config/initializers/cookies_serializer.rb +5 -0
  64. data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  65. data/spec/test_app/config/initializers/inflections.rb +16 -0
  66. data/spec/test_app/config/initializers/mime_types.rb +4 -0
  67. data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
  68. data/spec/test_app/config/locales/en.yml +33 -0
  69. data/spec/test_app/config/puma.rb +56 -0
  70. data/spec/test_app/config/routes.rb +3 -0
  71. data/spec/test_app/config/secrets.yml +32 -0
  72. data/spec/test_app/config/spring.rb +6 -0
  73. data/spec/test_app/db/migrate/20170803015911_devise_sessionable_create_sessions.rb +16 -0
  74. data/spec/test_app/db/migrate/20170803015941_create_users.rb +8 -0
  75. data/spec/test_app/db/schema.rb +33 -0
  76. data/spec/test_app/log/development.log +274 -0
  77. data/spec/test_app/log/test.log +595 -0
  78. data/spec/test_app/package.json +5 -0
  79. data/spec/test_app/public/404.html +67 -0
  80. data/spec/test_app/public/422.html +67 -0
  81. data/spec/test_app/public/500.html +66 -0
  82. data/spec/test_app/public/apple-touch-icon-precomposed.png +0 -0
  83. data/spec/test_app/public/apple-touch-icon.png +0 -0
  84. data/spec/test_app/public/favicon.ico +0 -0
  85. metadata +312 -0
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "test_app",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,312 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devise_sessionable
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Isaac Norman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.7
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '6.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">"
28
+ - !ruby/object:Gem::Version
29
+ version: 4.2.7
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '6.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: simple_token_authentication
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.0'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '2.0'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.0'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '2.0'
53
+ - !ruby/object:Gem::Dependency
54
+ name: pg
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ type: :development
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ - !ruby/object:Gem::Dependency
68
+ name: rspec-rails
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ type: :development
75
+ prerelease: false
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ - !ruby/object:Gem::Dependency
82
+ name: factory_girl_rails
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: pry
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ - !ruby/object:Gem::Dependency
110
+ name: appraisal
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ type: :development
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ - !ruby/object:Gem::Dependency
124
+ name: shoulda-matchers
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ type: :development
131
+ prerelease: false
132
+ version_requirements: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ description: Use session objects for token authentication
138
+ email:
139
+ - isaacdnorman@gmail.com
140
+ executables: []
141
+ extensions: []
142
+ extra_rdoc_files: []
143
+ files:
144
+ - MIT-LICENSE
145
+ - README.md
146
+ - Rakefile
147
+ - app/assets/config/devise_sessionable_manifest.js
148
+ - app/assets/javascripts/devise_sessionable/application.js
149
+ - app/assets/stylesheets/devise_sessionable/application.css
150
+ - app/controllers/devise_sessionable/application_controller.rb
151
+ - app/helpers/devise_sessionable/application_helper.rb
152
+ - app/jobs/devise_sessionable/application_job.rb
153
+ - app/mailers/devise_sessionable/application_mailer.rb
154
+ - app/models/devise_sessionable/application_record.rb
155
+ - app/models/devise_sessionable/session.rb
156
+ - app/views/layouts/devise_sessionable/application.html.erb
157
+ - config/initializers/simple_token_authentication.rb
158
+ - config/routes.rb
159
+ - lib/devise_sessionable.rb
160
+ - lib/devise_sessionable/acts_as_sessionable.rb
161
+ - lib/devise_sessionable/engine.rb
162
+ - lib/devise_sessionable/version.rb
163
+ - lib/generators/devise_sessionable/install/install_generator.rb
164
+ - lib/generators/devise_sessionable/install/templates/migration.rb
165
+ - lib/tasks/devise_sessionable_tasks.rake
166
+ - spec/factories/sessions.rb
167
+ - spec/factories/users.rb
168
+ - spec/models/session_spec.rb
169
+ - spec/rails_helper.rb
170
+ - spec/spec_helper.rb
171
+ - spec/test_app/Rakefile
172
+ - spec/test_app/app/assets/config/manifest.js
173
+ - spec/test_app/app/assets/javascripts/application.js
174
+ - spec/test_app/app/assets/javascripts/cable.js
175
+ - spec/test_app/app/assets/stylesheets/application.css
176
+ - spec/test_app/app/channels/application_cable/channel.rb
177
+ - spec/test_app/app/channels/application_cable/connection.rb
178
+ - spec/test_app/app/controllers/application_controller.rb
179
+ - spec/test_app/app/helpers/application_helper.rb
180
+ - spec/test_app/app/jobs/application_job.rb
181
+ - spec/test_app/app/mailers/application_mailer.rb
182
+ - spec/test_app/app/models/application_record.rb
183
+ - spec/test_app/app/models/user.rb
184
+ - spec/test_app/app/views/layouts/application.html.erb
185
+ - spec/test_app/app/views/layouts/mailer.html.erb
186
+ - spec/test_app/app/views/layouts/mailer.text.erb
187
+ - spec/test_app/bin/bundle
188
+ - spec/test_app/bin/rails
189
+ - spec/test_app/bin/rake
190
+ - spec/test_app/bin/setup
191
+ - spec/test_app/bin/update
192
+ - spec/test_app/bin/yarn
193
+ - spec/test_app/config.ru
194
+ - spec/test_app/config/application.rb
195
+ - spec/test_app/config/boot.rb
196
+ - spec/test_app/config/cable.yml
197
+ - spec/test_app/config/database.yml
198
+ - spec/test_app/config/environment.rb
199
+ - spec/test_app/config/environments/development.rb
200
+ - spec/test_app/config/environments/production.rb
201
+ - spec/test_app/config/environments/test.rb
202
+ - spec/test_app/config/initializers/application_controller_renderer.rb
203
+ - spec/test_app/config/initializers/assets.rb
204
+ - spec/test_app/config/initializers/backtrace_silencers.rb
205
+ - spec/test_app/config/initializers/cookies_serializer.rb
206
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
207
+ - spec/test_app/config/initializers/inflections.rb
208
+ - spec/test_app/config/initializers/mime_types.rb
209
+ - spec/test_app/config/initializers/wrap_parameters.rb
210
+ - spec/test_app/config/locales/en.yml
211
+ - spec/test_app/config/puma.rb
212
+ - spec/test_app/config/routes.rb
213
+ - spec/test_app/config/secrets.yml
214
+ - spec/test_app/config/spring.rb
215
+ - spec/test_app/db/migrate/20170803015911_devise_sessionable_create_sessions.rb
216
+ - spec/test_app/db/migrate/20170803015941_create_users.rb
217
+ - spec/test_app/db/schema.rb
218
+ - spec/test_app/log/development.log
219
+ - spec/test_app/log/test.log
220
+ - spec/test_app/package.json
221
+ - spec/test_app/public/404.html
222
+ - spec/test_app/public/422.html
223
+ - spec/test_app/public/500.html
224
+ - spec/test_app/public/apple-touch-icon-precomposed.png
225
+ - spec/test_app/public/apple-touch-icon.png
226
+ - spec/test_app/public/favicon.ico
227
+ homepage: https://github.com/Papercloud/devise_sessionable
228
+ licenses:
229
+ - MIT
230
+ metadata: {}
231
+ post_install_message:
232
+ rdoc_options: []
233
+ require_paths:
234
+ - lib
235
+ required_ruby_version: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - ">="
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ required_rubygems_version: !ruby/object:Gem::Requirement
241
+ requirements:
242
+ - - ">="
243
+ - !ruby/object:Gem::Version
244
+ version: '0'
245
+ requirements: []
246
+ rubyforge_project:
247
+ rubygems_version: 2.6.13
248
+ signing_key:
249
+ specification_version: 4
250
+ summary: Session Authentication with tokens
251
+ test_files:
252
+ - spec/spec_helper.rb
253
+ - spec/test_app/app/mailers/application_mailer.rb
254
+ - spec/test_app/app/models/application_record.rb
255
+ - spec/test_app/app/models/user.rb
256
+ - spec/test_app/app/jobs/application_job.rb
257
+ - spec/test_app/app/controllers/application_controller.rb
258
+ - spec/test_app/app/views/layouts/application.html.erb
259
+ - spec/test_app/app/views/layouts/mailer.html.erb
260
+ - spec/test_app/app/views/layouts/mailer.text.erb
261
+ - spec/test_app/app/assets/config/manifest.js
262
+ - spec/test_app/app/assets/javascripts/cable.js
263
+ - spec/test_app/app/assets/javascripts/application.js
264
+ - spec/test_app/app/assets/stylesheets/application.css
265
+ - spec/test_app/app/helpers/application_helper.rb
266
+ - spec/test_app/app/channels/application_cable/connection.rb
267
+ - spec/test_app/app/channels/application_cable/channel.rb
268
+ - spec/test_app/bin/update
269
+ - spec/test_app/bin/rake
270
+ - spec/test_app/bin/setup
271
+ - spec/test_app/bin/bundle
272
+ - spec/test_app/bin/yarn
273
+ - spec/test_app/bin/rails
274
+ - spec/test_app/config/secrets.yml
275
+ - spec/test_app/config/routes.rb
276
+ - spec/test_app/config/locales/en.yml
277
+ - spec/test_app/config/cable.yml
278
+ - spec/test_app/config/environments/production.rb
279
+ - spec/test_app/config/environments/development.rb
280
+ - spec/test_app/config/environments/test.rb
281
+ - spec/test_app/config/spring.rb
282
+ - spec/test_app/config/environment.rb
283
+ - spec/test_app/config/application.rb
284
+ - spec/test_app/config/puma.rb
285
+ - spec/test_app/config/database.yml
286
+ - spec/test_app/config/boot.rb
287
+ - spec/test_app/config/initializers/application_controller_renderer.rb
288
+ - spec/test_app/config/initializers/backtrace_silencers.rb
289
+ - spec/test_app/config/initializers/mime_types.rb
290
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
291
+ - spec/test_app/config/initializers/wrap_parameters.rb
292
+ - spec/test_app/config/initializers/assets.rb
293
+ - spec/test_app/config/initializers/cookies_serializer.rb
294
+ - spec/test_app/config/initializers/inflections.rb
295
+ - spec/test_app/config.ru
296
+ - spec/test_app/Rakefile
297
+ - spec/test_app/public/favicon.ico
298
+ - spec/test_app/public/422.html
299
+ - spec/test_app/public/apple-touch-icon.png
300
+ - spec/test_app/public/500.html
301
+ - spec/test_app/public/404.html
302
+ - spec/test_app/public/apple-touch-icon-precomposed.png
303
+ - spec/test_app/package.json
304
+ - spec/test_app/db/schema.rb
305
+ - spec/test_app/db/migrate/20170803015911_devise_sessionable_create_sessions.rb
306
+ - spec/test_app/db/migrate/20170803015941_create_users.rb
307
+ - spec/test_app/log/test.log
308
+ - spec/test_app/log/development.log
309
+ - spec/models/session_spec.rb
310
+ - spec/factories/users.rb
311
+ - spec/factories/sessions.rb
312
+ - spec/rails_helper.rb