omniauth-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (140) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +71 -0
  4. data/Rakefile +41 -0
  5. data/app/assets/config/omniauth_rails_manifest.js +1 -0
  6. data/app/assets/stylesheets/omniauth/rails/application.css +19 -0
  7. data/app/controllers/omniauth/rails/application_controller.rb +8 -0
  8. data/app/controllers/omniauth/rails/flash.rb +46 -0
  9. data/app/controllers/omniauth/rails/require_authentication.rb +26 -0
  10. data/app/controllers/omniauth/rails/require_authorization.rb +32 -0
  11. data/app/controllers/omniauth/rails/sessions_controller.rb +55 -0
  12. data/app/helpers/omniauth/rails/application_helper.rb +16 -0
  13. data/app/models/omniauth/rails/authentication_data_store.rb +31 -0
  14. data/app/models/omniauth/rails/authentication_request.rb +28 -0
  15. data/app/models/omniauth/rails/authentication_session.rb +53 -0
  16. data/app/models/omniauth/rails/authorization_checker.rb +28 -0
  17. data/app/models/omniauth/rails/authorization_types/base.rb +17 -0
  18. data/app/models/omniauth/rails/authorization_types/domains.rb +22 -0
  19. data/app/models/omniauth/rails/authorization_types/emails.rb +18 -0
  20. data/app/models/omniauth/rails/authorization_types/regex.rb +18 -0
  21. data/app/models/omniauth/rails/omni_auth_route_builder.rb +18 -0
  22. data/app/views/omniauth/rails/sessions/destroy.html.erb +6 -0
  23. data/config/initializers/omniauth_rails.rb +35 -0
  24. data/config/routes.rb +6 -0
  25. data/lib/omniauth/rails/configuration.rb +15 -0
  26. data/lib/omniauth/rails/engine.rb +22 -0
  27. data/lib/omniauth/rails/test/controller_helpers.rb +17 -0
  28. data/lib/omniauth/rails/test/request_helpers.rb +25 -0
  29. data/lib/omniauth/rails/version.rb +6 -0
  30. data/lib/omniauth/rails.rb +9 -0
  31. data/spec/controllers/application_controller_spec.rb +9 -0
  32. data/spec/examples.txt +19 -0
  33. data/spec/models/omniauth/rails/authorization_types/emails_spec.rb +28 -0
  34. data/spec/models/omniauth/rails/authorization_types/regex_spec.rb +28 -0
  35. data/spec/omniauth_rails_spec.rb +10 -0
  36. data/spec/rails_helper_for_engine.rb +62 -0
  37. data/spec/spec_helper.rb +93 -0
  38. data/spec/test_app/Rakefile +12 -0
  39. data/spec/test_app/app/assets/config/manifest.js +4 -0
  40. data/spec/test_app/app/assets/javascripts/application.js +13 -0
  41. data/spec/test_app/app/assets/stylesheets/application.css +15 -0
  42. data/spec/test_app/app/controllers/application_controller.rb +4 -0
  43. data/spec/test_app/app/controllers/private_controller.rb +9 -0
  44. data/spec/test_app/app/controllers/public_controller.rb +6 -0
  45. data/spec/test_app/app/helpers/application_helper.rb +3 -0
  46. data/spec/test_app/app/mailers/application_mailer.rb +5 -0
  47. data/spec/test_app/app/models/application_record.rb +4 -0
  48. data/spec/test_app/app/views/layouts/application.html.erb +24 -0
  49. data/spec/test_app/app/views/private/show.html.erb +1 -0
  50. data/spec/test_app/app/views/public/show.html.erb +1 -0
  51. data/spec/test_app/bin/bundle +4 -0
  52. data/spec/test_app/bin/rails +5 -0
  53. data/spec/test_app/bin/rake +5 -0
  54. data/spec/test_app/bin/setup +35 -0
  55. data/spec/test_app/bin/update +30 -0
  56. data/spec/test_app/config/application.rb +23 -0
  57. data/spec/test_app/config/boot.rb +6 -0
  58. data/spec/test_app/config/environment.rb +6 -0
  59. data/spec/test_app/config/environments/development.rb +55 -0
  60. data/spec/test_app/config/environments/production.rb +89 -0
  61. data/spec/test_app/config/environments/test.rb +43 -0
  62. data/spec/test_app/config/initializers/application_controller_renderer.rb +7 -0
  63. data/spec/test_app/config/initializers/assets.rb +12 -0
  64. data/spec/test_app/config/initializers/backtrace_silencers.rb +10 -0
  65. data/spec/test_app/config/initializers/cookies_serializer.rb +6 -0
  66. data/spec/test_app/config/initializers/filter_parameter_logging.rb +5 -0
  67. data/spec/test_app/config/initializers/inflections.rb +17 -0
  68. data/spec/test_app/config/initializers/mime_types.rb +5 -0
  69. data/spec/test_app/config/initializers/session_store.rb +4 -0
  70. data/spec/test_app/config/initializers/wrap_parameters.rb +15 -0
  71. data/spec/test_app/config/locales/en.yml +23 -0
  72. data/spec/test_app/config/omniauth_rails.yml +16 -0
  73. data/spec/test_app/config/puma.rb +48 -0
  74. data/spec/test_app/config/routes.rb +8 -0
  75. data/spec/test_app/config/secrets.yml +22 -0
  76. data/spec/test_app/config/spring.rb +7 -0
  77. data/spec/test_app/config.ru +6 -0
  78. data/spec/test_app/log/development.log +4451 -0
  79. data/spec/test_app/log/test.log +7601 -0
  80. data/spec/test_app/public/404.html +67 -0
  81. data/spec/test_app/public/422.html +67 -0
  82. data/spec/test_app/public/500.html +66 -0
  83. data/spec/test_app/public/apple-touch-icon-precomposed.png +0 -0
  84. data/spec/test_app/public/apple-touch-icon.png +0 -0
  85. data/spec/test_app/public/favicon.ico +0 -0
  86. data/spec/test_app/spec/controllers/private_controller_spec.rb +19 -0
  87. data/spec/test_app/spec/rails_helper.rb +54 -0
  88. data/spec/test_app/spec/requests/private_controller_spec.rb +26 -0
  89. data/spec/test_app/spec/requests/public_controller_spec.rb +13 -0
  90. data/spec/test_app/spec/requests/sessions_controller_spec.rb +87 -0
  91. data/spec/test_app/spec/spec_helper.rb +99 -0
  92. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/-5/-528MPRmC3ByNiAzVD1hs-NG3Muhf9FsYPaDbo4qIpI.cache +1 -0
  93. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/3v/3voyTxS8FmTTGPrz-QQ23N6AgGate2o7X5ZnZeTkQbs.cache +0 -0
  94. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/5V/5VAABbvE5t5bCDKmKjLivvfe1CqYdD4n4vtZQiMa4I0.cache +0 -0
  95. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/64/64siRwVaDPAW5fTe1O4rlGaq-0ExxAWA0-csPcik-uM.cache +0 -0
  96. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Aa/AasprW2BgqWDcmZnsPRxs-R5D0VGpL7dHYMwtsC1tmE.cache +0 -0
  97. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/An/An3DVlfO1pzT7FAnm09q3Ok_2PmGYhiAvxuW9OgG9wc.cache +0 -0
  98. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/C-/C-_kx_I8fFV2TrLPw8CNFy1uLrN6G4yLPg_4vOhlohQ.cache +0 -0
  99. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/EG/EGN6771mS8m_7wi-Cr-GgFKv9U9IE3gpo9JQ-N3AYlQ.cache +0 -0
  100. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Hl/HlzBaGDQ4NV3ctlz-qlmStUWDCELhxzVK1-SgLkPCH0.cache +0 -0
  101. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/IB/IBoXb9_P8EU8f7aPVNE8cWJybcus8fS7KGvi4HxKdMU.cache +1 -0
  102. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/K2/K28c2b37N3eRA-Pckb3MO3D3BvGXfbxDGNeRYIXG8Cg.cache +1 -0
  103. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/KJ/KJdFFU6zb4YpQWEm8bsXxx8kdQ01BdK0F0h6TTzpOiY.cache +0 -0
  104. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/KW/KWwCiQwwI6oqiIHZg_Qg2nrs1zXJISos9799GIL5viU.cache +0 -0
  105. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Kh/KhKDGOFwOEJlSwLMaG8Yak8AktHsnEr-fUwLpl9d0tc.cache +1 -0
  106. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/NXZl3HljnPNJmh2CNpp0skcYvQx4eSEp6vuG5o3lqqY.cache +0 -0
  107. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
  108. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Ob/ObDGu7gmDzQuH86CeAdhWRPf0sfv9Qo3CoxGK3VOYWI.cache +0 -0
  109. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/QG/QGjnK1OGVhAWzpma8R60Qdcr6v46sAWmpwQpeoWltX8.cache +1 -0
  110. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Qn/Qn2TRz8mMz8dPVvXgHUfqXC19EPZQgG3XDqm5W_E-A0.cache +1 -0
  111. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/WC/WCTd8gm1KmkPKRB14gd1wwFv3x9NwMsmquXet4Z1DTU.cache +2 -0
  112. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Z-/Z-3hfqbx8r350iW9zFPz_OdVHX0X4Z4bMk9YbS1eha8.cache +0 -0
  113. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Z2/Z2DJdVm4jsJXg0HzuQVyAAmjJbVdzKntXlmd14iNVbU.cache +0 -0
  114. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ZA/ZAzUlqsc-uLa_zcjt1t6EBkPqI8PkEoxz40i4FgrRlQ.cache +1 -0
  115. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/bN/bNCmkb6T3JKDzd6s7ZxOLn_WdC6gUnRARnBDHrMFS7o.cache +1 -0
  116. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache +0 -0
  117. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/d6/d6PosAq3dbPqxxvjAcaLgePkRuQ8w__EA-M42WarK_0.cache +1 -0
  118. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fD/fDbKpwc4jlsYlnxTT3vnhsiBcSJF3imnAGUBp9nq_Bw.cache +1 -0
  119. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fE/fEHvM7gLiXuJB6lDj2KNzgAx5L3BBn2NSsuodvPAryI.cache +0 -0
  120. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fg/fgbqfgH_CvzP2H744Q3ywDzlqLRSgSw0AH6ifkC7roo.cache +1 -0
  121. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/g4/g4TbkEUbvKBMpO8z4ioPbq8ArdLl-scuF3pVaLJhmVI.cache +1 -0
  122. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/id/idcyFsf20F5Vd3GC1XtM_PxlNnROM6CxO1j11NG3RWk.cache +1 -0
  123. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ih/ihflBRw1ToLzP0q8oKAJl_a6EHHbTdJUcVR5DANsIuA.cache +0 -0
  124. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/jz/jzXohzOyfczV5wKfQVQWgE1H0IMN4jaxEM3XlhHNgvk.cache +0 -0
  125. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/lH/lHLoBOtMavo_6UnfOn0DVLI2JQBT1W9sGR3IZzOD6o8.cache +2 -0
  126. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/mD/mDmWU5fLvNY4uggphc1wqYVQDn_w_U6Jz2XRSf59jDc.cache +0 -0
  127. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache +0 -0
  128. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n5/n5FDaqgvLV4Rc1Xm6TykMEFanDhSJJ77HPuPCEgCDQM.cache +1 -0
  129. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n9/n9Nzbk_dEL3fNO-u56owqnrG7YQmhcvDgJ2fWWE_9jE.cache +0 -0
  130. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/nU/nUDR2L4CaIx5IszaYaaaACw519TTTzvpxsp7NMl6KyQ.cache +1 -0
  131. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
  132. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/pc/pcFf9fij5Xa__QoHi-QzN_0Q_UGLhv6gihTXnoFX3sg.cache +1 -0
  133. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/q-/q-721tFv_0DZO9GZ_kHYUD_jn6GNRC09vb51mwyxbuI.cache +1 -0
  134. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/r6/r6saZ-BJCnX2-U353od1DgtZIGy5kXrCuXatXntMcTE.cache +0 -0
  135. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/wY/wYWiPwDGlToFGYId__oKg8QMPEeuRZoP1FhQahshfOo.cache +1 -0
  136. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/yD/yDj60NQvsiwl1QWQXH-iC4pgF1cmHkUFo-kkXBSjsIQ.cache +1 -0
  137. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ym/ymCwqEVBkEs6bYteLf70KCA5pCKZtqjQ3TbZQzrIs3M.cache +0 -0
  138. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/z0/z041WxjoEQvRhtSLORbkRlsNTgi68Rwx7XUyaDbPn0M.cache +1 -0
  139. data/spec/test_app/tmp/pids/server.pid +1 -0
  140. metadata +453 -0
