mongo_session_store-rails4 5.1.0 → 6.0.0

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.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +7 -3
  3. data/Gemfile +19 -12
  4. data/README.md +6 -4
  5. data/Rakefile +18 -2
  6. data/lib/mongo_session_store/mongo_store.rb +13 -8
  7. data/lib/mongo_session_store/mongo_store_base.rb +2 -1
  8. data/lib/mongo_session_store/version.rb +1 -1
  9. data/mongo_session_store-rails3.gemspec +1 -0
  10. data/mongo_session_store-rails4.gemspec +1 -0
  11. data/spec/rails_3.1_app/config/initializers/session_store.rb +1 -1
  12. data/spec/rails_3.2_app/config/initializers/session_store.rb +1 -1
  13. data/spec/rails_4.0_app/config/initializers/session_store.rb +1 -1
  14. data/spec/rails_4.1_app/config/initializers/session_store.rb +1 -1
  15. data/spec/rails_4.2_app/.gitignore +17 -0
  16. data/spec/rails_4.2_app/Rakefile +6 -0
  17. data/spec/rails_4.2_app/app/assets/images/.keep +0 -0
  18. data/spec/rails_4.2_app/app/assets/javascripts/application.js +13 -0
  19. data/spec/rails_4.2_app/app/assets/stylesheets/application.css +15 -0
  20. data/spec/rails_4.2_app/app/controllers/application_controller.rb +5 -0
  21. data/spec/rails_4.2_app/app/controllers/concerns/.keep +0 -0
  22. data/spec/rails_4.2_app/app/controllers/home_controller.rb +4 -0
  23. data/spec/rails_4.2_app/app/helpers/application_helper.rb +2 -0
  24. data/spec/rails_4.2_app/app/mailers/.keep +0 -0
  25. data/spec/rails_4.2_app/app/models/.keep +0 -0
  26. data/spec/rails_4.2_app/app/models/concerns/.keep +0 -0
  27. data/spec/rails_4.2_app/app/models/user.rb +5 -0
  28. data/spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb +12 -0
  29. data/spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  30. data/spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  31. data/spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  32. data/spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb +16 -0
  33. data/spec/rails_4.2_app/app/views/devise/passwords/new.html.erb +12 -0
  34. data/spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb +29 -0
  35. data/spec/rails_4.2_app/app/views/devise/registrations/new.html.erb +18 -0
  36. data/spec/rails_4.2_app/app/views/devise/sessions/new.html.erb +17 -0
  37. data/spec/rails_4.2_app/app/views/devise/shared/_links.erb +25 -0
  38. data/spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb +12 -0
  39. data/spec/rails_4.2_app/app/views/home/index.html.erb +10 -0
  40. data/spec/rails_4.2_app/app/views/layouts/application.html.erb +17 -0
  41. data/spec/rails_4.2_app/bin/bundle +3 -0
  42. data/spec/rails_4.2_app/bin/rails +8 -0
  43. data/spec/rails_4.2_app/bin/rake +8 -0
  44. data/spec/rails_4.2_app/bin/setup +29 -0
  45. data/spec/rails_4.2_app/bin/spring +15 -0
  46. data/spec/rails_4.2_app/config.ru +4 -0
  47. data/spec/rails_4.2_app/config/application.rb +26 -0
  48. data/spec/rails_4.2_app/config/boot.rb +3 -0
  49. data/spec/rails_4.2_app/config/database.yml +11 -0
  50. data/spec/rails_4.2_app/config/environment.rb +5 -0
  51. data/spec/rails_4.2_app/config/environments/development.rb +41 -0
  52. data/spec/rails_4.2_app/config/environments/production.rb +79 -0
  53. data/spec/rails_4.2_app/config/environments/test.rb +42 -0
  54. data/spec/rails_4.2_app/config/initializers/assets.rb +11 -0
  55. data/spec/rails_4.2_app/config/initializers/backtrace_silencers.rb +7 -0
  56. data/spec/rails_4.2_app/config/initializers/cookies_serializer.rb +3 -0
  57. data/spec/rails_4.2_app/config/initializers/devise.rb +254 -0
  58. data/spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/spec/rails_4.2_app/config/initializers/inflections.rb +16 -0
  60. data/spec/rails_4.2_app/config/initializers/mime_types.rb +4 -0
  61. data/spec/rails_4.2_app/config/initializers/session_store.rb +5 -0
  62. data/spec/rails_4.2_app/config/initializers/wrap_parameters.rb +14 -0
  63. data/spec/rails_4.2_app/config/locales/en.yml +23 -0
  64. data/spec/rails_4.2_app/config/mongo.yml +11 -0
  65. data/spec/rails_4.2_app/config/mongoid.yml +13 -0
  66. data/spec/rails_4.2_app/config/routes.rb +4 -0
  67. data/spec/rails_4.2_app/config/secrets.yml +22 -0
  68. data/spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  69. data/spec/rails_4.2_app/db/schema.rb +25 -0
  70. data/spec/rails_4.2_app/db/seeds.rb +7 -0
  71. data/spec/rails_4.2_app/lib/assets/.keep +0 -0
  72. data/spec/rails_4.2_app/lib/tasks/.keep +0 -0
  73. data/spec/rails_4.2_app/log/.keep +0 -0
  74. data/spec/rails_4.2_app/public/404.html +67 -0
  75. data/spec/rails_4.2_app/public/422.html +67 -0
  76. data/spec/rails_4.2_app/public/500.html +66 -0
  77. data/spec/rails_4.2_app/public/favicon.ico +0 -0
  78. data/spec/rails_4.2_app/public/robots.txt +5 -0
  79. data/spec/rails_helper.rb +1 -1
  80. metadata +133 -4
File without changes
File without changes
File without changes
@@ -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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -12,7 +12,7 @@ def db
12
12
  elsif defined?(MongoMapper)
13
13
  MongoMapper.database
14
14
  elsif defined?(Mongo)
15
- Mongo::Connection.new[database_name]
15
+ Mongo::Client.new(['127.0.0.1:27017'], database: database_name).database
16
16
  end
17
17
  end
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongo_session_store-rails4
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Hempel
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-06-21 00:00:00.000000000 Z
14
+ date: 2015-03-30 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: actionpack
@@ -290,10 +290,75 @@ files:
290
290
  - spec/rails_4.1_app/public/500.html
291
291
  - spec/rails_4.1_app/public/favicon.ico
292
292
  - spec/rails_4.1_app/public/robots.txt
293
+ - spec/rails_4.2_app/.gitignore
294
+ - spec/rails_4.2_app/Rakefile
295
+ - spec/rails_4.2_app/app/assets/images/.keep
296
+ - spec/rails_4.2_app/app/assets/javascripts/application.js
297
+ - spec/rails_4.2_app/app/assets/stylesheets/application.css
298
+ - spec/rails_4.2_app/app/controllers/application_controller.rb
299
+ - spec/rails_4.2_app/app/controllers/concerns/.keep
300
+ - spec/rails_4.2_app/app/controllers/home_controller.rb
301
+ - spec/rails_4.2_app/app/helpers/application_helper.rb
302
+ - spec/rails_4.2_app/app/mailers/.keep
303
+ - spec/rails_4.2_app/app/models/.keep
304
+ - spec/rails_4.2_app/app/models/concerns/.keep
305
+ - spec/rails_4.2_app/app/models/user.rb
306
+ - spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb
307
+ - spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb
308
+ - spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb
309
+ - spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb
310
+ - spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb
311
+ - spec/rails_4.2_app/app/views/devise/passwords/new.html.erb
312
+ - spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb
313
+ - spec/rails_4.2_app/app/views/devise/registrations/new.html.erb
314
+ - spec/rails_4.2_app/app/views/devise/sessions/new.html.erb
315
+ - spec/rails_4.2_app/app/views/devise/shared/_links.erb
316
+ - spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb
317
+ - spec/rails_4.2_app/app/views/home/index.html.erb
318
+ - spec/rails_4.2_app/app/views/layouts/application.html.erb
319
+ - spec/rails_4.2_app/bin/bundle
320
+ - spec/rails_4.2_app/bin/rails
321
+ - spec/rails_4.2_app/bin/rake
322
+ - spec/rails_4.2_app/bin/setup
323
+ - spec/rails_4.2_app/bin/spring
324
+ - spec/rails_4.2_app/config.ru
325
+ - spec/rails_4.2_app/config/application.rb
326
+ - spec/rails_4.2_app/config/boot.rb
327
+ - spec/rails_4.2_app/config/database.yml
328
+ - spec/rails_4.2_app/config/environment.rb
329
+ - spec/rails_4.2_app/config/environments/development.rb
330
+ - spec/rails_4.2_app/config/environments/production.rb
331
+ - spec/rails_4.2_app/config/environments/test.rb
332
+ - spec/rails_4.2_app/config/initializers/assets.rb
333
+ - spec/rails_4.2_app/config/initializers/backtrace_silencers.rb
334
+ - spec/rails_4.2_app/config/initializers/cookies_serializer.rb
335
+ - spec/rails_4.2_app/config/initializers/devise.rb
336
+ - spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb
337
+ - spec/rails_4.2_app/config/initializers/inflections.rb
338
+ - spec/rails_4.2_app/config/initializers/mime_types.rb
339
+ - spec/rails_4.2_app/config/initializers/session_store.rb
340
+ - spec/rails_4.2_app/config/initializers/wrap_parameters.rb
341
+ - spec/rails_4.2_app/config/locales/en.yml
342
+ - spec/rails_4.2_app/config/mongo.yml
343
+ - spec/rails_4.2_app/config/mongoid.yml
344
+ - spec/rails_4.2_app/config/routes.rb
345
+ - spec/rails_4.2_app/config/secrets.yml
346
+ - spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb
347
+ - spec/rails_4.2_app/db/schema.rb
348
+ - spec/rails_4.2_app/db/seeds.rb
349
+ - spec/rails_4.2_app/lib/assets/.keep
350
+ - spec/rails_4.2_app/lib/tasks/.keep
351
+ - spec/rails_4.2_app/log/.keep
352
+ - spec/rails_4.2_app/public/404.html
353
+ - spec/rails_4.2_app/public/422.html
354
+ - spec/rails_4.2_app/public/500.html
355
+ - spec/rails_4.2_app/public/favicon.ico
356
+ - spec/rails_4.2_app/public/robots.txt
293
357
  - spec/rails_helper.rb