@@ -0,0 +1 @@
1
+ I"�/Users/danrabinowitz/code/omniauth-rails/app/assets/stylesheets/omniauth/rails/application.css?type=text/css&id=4cd6de2859859fbc8f2e9ec3359f1559bb4cf223165cc1f223ce1ac2c9b8e13e:ET
@@ -0,0 +1 @@
1
+ 61688
metadata ADDED
@@ -0,0 +1,453 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dan Rabinowitz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-09-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: byebug
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: awesome_print
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov-console
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: dotenv-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: brakeman
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 5.0.0
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 5.0.0.1
135
+ type: :runtime
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: 5.0.0
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 5.0.0.1
145
+ - !ruby/object:Gem::Dependency
146
+ name: omniauth
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ type: :runtime
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ - !ruby/object:Gem::Dependency
160
+ name: omniauth-google-oauth2
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ description: A Rails Engine to make it as easy as possible to add oauth authentication
174
+ to a Rails app.
175
+ email:
176
+ - djr@DanielRabinowitz.com
177
+ executables: []
178
+ extensions: []
179
+ extra_rdoc_files: []
180
+ files:
181
+ - MIT-LICENSE
182
+ - README.md
183
+ - Rakefile
184
+ - app/assets/config/omniauth_rails_manifest.js
185
+ - app/assets/stylesheets/omniauth/rails/application.css
186
+ - app/controllers/omniauth/rails/application_controller.rb
187
+ - app/controllers/omniauth/rails/flash.rb
188
+ - app/controllers/omniauth/rails/require_authentication.rb
189
+ - app/controllers/omniauth/rails/require_authorization.rb
190
+ - app/controllers/omniauth/rails/sessions_controller.rb
191
+ - app/helpers/omniauth/rails/application_helper.rb
192
+ - app/models/omniauth/rails/authentication_data_store.rb
193
+ - app/models/omniauth/rails/authentication_request.rb
194
+ - app/models/omniauth/rails/authentication_session.rb
195
+ - app/models/omniauth/rails/authorization_checker.rb
196
+ - app/models/omniauth/rails/authorization_types/base.rb
197
+ - app/models/omniauth/rails/authorization_types/domains.rb
198
+ - app/models/omniauth/rails/authorization_types/emails.rb
199
+ - app/models/omniauth/rails/authorization_types/regex.rb
200
+ - app/models/omniauth/rails/omni_auth_route_builder.rb
201
+ - app/views/omniauth/rails/sessions/destroy.html.erb
202
+ - config/initializers/omniauth_rails.rb
203
+ - config/routes.rb
204
+ - lib/omniauth/rails.rb
205
+ - lib/omniauth/rails/configuration.rb
206
+ - lib/omniauth/rails/engine.rb
207
+ - lib/omniauth/rails/test/controller_helpers.rb
208
+ - lib/omniauth/rails/test/request_helpers.rb
209
+ - lib/omniauth/rails/version.rb
210
+ - spec/controllers/application_controller_spec.rb
211
+ - spec/examples.txt
212
+ - spec/models/omniauth/rails/authorization_types/emails_spec.rb
213
+ - spec/models/omniauth/rails/authorization_types/regex_spec.rb
214
+ - spec/omniauth_rails_spec.rb
215
+ - spec/rails_helper_for_engine.rb
216
+ - spec/spec_helper.rb
217
+ - spec/test_app/Rakefile
218
+ - spec/test_app/app/assets/config/manifest.js
219
+ - spec/test_app/app/assets/javascripts/application.js
220
+ - spec/test_app/app/assets/stylesheets/application.css
221
+ - spec/test_app/app/controllers/application_controller.rb
222
+ - spec/test_app/app/controllers/private_controller.rb
223
+ - spec/test_app/app/controllers/public_controller.rb
224
+ - spec/test_app/app/helpers/application_helper.rb
225
+ - spec/test_app/app/mailers/application_mailer.rb
226
+ - spec/test_app/app/models/application_record.rb
227
+ - spec/test_app/app/views/layouts/application.html.erb
228
+ - spec/test_app/app/views/private/show.html.erb
229
+ - spec/test_app/app/views/public/show.html.erb
230
+ - spec/test_app/bin/bundle
231
+ - spec/test_app/bin/rails
232
+ - spec/test_app/bin/rake
233
+ - spec/test_app/bin/setup
234
+ - spec/test_app/bin/update
235
+ - spec/test_app/config.ru
236
+ - spec/test_app/config/application.rb
237
+ - spec/test_app/config/boot.rb
238
+ - spec/test_app/config/environment.rb
239
+ - spec/test_app/config/environments/development.rb
240
+ - spec/test_app/config/environments/production.rb
241
+ - spec/test_app/config/environments/test.rb
242
+ - spec/test_app/config/initializers/application_controller_renderer.rb
243
+ - spec/test_app/config/initializers/assets.rb
244
+ - spec/test_app/config/initializers/backtrace_silencers.rb
245
+ - spec/test_app/config/initializers/cookies_serializer.rb
246
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
247
+ - spec/test_app/config/initializers/inflections.rb
248
+ - spec/test_app/config/initializers/mime_types.rb
249
+ - spec/test_app/config/initializers/session_store.rb
250
+ - spec/test_app/config/initializers/wrap_parameters.rb
251
+ - spec/test_app/config/locales/en.yml
252
+ - spec/test_app/config/omniauth_rails.yml
253
+ - spec/test_app/config/puma.rb
254
+ - spec/test_app/config/routes.rb
255
+ - spec/test_app/config/secrets.yml
256
+ - spec/test_app/config/spring.rb
257
+ - spec/test_app/log/development.log
258
+ - spec/test_app/log/test.log
259
+ - spec/test_app/public/404.html
260
+ - spec/test_app/public/422.html
261
+ - spec/test_app/public/500.html
262
+ - spec/test_app/public/apple-touch-icon-precomposed.png
263
+ - spec/test_app/public/apple-touch-icon.png
264
+ - spec/test_app/public/favicon.ico
265
+ - spec/test_app/spec/controllers/private_controller_spec.rb
266
+ - spec/test_app/spec/rails_helper.rb
267
+ - spec/test_app/spec/requests/private_controller_spec.rb
268
+ - spec/test_app/spec/requests/public_controller_spec.rb
269
+ - spec/test_app/spec/requests/sessions_controller_spec.rb
270
+ - spec/test_app/spec/spec_helper.rb
271
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/-5/-528MPRmC3ByNiAzVD1hs-NG3Muhf9FsYPaDbo4qIpI.cache
272
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/3v/3voyTxS8FmTTGPrz-QQ23N6AgGate2o7X5ZnZeTkQbs.cache
273
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/5V/5VAABbvE5t5bCDKmKjLivvfe1CqYdD4n4vtZQiMa4I0.cache
274
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/64/64siRwVaDPAW5fTe1O4rlGaq-0ExxAWA0-csPcik-uM.cache
275
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Aa/AasprW2BgqWDcmZnsPRxs-R5D0VGpL7dHYMwtsC1tmE.cache
276
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/An/An3DVlfO1pzT7FAnm09q3Ok_2PmGYhiAvxuW9OgG9wc.cache
277
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/C-/C-_kx_I8fFV2TrLPw8CNFy1uLrN6G4yLPg_4vOhlohQ.cache
278
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/EG/EGN6771mS8m_7wi-Cr-GgFKv9U9IE3gpo9JQ-N3AYlQ.cache
279
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Hl/HlzBaGDQ4NV3ctlz-qlmStUWDCELhxzVK1-SgLkPCH0.cache
280
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/IB/IBoXb9_P8EU8f7aPVNE8cWJybcus8fS7KGvi4HxKdMU.cache
281
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/K2/K28c2b37N3eRA-Pckb3MO3D3BvGXfbxDGNeRYIXG8Cg.cache
282
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/KJ/KJdFFU6zb4YpQWEm8bsXxx8kdQ01BdK0F0h6TTzpOiY.cache
283
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/KW/KWwCiQwwI6oqiIHZg_Qg2nrs1zXJISos9799GIL5viU.cache
284
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Kh/KhKDGOFwOEJlSwLMaG8Yak8AktHsnEr-fUwLpl9d0tc.cache
285
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/NXZl3HljnPNJmh2CNpp0skcYvQx4eSEp6vuG5o3lqqY.cache
286
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache
287
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Ob/ObDGu7gmDzQuH86CeAdhWRPf0sfv9Qo3CoxGK3VOYWI.cache
288
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/QG/QGjnK1OGVhAWzpma8R60Qdcr6v46sAWmpwQpeoWltX8.cache
289
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Qn/Qn2TRz8mMz8dPVvXgHUfqXC19EPZQgG3XDqm5W_E-A0.cache
290
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/WC/WCTd8gm1KmkPKRB14gd1wwFv3x9NwMsmquXet4Z1DTU.cache
291
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Z-/Z-3hfqbx8r350iW9zFPz_OdVHX0X4Z4bMk9YbS1eha8.cache
292
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Z2/Z2DJdVm4jsJXg0HzuQVyAAmjJbVdzKntXlmd14iNVbU.cache
293
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ZA/ZAzUlqsc-uLa_zcjt1t6EBkPqI8PkEoxz40i4FgrRlQ.cache
294
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/bN/bNCmkb6T3JKDzd6s7ZxOLn_WdC6gUnRARnBDHrMFS7o.cache
295
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache
296
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/d6/d6PosAq3dbPqxxvjAcaLgePkRuQ8w__EA-M42WarK_0.cache
297
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fD/fDbKpwc4jlsYlnxTT3vnhsiBcSJF3imnAGUBp9nq_Bw.cache
298
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fE/fEHvM7gLiXuJB6lDj2KNzgAx5L3BBn2NSsuodvPAryI.cache
299
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fg/fgbqfgH_CvzP2H744Q3ywDzlqLRSgSw0AH6ifkC7roo.cache
300
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/g4/g4TbkEUbvKBMpO8z4ioPbq8ArdLl-scuF3pVaLJhmVI.cache
301
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/id/idcyFsf20F5Vd3GC1XtM_PxlNnROM6CxO1j11NG3RWk.cache
302
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ih/ihflBRw1ToLzP0q8oKAJl_a6EHHbTdJUcVR5DANsIuA.cache
303
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/jz/jzXohzOyfczV5wKfQVQWgE1H0IMN4jaxEM3XlhHNgvk.cache
304
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/lH/lHLoBOtMavo_6UnfOn0DVLI2JQBT1W9sGR3IZzOD6o8.cache
305
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/mD/mDmWU5fLvNY4uggphc1wqYVQDn_w_U6Jz2XRSf59jDc.cache
306
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache
307
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n5/n5FDaqgvLV4Rc1Xm6TykMEFanDhSJJ77HPuPCEgCDQM.cache
308
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n9/n9Nzbk_dEL3fNO-u56owqnrG7YQmhcvDgJ2fWWE_9jE.cache
309
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/nU/nUDR2L4CaIx5IszaYaaaACw519TTTzvpxsp7NMl6KyQ.cache
310
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache
311
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/pc/pcFf9fij5Xa__QoHi-QzN_0Q_UGLhv6gihTXnoFX3sg.cache
312
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/q-/q-721tFv_0DZO9GZ_kHYUD_jn6GNRC09vb51mwyxbuI.cache
313
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/r6/r6saZ-BJCnX2-U353od1DgtZIGy5kXrCuXatXntMcTE.cache
314
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/wY/wYWiPwDGlToFGYId__oKg8QMPEeuRZoP1FhQahshfOo.cache
315
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/yD/yDj60NQvsiwl1QWQXH-iC4pgF1cmHkUFo-kkXBSjsIQ.cache
316
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ym/ymCwqEVBkEs6bYteLf70KCA5pCKZtqjQ3TbZQzrIs3M.cache
317
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/z0/z041WxjoEQvRhtSLORbkRlsNTgi68Rwx7XUyaDbPn0M.cache
318
+ - spec/test_app/tmp/pids/server.pid
319
+ homepage: https://github.com/danrabinowitz/omniauth-rails
320
+ licenses:
321
+ - MIT
322
+ metadata: {}
323
+ post_install_message:
324
+ rdoc_options: []
325
+ require_paths:
326
+ - lib
327
+ required_ruby_version: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - ">="
330
+ - !ruby/object:Gem::Version
331
+ version: '0'
332
+ required_rubygems_version: !ruby/object:Gem::Requirement
333
+ requirements:
334
+ - - ">="
335
+ - !ruby/object:Gem::Version
336
+ version: '0'
337
+ requirements: []
338
+ rubyforge_project:
339
+ rubygems_version: 2.5.1
340
+ signing_key:
341
+ specification_version: 4
342
+ summary: A Rails Engine to make it as easy as possible to add oauth authentication
343
+ to a Rails app.
344
+ test_files:
345
+ - spec/controllers/application_controller_spec.rb
346
+ - spec/examples.txt
347
+ - spec/models/omniauth/rails/authorization_types/emails_spec.rb
348
+ - spec/models/omniauth/rails/authorization_types/regex_spec.rb
349
+ - spec/omniauth_rails_spec.rb
350
+ - spec/rails_helper_for_engine.rb
351
+ - spec/spec_helper.rb
352
+ - spec/test_app/app/assets/config/manifest.js
353
+ - spec/test_app/app/assets/javascripts/application.js
354
+ - spec/test_app/app/assets/stylesheets/application.css
355
+ - spec/test_app/app/controllers/application_controller.rb
356
+ - spec/test_app/app/controllers/private_controller.rb
357
+ - spec/test_app/app/controllers/public_controller.rb
358
+ - spec/test_app/app/helpers/application_helper.rb
359
+ - spec/test_app/app/mailers/application_mailer.rb
360
+ - spec/test_app/app/models/application_record.rb
361
+ - spec/test_app/app/views/layouts/application.html.erb
362
+ - spec/test_app/app/views/private/show.html.erb
363
+ - spec/test_app/app/views/public/show.html.erb
364
+ - spec/test_app/bin/bundle
365
+ - spec/test_app/bin/rails
366
+ - spec/test_app/bin/rake
367
+ - spec/test_app/bin/setup
368
+ - spec/test_app/bin/update
369
+ - spec/test_app/config/application.rb
370
+ - spec/test_app/config/boot.rb
371
+ - spec/test_app/config/environment.rb
372
+ - spec/test_app/config/environments/development.rb
373
+ - spec/test_app/config/environments/production.rb
374
+ - spec/test_app/config/environments/test.rb
375
+ - spec/test_app/config/initializers/application_controller_renderer.rb
376
+ - spec/test_app/config/initializers/assets.rb
377
+ - spec/test_app/config/initializers/backtrace_silencers.rb
378
+ - spec/test_app/config/initializers/cookies_serializer.rb
379
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
380
+ - spec/test_app/config/initializers/inflections.rb
381
+ - spec/test_app/config/initializers/mime_types.rb
382
+ - spec/test_app/config/initializers/session_store.rb
383
+ - spec/test_app/config/initializers/wrap_parameters.rb
384
+ - spec/test_app/config/locales/en.yml
385
+ - spec/test_app/config/omniauth_rails.yml
386
+ - spec/test_app/config/puma.rb
387
+ - spec/test_app/config/routes.rb
388
+ - spec/test_app/config/secrets.yml
389
+ - spec/test_app/config/spring.rb
390
+ - spec/test_app/config.ru
391
+ - spec/test_app/log/development.log
392
+ - spec/test_app/log/test.log
393
+ - spec/test_app/public/404.html
394
+ - spec/test_app/public/422.html
395
+ - spec/test_app/public/500.html
396
+ - spec/test_app/public/apple-touch-icon-precomposed.png
397
+ - spec/test_app/public/apple-touch-icon.png
398
+ - spec/test_app/public/favicon.ico
399
+ - spec/test_app/Rakefile
400
+ - spec/test_app/spec/controllers/private_controller_spec.rb
401
+ - spec/test_app/spec/rails_helper.rb
402
+ - spec/test_app/spec/requests/private_controller_spec.rb
403
+ - spec/test_app/spec/requests/public_controller_spec.rb
404
+ - spec/test_app/spec/requests/sessions_controller_spec.rb
405
+ - spec/test_app/spec/spec_helper.rb
406
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/-5/-528MPRmC3ByNiAzVD1hs-NG3Muhf9FsYPaDbo4qIpI.cache
407
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/3v/3voyTxS8FmTTGPrz-QQ23N6AgGate2o7X5ZnZeTkQbs.cache
408
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/5V/5VAABbvE5t5bCDKmKjLivvfe1CqYdD4n4vtZQiMa4I0.cache
409
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/64/64siRwVaDPAW5fTe1O4rlGaq-0ExxAWA0-csPcik-uM.cache
410
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Aa/AasprW2BgqWDcmZnsPRxs-R5D0VGpL7dHYMwtsC1tmE.cache
411
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/An/An3DVlfO1pzT7FAnm09q3Ok_2PmGYhiAvxuW9OgG9wc.cache
412
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache
413
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/bN/bNCmkb6T3JKDzd6s7ZxOLn_WdC6gUnRARnBDHrMFS7o.cache
414
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/C-/C-_kx_I8fFV2TrLPw8CNFy1uLrN6G4yLPg_4vOhlohQ.cache
415
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/d6/d6PosAq3dbPqxxvjAcaLgePkRuQ8w__EA-M42WarK_0.cache
416
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/EG/EGN6771mS8m_7wi-Cr-GgFKv9U9IE3gpo9JQ-N3AYlQ.cache
417
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fD/fDbKpwc4jlsYlnxTT3vnhsiBcSJF3imnAGUBp9nq_Bw.cache
418
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fE/fEHvM7gLiXuJB6lDj2KNzgAx5L3BBn2NSsuodvPAryI.cache
419
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/fg/fgbqfgH_CvzP2H744Q3ywDzlqLRSgSw0AH6ifkC7roo.cache
420
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/g4/g4TbkEUbvKBMpO8z4ioPbq8ArdLl-scuF3pVaLJhmVI.cache
421
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Hl/HlzBaGDQ4NV3ctlz-qlmStUWDCELhxzVK1-SgLkPCH0.cache
422
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/IB/IBoXb9_P8EU8f7aPVNE8cWJybcus8fS7KGvi4HxKdMU.cache
423
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/id/idcyFsf20F5Vd3GC1XtM_PxlNnROM6CxO1j11NG3RWk.cache
424
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ih/ihflBRw1ToLzP0q8oKAJl_a6EHHbTdJUcVR5DANsIuA.cache
425
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/jz/jzXohzOyfczV5wKfQVQWgE1H0IMN4jaxEM3XlhHNgvk.cache
426
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/K2/K28c2b37N3eRA-Pckb3MO3D3BvGXfbxDGNeRYIXG8Cg.cache
427
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Kh/KhKDGOFwOEJlSwLMaG8Yak8AktHsnEr-fUwLpl9d0tc.cache
428
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/KJ/KJdFFU6zb4YpQWEm8bsXxx8kdQ01BdK0F0h6TTzpOiY.cache
429
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/KW/KWwCiQwwI6oqiIHZg_Qg2nrs1zXJISos9799GIL5viU.cache
430
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/lH/lHLoBOtMavo_6UnfOn0DVLI2JQBT1W9sGR3IZzOD6o8.cache
431
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/mD/mDmWU5fLvNY4uggphc1wqYVQDn_w_U6Jz2XRSf59jDc.cache
432
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache
433
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n5/n5FDaqgvLV4Rc1Xm6TykMEFanDhSJJ77HPuPCEgCDQM.cache
434
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n9/n9Nzbk_dEL3fNO-u56owqnrG7YQmhcvDgJ2fWWE_9jE.cache
435
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache
436
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/nU/nUDR2L4CaIx5IszaYaaaACw519TTTzvpxsp7NMl6KyQ.cache
437
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache
438
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/NXZl3HljnPNJmh2CNpp0skcYvQx4eSEp6vuG5o3lqqY.cache
439
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Ob/ObDGu7gmDzQuH86CeAdhWRPf0sfv9Qo3CoxGK3VOYWI.cache
440
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/pc/pcFf9fij5Xa__QoHi-QzN_0Q_UGLhv6gihTXnoFX3sg.cache
441
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/q-/q-721tFv_0DZO9GZ_kHYUD_jn6GNRC09vb51mwyxbuI.cache
442
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/QG/QGjnK1OGVhAWzpma8R60Qdcr6v46sAWmpwQpeoWltX8.cache
443
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Qn/Qn2TRz8mMz8dPVvXgHUfqXC19EPZQgG3XDqm5W_E-A0.cache
444
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/r6/r6saZ-BJCnX2-U353od1DgtZIGy5kXrCuXatXntMcTE.cache
445
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/WC/WCTd8gm1KmkPKRB14gd1wwFv3x9NwMsmquXet4Z1DTU.cache
446
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/wY/wYWiPwDGlToFGYId__oKg8QMPEeuRZoP1FhQahshfOo.cache
447
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/yD/yDj60NQvsiwl1QWQXH-iC4pgF1cmHkUFo-kkXBSjsIQ.cache
448
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ym/ymCwqEVBkEs6bYteLf70KCA5pCKZtqjQ3TbZQzrIs3M.cache
449
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Z-/Z-3hfqbx8r350iW9zFPz_OdVHX0X4Z4bMk9YbS1eha8.cache
450
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/z0/z041WxjoEQvRhtSLORbkRlsNTgi68Rwx7XUyaDbPn0M.cache
451
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/Z2/Z2DJdVm4jsJXg0HzuQVyAAmjJbVdzKntXlmd14iNVbU.cache
452
+ - spec/test_app/tmp/cache/assets/sprockets/v3.0/ZA/ZAzUlqsc-uLa_zcjt1t6EBkPqI8PkEoxz40i4FgrRlQ.cache
453
+ - spec/test_app/tmp/pids/server.pid