294
358
  - spec/spec_helper.rb
295
359
  homepage: http://github.com/brianhempel/mongo_session_store
296
- licenses: []
360
+ licenses:
361
+ - MIT
297
362
  metadata: {}
298
363
  post_install_message:
299
364
  rdoc_options: []
@@ -311,7 +376,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
311
376
  version: '0'
312
377
  requirements: []
313
378
  rubyforge_project:
314
- rubygems_version: 2.2.2
379
+ rubygems_version: 2.4.5
315
380
  signing_key:
316
381
  specification_version: 4
317
382
  summary: Rails session stores for MongoMapper, Mongoid, or any other ODM. Rails 3.1,
@@ -556,5 +621,69 @@ test_files:
556
621
  - spec/rails_4.1_app/public/500.html
557
622
  - spec/rails_4.1_app/public/favicon.ico
558
623
  - spec/rails_4.1_app/public/robots.txt
624
+ - spec/rails_4.2_app/.gitignore
625
+ - spec/rails_4.2_app/Rakefile
626
+ - spec/rails_4.2_app/app/assets/images/.keep
627
+ - spec/rails_4.2_app/app/assets/javascripts/application.js
628
+ - spec/rails_4.2_app/app/assets/stylesheets/application.css
629
+ - spec/rails_4.2_app/app/controllers/application_controller.rb
630
+ - spec/rails_4.2_app/app/controllers/concerns/.keep
631
+ - spec/rails_4.2_app/app/controllers/home_controller.rb
632
+ - spec/rails_4.2_app/app/helpers/application_helper.rb
633
+ - spec/rails_4.2_app/app/mailers/.keep
634
+ - spec/rails_4.2_app/app/models/.keep
635
+ - spec/rails_4.2_app/app/models/concerns/.keep
636
+ - spec/rails_4.2_app/app/models/user.rb
637
+ - spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb
638
+ - spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb
639
+ - spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb
640
+ - spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb
641
+ - spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb
642
+ - spec/rails_4.2_app/app/views/devise/passwords/new.html.erb
643
+ - spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb
644
+ - spec/rails_4.2_app/app/views/devise/registrations/new.html.erb
645
+ - spec/rails_4.2_app/app/views/devise/sessions/new.html.erb
646
+ - spec/rails_4.2_app/app/views/devise/shared/_links.erb
647
+ - spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb
648
+ - spec/rails_4.2_app/app/views/home/index.html.erb
649
+ - spec/rails_4.2_app/app/views/layouts/application.html.erb
650
+ - spec/rails_4.2_app/bin/bundle
651
+ - spec/rails_4.2_app/bin/rails
652
+ - spec/rails_4.2_app/bin/rake
653
+ - spec/rails_4.2_app/bin/setup
654
+ - spec/rails_4.2_app/bin/spring
655
+ - spec/rails_4.2_app/config.ru
656
+ - spec/rails_4.2_app/config/application.rb
657
+ - spec/rails_4.2_app/config/boot.rb
658
+ - spec/rails_4.2_app/config/database.yml
659
+ - spec/rails_4.2_app/config/environment.rb
660
+ - spec/rails_4.2_app/config/environments/development.rb
661
+ - spec/rails_4.2_app/config/environments/production.rb
662
+ - spec/rails_4.2_app/config/environments/test.rb
663
+ - spec/rails_4.2_app/config/initializers/assets.rb
664
+ - spec/rails_4.2_app/config/initializers/backtrace_silencers.rb
665
+ - spec/rails_4.2_app/config/initializers/cookies_serializer.rb
666
+ - spec/rails_4.2_app/config/initializers/devise.rb
667
+ - spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb
668
+ - spec/rails_4.2_app/config/initializers/inflections.rb
669
+ - spec/rails_4.2_app/config/initializers/mime_types.rb
670
+ - spec/rails_4.2_app/config/initializers/session_store.rb
671
+ - spec/rails_4.2_app/config/initializers/wrap_parameters.rb
672
+ - spec/rails_4.2_app/config/locales/en.yml
673
+ - spec/rails_4.2_app/config/mongo.yml
674
+ - spec/rails_4.2_app/config/mongoid.yml
675
+ - spec/rails_4.2_app/config/routes.rb
676
+ - spec/rails_4.2_app/config/secrets.yml
677
+ - spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb
678
+ - spec/rails_4.2_app/db/schema.rb
679
+ - spec/rails_4.2_app/db/seeds.rb
680
+ - spec/rails_4.2_app/lib/assets/.keep
681
+ - spec/rails_4.2_app/lib/tasks/.keep
682
+ - spec/rails_4.2_app/log/.keep
683
+ - spec/rails_4.2_app/public/404.html
684
+ - spec/rails_4.2_app/public/422.html
685
+ - spec/rails_4.2_app/public/500.html
686
+ - spec/rails_4.2_app/public/favicon.ico
687
+ - spec/rails_4.2_app/public/robots.txt
559
688
  - spec/rails_helper.rb
560
689
  - spec/spec_helper.rb