omniauth-aai 0.5.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +1 -1
  5. data/Gemfile.lock +153 -123
  6. data/LICENSE.txt +21 -0
  7. data/README.md +8 -33
  8. data/lib/.DS_Store +0 -0
  9. data/lib/generators/aai/setup_generator.rb +44 -0
  10. data/lib/generators/aai/templates/migration.rb +18 -2
  11. data/lib/generators/aai/templates/omniauth.rb +18 -6
  12. data/lib/generators/aai/templates/session_controller.rb +6 -8
  13. data/lib/generators/aai/templates/user.rb +25 -9
  14. data/lib/omniauth-aai.rb +2 -1
  15. data/lib/omniauth-aai/version.rb +1 -1
  16. data/lib/omniauth/has_current_user.rb +57 -0
  17. data/lib/omniauth/strategies/aai.rb +117 -88
  18. data/omniauth-aai.gemspec +23 -17
  19. data/spec/example_rails3_app/.DS_Store +0 -0
  20. data/spec/{example_rails_app → example_rails3_app}/.gitignore +0 -0
  21. data/spec/{example_rails_app → example_rails3_app}/Gemfile +2 -4
  22. data/spec/example_rails3_app/Gemfile.lock +123 -0
  23. data/spec/{example_rails_app → example_rails3_app}/Rakefile +0 -0
  24. data/spec/{example_rails_app → example_rails3_app}/app/assets/images/rails.png +0 -0
  25. data/spec/{example_rails_app → example_rails3_app}/app/assets/javascripts/application.js +0 -0
  26. data/spec/{example_rails_app → example_rails3_app}/app/assets/javascripts/welcome.js.coffee +0 -0
  27. data/spec/{example_rails_app → example_rails3_app}/app/assets/stylesheets/application.css +0 -0
  28. data/spec/{example_rails_app → example_rails3_app}/app/assets/stylesheets/welcome.css.scss +0 -0
  29. data/spec/{example_rails_app → example_rails3_app}/app/controllers/application_controller.rb +0 -0
  30. data/spec/{example_rails_app → example_rails3_app}/app/controllers/welcome_controller.rb +4 -2
  31. data/spec/{example_rails_app → example_rails3_app}/app/helpers/application_helper.rb +0 -0
  32. data/spec/{example_rails_app → example_rails3_app}/app/helpers/welcome_helper.rb +0 -0
  33. data/spec/{example_rails_app → example_rails3_app}/app/mailers/.gitkeep +0 -0
  34. data/spec/{example_rails_app → example_rails3_app}/app/models/.gitkeep +0 -0
  35. data/spec/example_rails3_app/app/views/.DS_Store +0 -0
  36. data/spec/{example_rails_app → example_rails3_app}/app/views/layouts/application.html.erb +0 -0
  37. data/spec/{example_rails_app → example_rails3_app}/app/views/welcome/index.html.erb +0 -0
  38. data/spec/{example_rails_app → example_rails3_app}/app/views/welcome/protected.html.erb +0 -0
  39. data/spec/{example_rails_app → example_rails3_app}/change_application_controller.rb +0 -0
  40. data/spec/{example_rails_app → example_rails3_app}/config.ru +0 -0
  41. data/spec/{example_rails_app → example_rails3_app}/config/application.rb +1 -6
  42. data/spec/{example_rails_app → example_rails3_app}/config/boot.rb +0 -0
  43. data/spec/{example_rails_app → example_rails3_app}/config/database.yml +0 -0
  44. data/spec/{example_rails_app → example_rails3_app}/config/environment.rb +0 -0
  45. data/spec/{example_rails_app → example_rails3_app}/config/environments/development.rb +1 -6
  46. data/spec/{example_rails_app → example_rails3_app}/config/environments/production.rb +0 -3
  47. data/spec/{example_rails_app → example_rails3_app}/config/environments/test.rb +2 -3
  48. data/spec/{example_rails_app → example_rails3_app}/config/initializers/backtrace_silencers.rb +0 -0
  49. data/spec/{example_rails_app → example_rails3_app}/config/initializers/inflections.rb +0 -0
  50. data/spec/{example_rails_app → example_rails3_app}/config/initializers/mime_types.rb +0 -0
  51. data/spec/{example_rails_app → example_rails3_app}/config/initializers/secret_token.rb +1 -0
  52. data/spec/{example_rails_app → example_rails3_app}/config/initializers/session_store.rb +0 -0
  53. data/spec/{example_rails_app → example_rails3_app}/config/initializers/wrap_parameters.rb +0 -0
  54. data/spec/{example_rails_app → example_rails3_app}/config/locales/en.yml +0 -0
  55. data/spec/{example_rails_app → example_rails3_app}/config/routes.rb +2 -2
  56. data/spec/example_rails3_app/db/development.sqlite3 +0 -0
  57. data/spec/example_rails3_app/db/schema.rb +16 -0
  58. data/spec/{example_rails_app → example_rails3_app}/db/seeds.rb +0 -0
  59. data/spec/example_rails3_app/db/test.sqlite3 +0 -0
  60. data/spec/{example_rails_app → example_rails3_app}/doc/README_FOR_APP +0 -0
  61. data/spec/{example_rails_app → example_rails3_app}/lib/assets/.gitkeep +0 -0
  62. data/spec/{example_rails_app → example_rails3_app}/lib/tasks/.gitkeep +0 -0
  63. data/spec/{example_rails_app → example_rails3_app}/log/.gitkeep +0 -0
  64. data/spec/example_rails3_app/log/development.log +741 -0
  65. data/spec/example_rails3_app/log/test.log +24 -0
  66. data/spec/{example_rails_app → example_rails3_app}/public/404.html +0 -0
  67. data/spec/{example_rails_app → example_rails3_app}/public/422.html +0 -0
  68. data/spec/{example_rails_app → example_rails3_app}/public/500.html +0 -0
  69. data/spec/{example_rails_app → example_rails3_app}/public/favicon.ico +0 -0
  70. data/spec/{example_rails_app → example_rails3_app}/public/robots.txt +0 -0
  71. data/spec/{example_rails_app → example_rails3_app}/script/rails +0 -0
  72. data/spec/{example_rails_app → example_rails3_app}/test/fixtures/.gitkeep +0 -0
  73. data/spec/{example_rails_app → example_rails3_app}/test/functional/.gitkeep +0 -0
  74. data/spec/{example_rails_app → example_rails3_app}/test/functional/welcome_controller_test.rb +0 -0
  75. data/spec/{example_rails_app → example_rails3_app}/test/integration/.gitkeep +0 -0
  76. data/spec/{example_rails_app → example_rails3_app}/test/performance/browsing_test.rb +0 -0
  77. data/spec/{example_rails_app → example_rails3_app}/test/test_helper.rb +0 -0
  78. data/spec/{example_rails_app → example_rails3_app}/test/unit/.gitkeep +0 -0
  79. data/spec/{example_rails_app → example_rails3_app}/test/unit/helpers/welcome_helper_test.rb +0 -0
  80. data/spec/example_rails3_app/tmp/cache/assets/C26/690/sprockets%2F93708cb34051f3000884905e8669d74a +0 -0
  81. data/spec/example_rails3_app/tmp/cache/assets/C30/B40/sprockets%2Ff006fa583c943775b96596827195b022 +0 -0
  82. data/spec/example_rails3_app/tmp/cache/assets/C5C/B50/sprockets%2F7a556208881f6d893d11269bf2a09158 +0 -0
  83. data/spec/example_rails3_app/tmp/cache/assets/C83/640/sprockets%2F3233432f81669b9bd10ef726c526d348 +0 -0
  84. data/spec/example_rails3_app/tmp/cache/assets/CD0/AB0/sprockets%2F2211190fb757d05874e2b25fc37a31ad +0 -0
  85. data/spec/example_rails3_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  86. data/spec/example_rails3_app/tmp/cache/assets/CE2/AD0/sprockets%2Fbd71546009ab5e606b3f27b4c6a79856 +0 -0
  87. data/spec/example_rails3_app/tmp/cache/assets/D14/000/sprockets%2Fffd7643b7c429e23bdb2281097a5e096 +0 -0
  88. data/spec/example_rails3_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  89. data/spec/example_rails3_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  90. data/spec/example_rails3_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  91. data/spec/example_rails3_app/tmp/cache/assets/D5E/170/sprockets%2F2f2229c70dcf195564d4d0fd6a12ac1a +0 -0
  92. data/spec/example_rails3_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  93. data/spec/example_rails3_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  94. data/spec/example_rails3_app/tmp/cache/assets/E29/9D0/sprockets%2Fea5ba88ffb1f831008ba38ed70bd8cfa +0 -0
  95. data/spec/example_rails3_app/tmp/cache/assets/E3F/0C0/sprockets%2F9addc9febe49c19a6eee9360f156afe3 +0 -0
  96. data/spec/{example_rails_app → example_rails3_app}/vendor/assets/javascripts/.gitkeep +0 -0
  97. data/spec/{example_rails_app → example_rails3_app}/vendor/assets/stylesheets/.gitkeep +0 -0
  98. data/spec/{example_rails_app → example_rails3_app}/vendor/plugins/.gitkeep +0 -0
  99. data/spec/example_rails4_app/.gitignore +17 -0
  100. data/spec/example_rails4_app/Gemfile +46 -0
  101. data/spec/example_rails4_app/Gemfile.lock +171 -0
  102. data/spec/example_rails4_app/README.rdoc +28 -0
  103. data/spec/example_rails4_app/Rakefile +6 -0
  104. data/spec/example_rails4_app/app/assets/images/.keep +0 -0
  105. data/spec/example_rails4_app/app/assets/javascripts/application.js +16 -0
  106. data/spec/example_rails4_app/app/assets/stylesheets/application.css +15 -0
  107. data/spec/example_rails4_app/app/controllers/application_controller.rb +4 -0
  108. data/spec/example_rails4_app/app/controllers/concerns/.keep +0 -0
  109. data/spec/example_rails4_app/app/controllers/session_controller.rb +38 -0
  110. data/spec/example_rails4_app/app/controllers/welcome_controller.rb +11 -0
  111. data/spec/example_rails4_app/app/helpers/application_helper.rb +2 -0
  112. data/spec/example_rails4_app/app/mailers/.keep +0 -0
  113. data/spec/example_rails4_app/app/models/.keep +0 -0
  114. data/spec/example_rails4_app/app/models/concerns/.keep +0 -0
  115. data/spec/example_rails4_app/app/models/user.rb +57 -0
  116. data/spec/example_rails4_app/app/views/.DS_Store +0 -0
  117. data/spec/example_rails4_app/app/views/layouts/application.html.erb +14 -0
  118. data/spec/example_rails4_app/app/views/welcome/index.html.erb +3 -0
  119. data/spec/example_rails4_app/app/views/welcome/protected.html.erb +2 -0
  120. data/spec/example_rails4_app/bin/bundle +3 -0
  121. data/spec/example_rails4_app/bin/rails +8 -0
  122. data/spec/example_rails4_app/bin/rake +8 -0
  123. data/spec/example_rails4_app/bin/setup +29 -0
  124. data/spec/example_rails4_app/bin/spring +15 -0
  125. data/spec/example_rails4_app/config.ru +4 -0
  126. data/spec/example_rails4_app/config/application.rb +26 -0
  127. data/spec/example_rails4_app/config/boot.rb +3 -0
  128. data/spec/example_rails4_app/config/database.yml +25 -0
  129. data/spec/example_rails4_app/config/environment.rb +5 -0
  130. data/spec/example_rails4_app/config/environments/development.rb +41 -0
  131. data/spec/example_rails4_app/config/environments/production.rb +79 -0
  132. data/spec/example_rails4_app/config/environments/test.rb +42 -0
  133. data/spec/example_rails4_app/config/initializers/assets.rb +11 -0
  134. data/spec/example_rails4_app/config/initializers/backtrace_silencers.rb +7 -0
  135. data/spec/example_rails4_app/config/initializers/cookies_serializer.rb +3 -0
  136. data/spec/example_rails4_app/config/initializers/filter_parameter_logging.rb +4 -0
  137. data/spec/example_rails4_app/config/initializers/inflections.rb +16 -0
  138. data/spec/example_rails4_app/config/initializers/mime_types.rb +4 -0
  139. data/spec/example_rails4_app/config/initializers/omniauth.rb +23 -0
  140. data/spec/example_rails4_app/config/initializers/session_store.rb +3 -0
  141. data/spec/example_rails4_app/config/initializers/wrap_parameters.rb +14 -0
  142. data/spec/example_rails4_app/config/locales/en.yml +23 -0
  143. data/spec/example_rails4_app/config/routes.rb +10 -0
  144. data/spec/example_rails4_app/config/secrets.yml +22 -0
  145. data/spec/example_rails4_app/db/development.sqlite3 +0 -0
  146. data/spec/example_rails4_app/db/migrate/20150528142303_aai_create_user.rb +20 -0
  147. data/spec/example_rails4_app/db/migrate/20150609094544_create_aai_user.rb +26 -0
  148. data/spec/example_rails4_app/db/schema.rb +33 -0
  149. data/spec/example_rails4_app/db/seeds.rb +7 -0
  150. data/spec/example_rails4_app/lib/assets/.keep +0 -0
  151. data/spec/example_rails4_app/lib/tasks/.keep +0 -0
  152. data/spec/example_rails4_app/log/.keep +0 -0
  153. data/spec/example_rails4_app/log/development.log +7189 -0
  154. data/spec/example_rails4_app/log/test.log +0 -0
  155. data/spec/example_rails4_app/public/404.html +67 -0
  156. data/spec/example_rails4_app/public/422.html +67 -0
  157. data/spec/example_rails4_app/public/500.html +66 -0
  158. data/spec/example_rails4_app/public/favicon.ico +0 -0
  159. data/spec/example_rails4_app/public/robots.txt +5 -0
  160. data/spec/example_rails4_app/test/controllers/.keep +0 -0
  161. data/spec/example_rails4_app/test/fixtures/.keep +0 -0
  162. data/spec/example_rails4_app/test/helpers/.keep +0 -0
  163. data/spec/example_rails4_app/test/integration/.keep +0 -0
  164. data/spec/example_rails4_app/test/mailers/.keep +0 -0
  165. data/spec/example_rails4_app/test/models/.keep +0 -0
  166. data/spec/example_rails4_app/test/test_helper.rb +10 -0
  167. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/1s_XCxu5Ta3ZrQVnXIYvLyRMXFQo20cDx9dOl2Z2iF8.cache +1 -0
  168. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/29DyBLYZiyJ3FlvLIMPsG2-7J8nAW42idLjWLEVdB_k.cache +0 -0
  169. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/3QbXCZJvxomnkCnjUWHuRcr1GygZ_h2BHAvxwpDe8_s.cache +1 -0
  170. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/4DpD3QisvkI9coAiaW5J81R3QEdauKikO3Gh5M8mwWo.cache +1 -0
  171. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6NLgJvQ8d_2Hvs_dsIe78tpsALlFUB02E_yBe-2E5cA.cache +0 -0
  172. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6jHw85RU0ldd0Q9aN-7rANpT7g1-koNDbSenv-m7smI.cache +1 -0
  173. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/7BAbDbQvvxI5tyXDU4FFEVqkskvwpwBb-Okv_3k7m_A.cache +0 -0
  174. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/9wp0IZ0iih5-OpulhDQiwTcivSJ1B0NGGT3E0QqfUvY.cache +1 -0
  175. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/BNSnmei4pmTUWNUSAxEsb0MthlP4aMS69DOMLpxnO1w.cache +0 -0
  176. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/CuDbyYCWFI80xf5TcM_YGo4vs7XDrDT2uGZbXL1CNlU.cache +1 -0
  177. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/E7vUl62-SGsQ8YapPcF158Pt1JkBL-9rifcB_9dP8Dk.cache +1 -0
  178. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Gb8DbxW8LZBtcLvB3DaLNTXt5D0MNezSV797OaoPY9Q.cache +1 -0
  179. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GgQIx53L-9pWadlFfRd5NlAqwNFKf7DLPkPnsnQ7bNk.cache +1 -0
  180. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GjsYHKbT8fxMeVlnpmarx6Xi-_Ph0QMuk1BHoU4JDrQ.cache +2 -0
  181. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/H4FEyyRC4IJsChOdu1cf9NDgg8w6J1YBVNHaKN92h9o.cache +0 -0
  182. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/If5Lvqrq1tySO8vBUqp2xvRY_mnDfGebBxBP2mxZbZY.cache +0 -0
  183. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/IoT_x37i_0kSKYgLgbJR5-i6lvuoyNhOt9FSw-yILiQ.cache +0 -0
  184. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/JUseOAL-WHjhDijGjAaXwOvZEJUVhMs_jFSMbXunViY.cache +1 -0
  185. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KJcDzapXqjQsiil8Z8og8g_9qX88kXR8p3pMopsauA8.cache +1 -0
  186. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZpDQ14WKjcnWnLxlL99qFCd6ARfk0MsdegUfI30RMk.cache +1 -0
  187. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZxCQPT4Q2wX3rHnJZcFGWZPTtq7oNH9llxBAALh43s.cache +1 -0
  188. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LgV_5lRim8CeylWertau64VwyRxtI51id8BtgIok58g.cache +1 -0
  189. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Nt-6pBlTra27ZPWSp2yTZSKBAePHJHgDlIoxWTgF9i8.cache +1 -0
  190. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/PHhC5vQizTPXEkJAiD_q9ESL7UlJW-l8Ua2aoWOhv_o.cache +0 -0
  191. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/QRU43JksZxXfCsqux8aCe2yyWueGiamUDi18N8gDA1Q.cache +1 -0
  192. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RECBJfTHjk7obOczR_QxMkSagYRkmidf_ZawDoZTR8A.cache +1 -0
  193. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RanHbvC55zjJip0GoEuKsXCXGiMAnd9n7zr67BIqBSw.cache +1 -0
  194. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/S5179qXMIYo2z-pYHnXOtD2IYoz5ac8moYSK7pNt7m8.cache +2 -0
  195. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SO9WJ6f1sF18HRfzSmwkLdVZZwRBNz1DxAaYtGbOTrE.cache +1 -0
  196. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SPlj-pwirc-AB3GMeOqDR5gSAiu3j6C7QnAZfGmE9_I.cache +0 -0
  197. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TGEldewczDNL-pNPKYkePKZe3ySFo2sisfkbnD19W4s.cache +2 -0
  198. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TdlxPZJxUr_7HWj7CrC81yJyV0-40_Ogqo_1NTaEoIU.cache +1 -0
  199. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TowmqkMiUGEwvy7lnHQ_88ROBl0yb2D4yH0ugiNjvfA.cache +1 -0
  200. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Tp7wu_U3u6gFUnDoUHA40bWXyFOSSxNiXK6XPRwYmYU.cache +1 -0
  201. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TqgWeb7o7Z23teWSLaSdF-f3_8aYzRVbBVZhQUHuZVc.cache +1 -0
  202. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache +0 -0
  203. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/W8O66kikznV0XXIhsnH-3dHWm24NyxyK2BbzZvEssto.cache +0 -0
  204. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YLGfTegl3aFlYlDF7dfyQ5OuL6B6D3l-mcGVqtWnVQ8.cache +1 -0
  205. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YngNHAn-McYDpn3H2vj5Cfs7jvy6y0xXgV2lm-QqytU.cache +0 -0
  206. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/_J-JFAM5KZ8G3xUcVV9ht5vdsdH3wHg737JhiRTNl30.cache +1 -0
  207. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/apXOQCHHr7toaELV0vOhGpGHp0qsm15GmPpb-6SA6GI.cache +0 -0
  208. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c5jVOyypWys4L2Hoyc4U84gCAJg3tGepalH4_wvPjag.cache +1 -0
  209. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c8Xfpa8RSionpn-Hbvc5pDqvktT2tZDhvRCrUD1V_Oo.cache +1 -0
  210. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/cihMJr_YPzjx-OxZT97hhVuVpY1rkTjbZmXFd8XHCaU.cache +3 -0
  211. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/dHMPXPs1sOQ-fiWIOHBlX15A53Jm0CIPz2F_hNdtS3M.cache +1 -0
  212. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e99bn4nHgVDcocbTGKcEmDNK9c_hXbgX6QjCJFCZHJM.cache +0 -0
  213. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fLv1zUMqDQeVn2AWONn1mWotZV-MKGL2VWCOWalnPkg.cache +0 -0
  214. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fWQJziLu4L1W29En3opeg-1CsjRQBWmvxu9pCs4bXj8.cache +1 -0
  215. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gLKErIDcQk5SB5QrsCeFTLyCw5500orRLwYeVdZdKMc.cache +1 -0
  216. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gr63R85vyTqHHJZQ-17HzBTVQzxNIG5ioLBJIG7ylUI.cache +0 -0
  217. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/h94CfaFE7uxKkjg9ok-t1VaNrmPtIlflckdFHhn8HQs.cache +0 -0
  218. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hE4vknoiDD4JODeZCrqVQJsqIprogjXMLmC8OwA_Jr0.cache +1 -0
  219. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hS0tOwqtQJaZQ94vExFzOIkbAuInPL-qbhJ_ehyAIdA.cache +0 -0
  220. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jRTlxo8OfNbF2UFI9yARZfikVm2L6tckGljgpdPKJAE.cache +0 -0
  221. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jWzKY7vp1V-gp2DIoaBUf6FHlXy64u51evJE2HTEmHw.cache +1 -0
  222. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qzBkjnl32lQWbp5TzPSAUL1ai7Di46nMpBx4F7m6x5s.cache +1 -0
  223. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/r77JGKq0Pw_xiSzw2prNjqaAF6alyTiTyCsdnbipthY.cache +0 -0
  224. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rJ0exYcGrKT54S-78fIu6vNCgQs3mDufsDxQ14gI_8E.cache +0 -0
  225. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rx80cSLfrwi0ZB09RMu0y303mn2cqY0n-HVvX4OZSvg.cache +1 -0
  226. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/t86ZINxINr8OvlNbaSMwdIJCEKNwBO6brBig2BlQM14.cache +0 -0
  227. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tXvI8895yJKqfChNv65cTiwS7lytvZHFz1fXzFbzVeM.cache +1 -0
  228. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ueBgJWdtY_h7B_DpJgfhaB1zK-p3TTKWfXHuoog1ee0.cache +1 -0
  229. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/umu0vtYbA7uPY--szPF2GZOzRsafL6YLGkxCLx52t0c.cache +3 -0
  230. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/wRYMTVh2J03EQY8OmShoXFHM5q_wkCsogrHuAv8CR6g.cache +1 -0
  231. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xSK_JYmeNOLhG9YlWG_YGYarb8YLyIeMXHahwRIyhZY.cache +0 -0
  232. data/spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/yLpEexUzUtWqrKQPCErdaCnJUUkxgSLIOShi9XNRKlM.cache +0 -0
  233. data/spec/example_rails4_app/vendor/assets/javascripts/.keep +0 -0
  234. data/spec/example_rails4_app/vendor/assets/stylesheets/.keep +0 -0
  235. data/spec/omniauth/has_current_user_spec.rb +9 -0
  236. data/spec/omniauth/strategies/aai_spec.rb +83 -20
  237. data/spec/omniauth/strategies/brute_force_spec.rb +6 -6
  238. data/spec/spec_helper.rb +12 -6
  239. data/spec/support/omniauth_macros.rb +13 -0
  240. metadata +486 -195
  241. data/lib/action_controller/has_current_user.rb +0 -44
  242. data/lib/generators/aai/install_generator.rb +0 -41
  243. data/omniauth-aai-0.3.gem +0 -0
  244. data/omniauth-aai-0.4.gem +0 -0
  245. data/omniauth-aai-0.5.1.gem +0 -0
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe Omniauth::HasCurrentUser do
4
+
5
+ def test_to_squawk_prepends_the_word_squawk
6
+ assert_equal "squawk! Hello World", "Hello World".to_squawk
7
+ end
8
+
9
+ end
@@ -1,4 +1,6 @@
1
1
  require 'spec_helper'
2
+ require 'omniauth/version'
3
+
2
4
 
3
5
  def make_env(path = '/auth/aai', props = {})
4
6
  {
@@ -19,54 +21,95 @@ end
19
21
 
20
22
  describe OmniAuth::Strategies::Aai do
21
23
  let(:app){ Rack::Builder.new do |b|
22
- b.use Rack::Session::Cookie
24
+ b.use Rack::Session::Cookie, {secret: "abc123"}
23
25
  b.use OmniAuth::Strategies::Aai
24
- b.run lambda{|env| [200, {}, ['Not Found']]}
26
+ b.run lambda{|env| [200, {}, ['Hello World']]}
25
27
  end.to_app }
26
28
 
29
+
30
+ # context 'core attributes' do
31
+ # let(:strategy){ OmniAuth::Strategies::Aai.new(app, {}) }
32
+
33
+ # it 'uses persistent-id as uid' do
34
+ # expect(OmniAuth::Strategies::Developer.new(app).uid).to eq('persistent_id')
35
+ # end
36
+ # end
37
+
27
38
  context 'request phase' do
28
39
  before do
29
40
  get '/auth/aai'
30
41
  end
31
42
 
32
43
  it 'should redirect to callback_url' do
33
- last_response.status.should == 302
34
- last_response.location.should == '/auth/aai/callback'
44
+ expect(last_response.status).to eq(302)
45
+ expect(last_response.location).to eq('/auth/aai/callback')
35
46
  end
36
47
  end
37
48
 
38
49
  context 'callback phase' do
50
+
39
51
  context 'without Shibboleth session' do
40
52
  before do
41
53
  get '/auth/aai/callback'
42
54
  end
43
55
 
44
- it 'should fail to get Shib-Session-ID environment variable' do
45
- last_response.status.should == 302
46
- last_response.location.should == failure_path
56
+ it 'is expected to fail to get Shib-Session-ID environment variable' do
57
+ expect(last_response.status).to eq(302)
58
+ expect(last_response.location).to eq(failure_path)
47
59
  end
60
+
48
61
  end
49
62
 
50
63
  context 'with Shibboleth session' do
51
64
  let(:strategy){ OmniAuth::Strategies::Aai.new(app, {}) }
52
65
 
53
- it 'should set default omniauth.auth fields' do
66
+ before do
54
67
  @dummy_id = 'abcdefg'
55
68
  @uid = 'https://aai-logon.vho-switchaai.ch/idp/shibboleth!https://aai-viewer.switch.ch/shibboleth!lYQnHiuZjROvtykBpZHjy1UaZPg='
56
69
  @last_name = 'Nachname'
57
70
  @first_name = 'Vorname'
71
+ @display_name = "#{@first_name} #{@last_name}"
58
72
  @email = 'test@example.com'
59
73
  @shibboleth_unique_id = '099886@vho-switchaai.ch'
60
- strategy.call!(make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'persistent-id' => @uid, 'surname' => @last_name, 'first_name' => @first_name, 'mail' => @email, 'uniqueID' => @shibboleth_unique_id))
61
- strategy.env['omniauth.auth']['uid'].should == @uid
62
- strategy.env['omniauth.auth']['info']['name'].should == "#{@first_name} #{@last_name}"
63
- strategy.env['omniauth.auth']['info']['email'].should == @email
64
- strategy.env['omniauth.auth']['info']['swiss_ep_uid'].should == @shibboleth_unique_id
74
+ @home = 'switch.ch'
75
+ env = make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'persistent-id' => @uid, 'surname' => @last_name, 'first_name' => @first_name, 'displayName' => @display_name, 'mail' => @email, 'uniqueID' => @shibboleth_unique_id, 'homeOrganization' => @home)
76
+ response = strategy.call!(env)
77
+ end
78
+
79
+ it 'is expected to set the provider field' do
80
+ expect(strategy.env['omniauth.auth']['provider']).to eq('aai')
65
81
  end
82
+
83
+ it 'is expected to set the uid to persistent-id' do
84
+ expect(strategy.env['omniauth.auth']['uid']).to eq(@uid)
85
+ end
86
+
87
+ context 'info fields' do
88
+ it 'is expected to set the required name field to the displayName' do
89
+ expect(strategy.env['omniauth.auth']['info']['name']).to eq("#{@first_name} #{@last_name}")
90
+ end
91
+
92
+ it 'is expected to set the mail field' do
93
+ expect(strategy.env['omniauth.auth']['info']['email']).to eq(@email)
94
+ end
95
+ end
96
+
97
+ context 'extra fields' do
98
+ it 'is expected to set the home_organization field' do
99
+ expect(strategy.env['omniauth.auth']['info']["home_organization"]).to eq(@home)
100
+ end
101
+ end
102
+
66
103
  end
67
104
 
68
105
  context 'with Shibboleth session and attribute options' do
69
- let(:options){ { :uid_field => :uniqueID, :fields => [], :extra_fields => [:"Shib-Authentication-Instant", :homeOrganization] } }
106
+ let(:options){
107
+ {
108
+ uid_field: :uniqueID,
109
+ fields: [],
110
+ extra_fields: [:"Shib-Authentication-Instant", :homeOrganization]
111
+ }
112
+ }
70
113
  let(:app){ lambda{|env| [404, {}, ['Awesome']]}}
71
114
  let(:strategy){ OmniAuth::Strategies::Aai.new(app, options) }
72
115
 
@@ -76,17 +119,26 @@ describe OmniAuth::Strategies::Aai do
76
119
  @home = 'Test Corporation'
77
120
  @instant = '2012-07-04T14:08:18.999Z'
78
121
  strategy.call!(make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'uniqueID' => @uid, 'Shib-Authentication-Instant' => @instant, 'homeOrganization' => @home))
79
- strategy.env['omniauth.auth']['uid'].should == @uid
80
- strategy.env['omniauth.auth']['extra']['raw_info']['Shib-Authentication-Instant'].should == @instant
81
- strategy.env['omniauth.auth']['extra']['raw_info']['homeOrganization'].should == @home
122
+ expect(strategy.env['omniauth.auth']['uid']).to eq(@uid)
123
+ expect(strategy.env['omniauth.auth']['extra']['raw_info']['Shib-Authentication-Instant']).to eq(@instant)
124
+ expect(strategy.env['omniauth.auth']['extra']['raw_info']['homeOrganization']).to eq(@home)
125
+ end
126
+
127
+ it 'can handle empty core attributes' do
128
+ @dummy_id = 'abcdefg'
129
+ @uid = 'test'
130
+ @home = nil
131
+ strategy.call!(make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'uniqueID' => @uid, 'Shib-Authentication-Instant' => @instant, 'homeOrganization' => @home))
132
+ expect(strategy.env['omniauth.auth']['info']['homeOrganization']).to eq(@home)
82
133
  end
83
134
  end
84
135
 
85
136
  context 'with debug options' do
86
137
  let(:options){ { :debug => true} }
87
- let(:strategy){ OmniAuth::Strategies::Shibboleth.new(app, options) }
138
+ let(:app){ lambda{|env| [404, {}, ['Not Found']]}}
139
+ let(:strategy){ OmniAuth::Strategies::Aai.new(app, options) }
88
140
 
89
- it 'should raise environment variables' do
141
+ it 'is expected to raise environment variables' do
90
142
  @dummy_id = 'abcdefg'
91
143
  @uid = 'https://aai-logon.vho-switchaai.ch/idp/shibboleth!https://aai-viewer.switch.ch/shibboleth!lYQnHiuZjROvtykBpZHjy1UaZPg='
92
144
  @last_name = 'Nachname'
@@ -94,8 +146,19 @@ describe OmniAuth::Strategies::Aai do
94
146
  @email = 'test@example.com'
95
147
  env = make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'persistent-id' => @uid, 'surname' => @last_name, 'first_name' => @first_name, 'mail' => @email)
96
148
  response = strategy.call!(env)
97
- response[0].should == 200
149
+ expect(response[0]).to eq(200)
98
150
  end
151
+
152
+ # it 'should return the attributes' do
153
+ # @dummy_id = 'abcdefg'
154
+ # @uid = 'https://aai-logon.vho-switchaai.ch/idp/shibboleth!https://aai-viewer.switch.ch/shibboleth!lYQnHiuZjROvtykBpZHjy1UaZPg='
155
+ # @last_name = 'Nachname'
156
+ # @first_name = 'Vorname'
157
+ # @email = 'test@example.com'
158
+ # env = make_env('/auth/aai/callback', 'Shib-Session-ID' => @dummy_id, 'persistent-id' => @uid, 'surname' => @last_name, 'first_name' => @first_name, 'mail' => @email)
159
+ # response = strategy.call!(env)
160
+ # expect(response[2]).to include('surname')
161
+ # end
99
162
  end
100
163
  end
101
164
  end
@@ -4,15 +4,15 @@ require 'spec_helper'
4
4
  describe "include gem" do
5
5
  #needs sqllit in gems, but this conflicts with jruby
6
6
  it "should not raise any exceptions" do
7
- FileUtils.cp_r("spec/example_rails_app", "spec/test_app_with_active_record")
7
+ FileUtils.cp_r("spec/example_rails4_app", "spec/test_app_with_active_record")
8
8
  #`cd spec/test_app_with_active_record; bundle install --gemfile=Gemfile`
9
9
  `cd spec/test_app_with_active_record; bundle exec --gemfile=Gemfile rails generate aai:install`
10
- `cd spec/test_app_with_active_record; bundle exec --gemfile=Gemfile rake db:migrate`
10
+ `cd spec/test_app_with_active_record; bundle exec --gemfile=Gemfile rake db:migrate`
11
11
  FileUtils.rm_r("spec/test_app_with_active_record")
12
12
  end
13
13
 
14
14
  it "should not raise any exceptions if not persist gem with app" do
15
- FileUtils.cp_r("spec/example_rails_app", "spec/test_app_no_persist")
15
+ FileUtils.cp_r("spec/example_rails4_app", "spec/test_app_no_persist")
16
16
  `cd spec/test_app_no_persist; bundle exec rails generate aai:install --persist false`
17
17
  FileUtils.rm_r("spec/test_app_no_persist")
18
18
  end
@@ -31,7 +31,7 @@ end
31
31
  # end
32
32
  #
33
33
  # describe "check the app", :type => :request do
34
- # it "index page" do
34
+ # it "index page" do
35
35
  # visit('/welcome/index')
36
36
  # page.should have_content('Welcome#index')
37
37
  # end
@@ -51,7 +51,7 @@ end
51
51
  # end
52
52
  #
53
53
  # describe "check the app", :type => :request do
54
- # it "index page" do
54
+ # it "index page" do
55
55
  # visit('/welcome/index')
56
56
  # page.should have_content('Welcome#index')
57
57
  # end
@@ -59,4 +59,4 @@ end
59
59
  #
60
60
  #end
61
61
  #
62
- #
62
+ #
data/spec/spec_helper.rb CHANGED
@@ -1,11 +1,17 @@
1
- require 'rspec'
2
- require 'rack/test'
3
- require 'omniauth'
4
- require 'omniauth/version'
5
- require 'omniauth-shibboleth'
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
6
2
  require 'omniauth-aai'
7
3
 
4
+ require 'rack/test'
5
+ # require 'rspec'
6
+ # require 'omniauth'
7
+ # require 'omniauth/has_current_user'
8
+ # require 'omniauth-aai'
9
+ # require 'omniauth/version'
10
+ # require 'support/omniauth_macros'
11
+
8
12
  RSpec.configure do |config|
13
+ # config.include(OmniauthMacros)
9
14
  config.include Rack::Test::Methods
10
- config.color_enabled = true
11
15
  end
16
+
17
+ # OmniAuth.config.test_mode = true
@@ -0,0 +1,13 @@
1
+ module OmniauthMacros
2
+ def mock_auth_hash
3
+ # The mock_auth configuration allows you to set per-provider (or default)
4
+ # authentication hashes to return during integration testing.
5
+ OmniAuth.config.mock_auth[:aai] = {
6
+ provider: 'aai',
7
+ uid: '123545',
8
+ user_info: {
9
+ name: 'mockuser'
10
+ }
11
+ }
12
+ end
13
+ end
metadata CHANGED
@@ -1,301 +1,592 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-aai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
5
- prerelease:
4
+ version: 0.6.3
6
5
  platform: ruby
7
6
  authors:
8
- - Claudio Beffa
7
+ - Christian Rohrer
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-11-26 00:00:00.000000000 Z
11
+ date: 2015-06-09 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: omniauth-shibboleth
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: '1.2'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '0'
26
+ version: '1.2'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rack-test
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
- version: '0'
33
+ version: '0.6'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
- version: '0'
40
+ version: '0.6'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: rake
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
- version: '0'
47
+ version: '10.4'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
- version: '0'
54
+ version: '10.4'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
- version: '2.8'
61
+ version: '3.2'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
- version: '2.8'
68
+ version: '3.2'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: guard-rspec
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - "~>"
84
74
  - !ruby/object:Gem::Version
85
- version: '0'
75
+ version: '4.5'
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - "~>"
92
81
  - !ruby/object:Gem::Version
93
- version: '0'
82
+ version: '4.5'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: rails
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
- version: '0'
89
+ version: '4.2'
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
- version: '0'
110
- - !ruby/object:Gem::Dependency
111
- name: capybara
112
- requirement: !ruby/object:Gem::Requirement
113
- none: false
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
- none: false
122
- requirements:
123
- - - ! '>='
124
- - !ruby/object:Gem::Version
125
- version: '0'
126
- description: OmniAuth Shibboleth strategies for SWITCHaai
96
+ version: '4.2'
97
+ description: OmniAuth strategy for SWITCHaai
127
98
  email:
128
- - claudio@beffa.ch
99
+ - christian.rohrer@switch.ch
129
100
  executables: []
130
101
  extensions: []
131
102
  extra_rdoc_files: []
132
103
  files:
133
- - .travis.yml
104
+ - ".DS_Store"
105
+ - ".rspec"
106
+ - ".travis.yml"
134
107
  - Gemfile
135
108
  - Gemfile.lock
136
109
  - Guardfile
137
- - lib/action_controller/has_current_user.rb
138
- - lib/generators/aai/install_generator.rb
110
+ - LICENSE.txt
111
+ - README.md
112
+ - Rakefile
113
+ - lib/.DS_Store
114
+ - lib/generators/aai/USAGE
115
+ - lib/generators/aai/setup_generator.rb
139
116
  - lib/generators/aai/templates/migration.rb
140
117
  - lib/generators/aai/templates/omniauth.rb
141
118
  - lib/generators/aai/templates/session_controller.rb
142
119
  - lib/generators/aai/templates/user.rb
143
- - lib/generators/aai/USAGE
144
- - lib/omniauth/strategies/aai.rb
145
- - lib/omniauth-aai/version.rb
146
120
  - lib/omniauth-aai.rb
147
- - omniauth-aai-0.3.gem
148
- - omniauth-aai-0.4.gem
149
- - omniauth-aai-0.5.1.gem
121
+ - lib/omniauth-aai/version.rb
122
+ - lib/omniauth/has_current_user.rb
123
+ - lib/omniauth/strategies/aai.rb
150
124
  - omniauth-aai.gemspec
151
- - Rakefile
152
- - README.md
153
- - spec/example_rails_app/.gitignore
154
- - spec/example_rails_app/app/assets/images/rails.png
155
- - spec/example_rails_app/app/assets/javascripts/application.js
156
- - spec/example_rails_app/app/assets/javascripts/welcome.js.coffee
157
- - spec/example_rails_app/app/assets/stylesheets/application.css
158
- - spec/example_rails_app/app/assets/stylesheets/welcome.css.scss
159
- - spec/example_rails_app/app/controllers/application_controller.rb
160
- - spec/example_rails_app/app/controllers/welcome_controller.rb
161
- - spec/example_rails_app/app/helpers/application_helper.rb
162
- - spec/example_rails_app/app/helpers/welcome_helper.rb
163
- - spec/example_rails_app/app/mailers/.gitkeep
164
- - spec/example_rails_app/app/models/.gitkeep
165
- - spec/example_rails_app/app/views/layouts/application.html.erb
166
- - spec/example_rails_app/app/views/welcome/index.html.erb
167
- - spec/example_rails_app/app/views/welcome/protected.html.erb
168
- - spec/example_rails_app/change_application_controller.rb
169
- - spec/example_rails_app/config/application.rb
170
- - spec/example_rails_app/config/boot.rb
171
- - spec/example_rails_app/config/database.yml
172
- - spec/example_rails_app/config/environment.rb
173
- - spec/example_rails_app/config/environments/development.rb
174
- - spec/example_rails_app/config/environments/production.rb
175
- - spec/example_rails_app/config/environments/test.rb
176
- - spec/example_rails_app/config/initializers/backtrace_silencers.rb
177
- - spec/example_rails_app/config/initializers/inflections.rb
178
- - spec/example_rails_app/config/initializers/mime_types.rb
179
- - spec/example_rails_app/config/initializers/secret_token.rb
180
- - spec/example_rails_app/config/initializers/session_store.rb
181
- - spec/example_rails_app/config/initializers/wrap_parameters.rb
182
- - spec/example_rails_app/config/locales/en.yml
183
- - spec/example_rails_app/config/routes.rb
184
- - spec/example_rails_app/config.ru
185
- - spec/example_rails_app/db/seeds.rb
186
- - spec/example_rails_app/doc/README_FOR_APP
187
- - spec/example_rails_app/Gemfile
188
- - spec/example_rails_app/lib/assets/.gitkeep
189
- - spec/example_rails_app/lib/tasks/.gitkeep
190
- - spec/example_rails_app/log/.gitkeep
191
- - spec/example_rails_app/public/404.html
192
- - spec/example_rails_app/public/422.html
193
- - spec/example_rails_app/public/500.html
194
- - spec/example_rails_app/public/favicon.ico
195
- - spec/example_rails_app/public/robots.txt
196
- - spec/example_rails_app/Rakefile
197
- - spec/example_rails_app/script/rails
198
- - spec/example_rails_app/test/fixtures/.gitkeep
199
- - spec/example_rails_app/test/functional/.gitkeep
200
- - spec/example_rails_app/test/functional/welcome_controller_test.rb
201
- - spec/example_rails_app/test/integration/.gitkeep
202
- - spec/example_rails_app/test/performance/browsing_test.rb
203
- - spec/example_rails_app/test/test_helper.rb
204
- - spec/example_rails_app/test/unit/.gitkeep
205
- - spec/example_rails_app/test/unit/helpers/welcome_helper_test.rb
206
- - spec/example_rails_app/vendor/assets/javascripts/.gitkeep
207
- - spec/example_rails_app/vendor/assets/stylesheets/.gitkeep
208
- - spec/example_rails_app/vendor/plugins/.gitkeep
125
+ - spec/example_rails3_app/.DS_Store
126
+ - spec/example_rails3_app/.gitignore
127
+ - spec/example_rails3_app/Gemfile
128
+ - spec/example_rails3_app/Gemfile.lock
129
+ - spec/example_rails3_app/Rakefile
130
+ - spec/example_rails3_app/app/assets/images/rails.png
131
+ - spec/example_rails3_app/app/assets/javascripts/application.js
132
+ - spec/example_rails3_app/app/assets/javascripts/welcome.js.coffee
133
+ - spec/example_rails3_app/app/assets/stylesheets/application.css
134
+ - spec/example_rails3_app/app/assets/stylesheets/welcome.css.scss
135
+ - spec/example_rails3_app/app/controllers/application_controller.rb
136
+ - spec/example_rails3_app/app/controllers/welcome_controller.rb
137
+ - spec/example_rails3_app/app/helpers/application_helper.rb
138
+ - spec/example_rails3_app/app/helpers/welcome_helper.rb
139
+ - spec/example_rails3_app/app/mailers/.gitkeep
140
+ - spec/example_rails3_app/app/models/.gitkeep
141
+ - spec/example_rails3_app/app/views/.DS_Store
142
+ - spec/example_rails3_app/app/views/layouts/application.html.erb
143
+ - spec/example_rails3_app/app/views/welcome/index.html.erb
144
+ - spec/example_rails3_app/app/views/welcome/protected.html.erb
145
+ - spec/example_rails3_app/change_application_controller.rb
146
+ - spec/example_rails3_app/config.ru
147
+ - spec/example_rails3_app/config/application.rb
148
+ - spec/example_rails3_app/config/boot.rb
149
+ - spec/example_rails3_app/config/database.yml
150
+ - spec/example_rails3_app/config/environment.rb
151
+ - spec/example_rails3_app/config/environments/development.rb
152
+ - spec/example_rails3_app/config/environments/production.rb
153
+ - spec/example_rails3_app/config/environments/test.rb
154
+ - spec/example_rails3_app/config/initializers/backtrace_silencers.rb
155
+ - spec/example_rails3_app/config/initializers/inflections.rb
156
+ - spec/example_rails3_app/config/initializers/mime_types.rb
157
+ - spec/example_rails3_app/config/initializers/secret_token.rb
158
+ - spec/example_rails3_app/config/initializers/session_store.rb
159
+ - spec/example_rails3_app/config/initializers/wrap_parameters.rb
160
+ - spec/example_rails3_app/config/locales/en.yml
161
+ - spec/example_rails3_app/config/routes.rb
162
+ - spec/example_rails3_app/db/development.sqlite3
163
+ - spec/example_rails3_app/db/schema.rb
164
+ - spec/example_rails3_app/db/seeds.rb
165
+ - spec/example_rails3_app/db/test.sqlite3
166
+ - spec/example_rails3_app/doc/README_FOR_APP
167
+ - spec/example_rails3_app/lib/assets/.gitkeep
168
+ - spec/example_rails3_app/lib/tasks/.gitkeep
169
+ - spec/example_rails3_app/log/.gitkeep
170
+ - spec/example_rails3_app/log/development.log
171
+ - spec/example_rails3_app/log/test.log
172
+ - spec/example_rails3_app/public/404.html
173
+ - spec/example_rails3_app/public/422.html
174
+ - spec/example_rails3_app/public/500.html
175
+ - spec/example_rails3_app/public/favicon.ico
176
+ - spec/example_rails3_app/public/robots.txt
177
+ - spec/example_rails3_app/script/rails
178
+ - spec/example_rails3_app/test/fixtures/.gitkeep
179
+ - spec/example_rails3_app/test/functional/.gitkeep
180
+ - spec/example_rails3_app/test/functional/welcome_controller_test.rb
181
+ - spec/example_rails3_app/test/integration/.gitkeep
182
+ - spec/example_rails3_app/test/performance/browsing_test.rb
183
+ - spec/example_rails3_app/test/test_helper.rb
184
+ - spec/example_rails3_app/test/unit/.gitkeep
185
+ - spec/example_rails3_app/test/unit/helpers/welcome_helper_test.rb
186
+ - spec/example_rails3_app/tmp/cache/assets/C26/690/sprockets%2F93708cb34051f3000884905e8669d74a
187
+ - spec/example_rails3_app/tmp/cache/assets/C30/B40/sprockets%2Ff006fa583c943775b96596827195b022
188
+ - spec/example_rails3_app/tmp/cache/assets/C5C/B50/sprockets%2F7a556208881f6d893d11269bf2a09158
189
+ - spec/example_rails3_app/tmp/cache/assets/C83/640/sprockets%2F3233432f81669b9bd10ef726c526d348
190
+ - spec/example_rails3_app/tmp/cache/assets/CD0/AB0/sprockets%2F2211190fb757d05874e2b25fc37a31ad
191
+ - spec/example_rails3_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
192
+ - spec/example_rails3_app/tmp/cache/assets/CE2/AD0/sprockets%2Fbd71546009ab5e606b3f27b4c6a79856
193
+ - spec/example_rails3_app/tmp/cache/assets/D14/000/sprockets%2Fffd7643b7c429e23bdb2281097a5e096
194
+ - spec/example_rails3_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
195
+ - spec/example_rails3_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
196
+ - spec/example_rails3_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
197
+ - spec/example_rails3_app/tmp/cache/assets/D5E/170/sprockets%2F2f2229c70dcf195564d4d0fd6a12ac1a
198
+ - spec/example_rails3_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
199
+ - spec/example_rails3_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
200
+ - spec/example_rails3_app/tmp/cache/assets/E29/9D0/sprockets%2Fea5ba88ffb1f831008ba38ed70bd8cfa
201
+ - spec/example_rails3_app/tmp/cache/assets/E3F/0C0/sprockets%2F9addc9febe49c19a6eee9360f156afe3
202
+ - spec/example_rails3_app/vendor/assets/javascripts/.gitkeep
203
+ - spec/example_rails3_app/vendor/assets/stylesheets/.gitkeep
204
+ - spec/example_rails3_app/vendor/plugins/.gitkeep
205
+ - spec/example_rails4_app/.gitignore
206
+ - spec/example_rails4_app/Gemfile
207
+ - spec/example_rails4_app/Gemfile.lock
208
+ - spec/example_rails4_app/README.rdoc
209
+ - spec/example_rails4_app/Rakefile
210
+ - spec/example_rails4_app/app/assets/images/.keep
211
+ - spec/example_rails4_app/app/assets/javascripts/application.js
212
+ - spec/example_rails4_app/app/assets/stylesheets/application.css
213
+ - spec/example_rails4_app/app/controllers/application_controller.rb
214
+ - spec/example_rails4_app/app/controllers/concerns/.keep
215
+ - spec/example_rails4_app/app/controllers/session_controller.rb
216
+ - spec/example_rails4_app/app/controllers/welcome_controller.rb
217
+ - spec/example_rails4_app/app/helpers/application_helper.rb
218
+ - spec/example_rails4_app/app/mailers/.keep
219
+ - spec/example_rails4_app/app/models/.keep
220
+ - spec/example_rails4_app/app/models/concerns/.keep
221
+ - spec/example_rails4_app/app/models/user.rb
222
+ - spec/example_rails4_app/app/views/.DS_Store
223
+ - spec/example_rails4_app/app/views/layouts/application.html.erb
224
+ - spec/example_rails4_app/app/views/welcome/index.html.erb
225
+ - spec/example_rails4_app/app/views/welcome/protected.html.erb
226
+ - spec/example_rails4_app/bin/bundle
227
+ - spec/example_rails4_app/bin/rails
228
+ - spec/example_rails4_app/bin/rake
229
+ - spec/example_rails4_app/bin/setup
230
+ - spec/example_rails4_app/bin/spring
231
+ - spec/example_rails4_app/config.ru
232
+ - spec/example_rails4_app/config/application.rb
233
+ - spec/example_rails4_app/config/boot.rb
234
+ - spec/example_rails4_app/config/database.yml
235
+ - spec/example_rails4_app/config/environment.rb
236
+ - spec/example_rails4_app/config/environments/development.rb
237
+ - spec/example_rails4_app/config/environments/production.rb
238
+ - spec/example_rails4_app/config/environments/test.rb
239
+ - spec/example_rails4_app/config/initializers/assets.rb
240
+ - spec/example_rails4_app/config/initializers/backtrace_silencers.rb
241
+ - spec/example_rails4_app/config/initializers/cookies_serializer.rb
242
+ - spec/example_rails4_app/config/initializers/filter_parameter_logging.rb
243
+ - spec/example_rails4_app/config/initializers/inflections.rb
244
+ - spec/example_rails4_app/config/initializers/mime_types.rb
245
+ - spec/example_rails4_app/config/initializers/omniauth.rb
246
+ - spec/example_rails4_app/config/initializers/session_store.rb
247
+ - spec/example_rails4_app/config/initializers/wrap_parameters.rb
248
+ - spec/example_rails4_app/config/locales/en.yml
249
+ - spec/example_rails4_app/config/routes.rb
250
+ - spec/example_rails4_app/config/secrets.yml
251
+ - spec/example_rails4_app/db/development.sqlite3
252
+ - spec/example_rails4_app/db/migrate/20150528142303_aai_create_user.rb
253
+ - spec/example_rails4_app/db/migrate/20150609094544_create_aai_user.rb
254
+ - spec/example_rails4_app/db/schema.rb
255
+ - spec/example_rails4_app/db/seeds.rb
256
+ - spec/example_rails4_app/lib/assets/.keep
257
+ - spec/example_rails4_app/lib/tasks/.keep
258
+ - spec/example_rails4_app/log/.keep
259
+ - spec/example_rails4_app/log/development.log
260
+ - spec/example_rails4_app/log/test.log
261
+ - spec/example_rails4_app/public/404.html
262
+ - spec/example_rails4_app/public/422.html
263
+ - spec/example_rails4_app/public/500.html
264
+ - spec/example_rails4_app/public/favicon.ico
265
+ - spec/example_rails4_app/public/robots.txt
266
+ - spec/example_rails4_app/test/controllers/.keep
267
+ - spec/example_rails4_app/test/fixtures/.keep
268
+ - spec/example_rails4_app/test/helpers/.keep
269
+ - spec/example_rails4_app/test/integration/.keep
270
+ - spec/example_rails4_app/test/mailers/.keep
271
+ - spec/example_rails4_app/test/models/.keep
272
+ - spec/example_rails4_app/test/test_helper.rb
273
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/1s_XCxu5Ta3ZrQVnXIYvLyRMXFQo20cDx9dOl2Z2iF8.cache
274
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/29DyBLYZiyJ3FlvLIMPsG2-7J8nAW42idLjWLEVdB_k.cache
275
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/3QbXCZJvxomnkCnjUWHuRcr1GygZ_h2BHAvxwpDe8_s.cache
276
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/4DpD3QisvkI9coAiaW5J81R3QEdauKikO3Gh5M8mwWo.cache
277
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6NLgJvQ8d_2Hvs_dsIe78tpsALlFUB02E_yBe-2E5cA.cache
278
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6jHw85RU0ldd0Q9aN-7rANpT7g1-koNDbSenv-m7smI.cache
279
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/7BAbDbQvvxI5tyXDU4FFEVqkskvwpwBb-Okv_3k7m_A.cache
280
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/9wp0IZ0iih5-OpulhDQiwTcivSJ1B0NGGT3E0QqfUvY.cache
281
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/BNSnmei4pmTUWNUSAxEsb0MthlP4aMS69DOMLpxnO1w.cache
282
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/CuDbyYCWFI80xf5TcM_YGo4vs7XDrDT2uGZbXL1CNlU.cache
283
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/E7vUl62-SGsQ8YapPcF158Pt1JkBL-9rifcB_9dP8Dk.cache
284
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Gb8DbxW8LZBtcLvB3DaLNTXt5D0MNezSV797OaoPY9Q.cache
285
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GgQIx53L-9pWadlFfRd5NlAqwNFKf7DLPkPnsnQ7bNk.cache
286
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GjsYHKbT8fxMeVlnpmarx6Xi-_Ph0QMuk1BHoU4JDrQ.cache
287
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/H4FEyyRC4IJsChOdu1cf9NDgg8w6J1YBVNHaKN92h9o.cache
288
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/If5Lvqrq1tySO8vBUqp2xvRY_mnDfGebBxBP2mxZbZY.cache
289
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/IoT_x37i_0kSKYgLgbJR5-i6lvuoyNhOt9FSw-yILiQ.cache
290
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/JUseOAL-WHjhDijGjAaXwOvZEJUVhMs_jFSMbXunViY.cache
291
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KJcDzapXqjQsiil8Z8og8g_9qX88kXR8p3pMopsauA8.cache
292
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZpDQ14WKjcnWnLxlL99qFCd6ARfk0MsdegUfI30RMk.cache
293
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZxCQPT4Q2wX3rHnJZcFGWZPTtq7oNH9llxBAALh43s.cache
294
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LgV_5lRim8CeylWertau64VwyRxtI51id8BtgIok58g.cache
295
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Nt-6pBlTra27ZPWSp2yTZSKBAePHJHgDlIoxWTgF9i8.cache
296
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/PHhC5vQizTPXEkJAiD_q9ESL7UlJW-l8Ua2aoWOhv_o.cache
297
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/QRU43JksZxXfCsqux8aCe2yyWueGiamUDi18N8gDA1Q.cache
298
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RECBJfTHjk7obOczR_QxMkSagYRkmidf_ZawDoZTR8A.cache
299
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RanHbvC55zjJip0GoEuKsXCXGiMAnd9n7zr67BIqBSw.cache
300
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/S5179qXMIYo2z-pYHnXOtD2IYoz5ac8moYSK7pNt7m8.cache
301
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SO9WJ6f1sF18HRfzSmwkLdVZZwRBNz1DxAaYtGbOTrE.cache
302
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SPlj-pwirc-AB3GMeOqDR5gSAiu3j6C7QnAZfGmE9_I.cache
303
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TGEldewczDNL-pNPKYkePKZe3ySFo2sisfkbnD19W4s.cache
304
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TdlxPZJxUr_7HWj7CrC81yJyV0-40_Ogqo_1NTaEoIU.cache
305
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TowmqkMiUGEwvy7lnHQ_88ROBl0yb2D4yH0ugiNjvfA.cache
306
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Tp7wu_U3u6gFUnDoUHA40bWXyFOSSxNiXK6XPRwYmYU.cache
307
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TqgWeb7o7Z23teWSLaSdF-f3_8aYzRVbBVZhQUHuZVc.cache
308
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache
309
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/W8O66kikznV0XXIhsnH-3dHWm24NyxyK2BbzZvEssto.cache
310
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YLGfTegl3aFlYlDF7dfyQ5OuL6B6D3l-mcGVqtWnVQ8.cache
311
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YngNHAn-McYDpn3H2vj5Cfs7jvy6y0xXgV2lm-QqytU.cache
312
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/_J-JFAM5KZ8G3xUcVV9ht5vdsdH3wHg737JhiRTNl30.cache
313
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/apXOQCHHr7toaELV0vOhGpGHp0qsm15GmPpb-6SA6GI.cache
314
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c5jVOyypWys4L2Hoyc4U84gCAJg3tGepalH4_wvPjag.cache
315
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c8Xfpa8RSionpn-Hbvc5pDqvktT2tZDhvRCrUD1V_Oo.cache
316
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/cihMJr_YPzjx-OxZT97hhVuVpY1rkTjbZmXFd8XHCaU.cache
317
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/dHMPXPs1sOQ-fiWIOHBlX15A53Jm0CIPz2F_hNdtS3M.cache
318
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e99bn4nHgVDcocbTGKcEmDNK9c_hXbgX6QjCJFCZHJM.cache
319
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fLv1zUMqDQeVn2AWONn1mWotZV-MKGL2VWCOWalnPkg.cache
320
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fWQJziLu4L1W29En3opeg-1CsjRQBWmvxu9pCs4bXj8.cache
321
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gLKErIDcQk5SB5QrsCeFTLyCw5500orRLwYeVdZdKMc.cache
322
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gr63R85vyTqHHJZQ-17HzBTVQzxNIG5ioLBJIG7ylUI.cache
323
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/h94CfaFE7uxKkjg9ok-t1VaNrmPtIlflckdFHhn8HQs.cache
324
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hE4vknoiDD4JODeZCrqVQJsqIprogjXMLmC8OwA_Jr0.cache
325
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hS0tOwqtQJaZQ94vExFzOIkbAuInPL-qbhJ_ehyAIdA.cache
326
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jRTlxo8OfNbF2UFI9yARZfikVm2L6tckGljgpdPKJAE.cache
327
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jWzKY7vp1V-gp2DIoaBUf6FHlXy64u51evJE2HTEmHw.cache
328
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qzBkjnl32lQWbp5TzPSAUL1ai7Di46nMpBx4F7m6x5s.cache
329
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/r77JGKq0Pw_xiSzw2prNjqaAF6alyTiTyCsdnbipthY.cache
330
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rJ0exYcGrKT54S-78fIu6vNCgQs3mDufsDxQ14gI_8E.cache
331
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rx80cSLfrwi0ZB09RMu0y303mn2cqY0n-HVvX4OZSvg.cache
332
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/t86ZINxINr8OvlNbaSMwdIJCEKNwBO6brBig2BlQM14.cache
333
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tXvI8895yJKqfChNv65cTiwS7lytvZHFz1fXzFbzVeM.cache
334
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ueBgJWdtY_h7B_DpJgfhaB1zK-p3TTKWfXHuoog1ee0.cache
335
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/umu0vtYbA7uPY--szPF2GZOzRsafL6YLGkxCLx52t0c.cache
336
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/wRYMTVh2J03EQY8OmShoXFHM5q_wkCsogrHuAv8CR6g.cache
337
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xSK_JYmeNOLhG9YlWG_YGYarb8YLyIeMXHahwRIyhZY.cache
338
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/yLpEexUzUtWqrKQPCErdaCnJUUkxgSLIOShi9XNRKlM.cache
339
+ - spec/example_rails4_app/vendor/assets/javascripts/.keep
340
+ - spec/example_rails4_app/vendor/assets/stylesheets/.keep
341
+ - spec/omniauth/has_current_user_spec.rb
209
342
  - spec/omniauth/strategies/aai_spec.rb
210
343
  - spec/omniauth/strategies/brute_force_spec.rb
211
344
  - spec/spec_helper.rb
345
+ - spec/support/omniauth_macros.rb
212
346
  homepage: https://github.com/switch-ch/omniauth-aai
213
- licenses: []
347
+ licenses:
348
+ - MIT
349
+ metadata: {}
214
350
  post_install_message:
215
351
  rdoc_options: []
216
352
  require_paths:
217
353
  - lib
218
354
  required_ruby_version: !ruby/object:Gem::Requirement
219
- none: false
220
355
  requirements:
221
- - - ! '>='
356
+ - - ">="
222
357
  - !ruby/object:Gem::Version
223
358
  version: '0'
224
- segments:
225
- - 0
226
- hash: -895346344674379661
227
359
  required_rubygems_version: !ruby/object:Gem::Requirement
228
- none: false
229
360
  requirements:
230
- - - ! '>='
361
+ - - ">="
231
362
  - !ruby/object:Gem::Version
232
363
  version: '0'
233
- segments:
234
- - 0
235
- hash: -895346344674379661
236
364
  requirements: []
237
365
  rubyforge_project:
238
- rubygems_version: 1.8.23
366
+ rubygems_version: 2.4.8
239
367
  signing_key:
240
- specification_version: 3
241
- summary: OmniAuth Shibboleth strategies for SWITCHaai
368
+ specification_version: 4
369
+ summary: OmniAuth strategy for SWITCHaai, the shibboleth implementation used for the
370
+ Swiss HEI federation.
242
371
  test_files:
243
- - spec/example_rails_app/.gitignore
244
- - spec/example_rails_app/app/assets/images/rails.png
245
- - spec/example_rails_app/app/assets/javascripts/application.js
246
- - spec/example_rails_app/app/assets/javascripts/welcome.js.coffee
247
- - spec/example_rails_app/app/assets/stylesheets/application.css
248
- - spec/example_rails_app/app/assets/stylesheets/welcome.css.scss
249
- - spec/example_rails_app/app/controllers/application_controller.rb
250
- - spec/example_rails_app/app/controllers/welcome_controller.rb
251
- - spec/example_rails_app/app/helpers/application_helper.rb
252
- - spec/example_rails_app/app/helpers/welcome_helper.rb
253
- - spec/example_rails_app/app/mailers/.gitkeep
254
- - spec/example_rails_app/app/models/.gitkeep
255
- - spec/example_rails_app/app/views/layouts/application.html.erb
256
- - spec/example_rails_app/app/views/welcome/index.html.erb
257
- - spec/example_rails_app/app/views/welcome/protected.html.erb
258
- - spec/example_rails_app/change_application_controller.rb
259
- - spec/example_rails_app/config/application.rb
260
- - spec/example_rails_app/config/boot.rb
261
- - spec/example_rails_app/config/database.yml
262
- - spec/example_rails_app/config/environment.rb
263
- - spec/example_rails_app/config/environments/development.rb
264
- - spec/example_rails_app/config/environments/production.rb
265
- - spec/example_rails_app/config/environments/test.rb
266
- - spec/example_rails_app/config/initializers/backtrace_silencers.rb
267
- - spec/example_rails_app/config/initializers/inflections.rb
268
- - spec/example_rails_app/config/initializers/mime_types.rb
269
- - spec/example_rails_app/config/initializers/secret_token.rb
270
- - spec/example_rails_app/config/initializers/session_store.rb
271
- - spec/example_rails_app/config/initializers/wrap_parameters.rb
272
- - spec/example_rails_app/config/locales/en.yml
273
- - spec/example_rails_app/config/routes.rb
274
- - spec/example_rails_app/config.ru
275
- - spec/example_rails_app/db/seeds.rb
276
- - spec/example_rails_app/doc/README_FOR_APP
277
- - spec/example_rails_app/Gemfile
278
- - spec/example_rails_app/lib/assets/.gitkeep
279
- - spec/example_rails_app/lib/tasks/.gitkeep
280
- - spec/example_rails_app/log/.gitkeep
281
- - spec/example_rails_app/public/404.html
282
- - spec/example_rails_app/public/422.html
283
- - spec/example_rails_app/public/500.html
284
- - spec/example_rails_app/public/favicon.ico
285
- - spec/example_rails_app/public/robots.txt
286
- - spec/example_rails_app/Rakefile
287
- - spec/example_rails_app/script/rails
288
- - spec/example_rails_app/test/fixtures/.gitkeep
289
- - spec/example_rails_app/test/functional/.gitkeep
290
- - spec/example_rails_app/test/functional/welcome_controller_test.rb
291
- - spec/example_rails_app/test/integration/.gitkeep
292
- - spec/example_rails_app/test/performance/browsing_test.rb
293
- - spec/example_rails_app/test/test_helper.rb
294
- - spec/example_rails_app/test/unit/.gitkeep
295
- - spec/example_rails_app/test/unit/helpers/welcome_helper_test.rb
296
- - spec/example_rails_app/vendor/assets/javascripts/.gitkeep
297
- - spec/example_rails_app/vendor/assets/stylesheets/.gitkeep
298
- - spec/example_rails_app/vendor/plugins/.gitkeep
372
+ - spec/example_rails3_app/.DS_Store
373
+ - spec/example_rails3_app/.gitignore
374
+ - spec/example_rails3_app/app/assets/images/rails.png
375
+ - spec/example_rails3_app/app/assets/javascripts/application.js
376
+ - spec/example_rails3_app/app/assets/javascripts/welcome.js.coffee
377
+ - spec/example_rails3_app/app/assets/stylesheets/application.css
378
+ - spec/example_rails3_app/app/assets/stylesheets/welcome.css.scss
379
+ - spec/example_rails3_app/app/controllers/application_controller.rb
380
+ - spec/example_rails3_app/app/controllers/welcome_controller.rb
381
+ - spec/example_rails3_app/app/helpers/application_helper.rb
382
+ - spec/example_rails3_app/app/helpers/welcome_helper.rb
383
+ - spec/example_rails3_app/app/mailers/.gitkeep
384
+ - spec/example_rails3_app/app/models/.gitkeep
385
+ - spec/example_rails3_app/app/views/.DS_Store
386
+ - spec/example_rails3_app/app/views/layouts/application.html.erb
387
+ - spec/example_rails3_app/app/views/welcome/index.html.erb
388
+ - spec/example_rails3_app/app/views/welcome/protected.html.erb
389
+ - spec/example_rails3_app/change_application_controller.rb
390
+ - spec/example_rails3_app/config/application.rb
391
+ - spec/example_rails3_app/config/boot.rb
392
+ - spec/example_rails3_app/config/database.yml
393
+ - spec/example_rails3_app/config/environment.rb
394
+ - spec/example_rails3_app/config/environments/development.rb
395
+ - spec/example_rails3_app/config/environments/production.rb
396
+ - spec/example_rails3_app/config/environments/test.rb
397
+ - spec/example_rails3_app/config/initializers/backtrace_silencers.rb
398
+ - spec/example_rails3_app/config/initializers/inflections.rb
399
+ - spec/example_rails3_app/config/initializers/mime_types.rb
400
+ - spec/example_rails3_app/config/initializers/secret_token.rb
401
+ - spec/example_rails3_app/config/initializers/session_store.rb
402
+ - spec/example_rails3_app/config/initializers/wrap_parameters.rb
403
+ - spec/example_rails3_app/config/locales/en.yml
404
+ - spec/example_rails3_app/config/routes.rb
405
+ - spec/example_rails3_app/config.ru
406
+ - spec/example_rails3_app/db/development.sqlite3
407
+ - spec/example_rails3_app/db/schema.rb
408
+ - spec/example_rails3_app/db/seeds.rb
409
+ - spec/example_rails3_app/db/test.sqlite3
410
+ - spec/example_rails3_app/doc/README_FOR_APP
411
+ - spec/example_rails3_app/Gemfile
412
+ - spec/example_rails3_app/Gemfile.lock
413
+ - spec/example_rails3_app/lib/assets/.gitkeep
414
+ - spec/example_rails3_app/lib/tasks/.gitkeep
415
+ - spec/example_rails3_app/log/.gitkeep
416
+ - spec/example_rails3_app/log/development.log
417
+ - spec/example_rails3_app/log/test.log
418
+ - spec/example_rails3_app/public/404.html
419
+ - spec/example_rails3_app/public/422.html
420
+ - spec/example_rails3_app/public/500.html
421
+ - spec/example_rails3_app/public/favicon.ico
422
+ - spec/example_rails3_app/public/robots.txt
423
+ - spec/example_rails3_app/Rakefile
424
+ - spec/example_rails3_app/script/rails
425
+ - spec/example_rails3_app/test/fixtures/.gitkeep
426
+ - spec/example_rails3_app/test/functional/.gitkeep
427
+ - spec/example_rails3_app/test/functional/welcome_controller_test.rb
428
+ - spec/example_rails3_app/test/integration/.gitkeep
429
+ - spec/example_rails3_app/test/performance/browsing_test.rb
430
+ - spec/example_rails3_app/test/test_helper.rb
431
+ - spec/example_rails3_app/test/unit/.gitkeep
432
+ - spec/example_rails3_app/test/unit/helpers/welcome_helper_test.rb
433
+ - spec/example_rails3_app/tmp/cache/assets/C26/690/sprockets%2F93708cb34051f3000884905e8669d74a
434
+ - spec/example_rails3_app/tmp/cache/assets/C30/B40/sprockets%2Ff006fa583c943775b96596827195b022
435
+ - spec/example_rails3_app/tmp/cache/assets/C5C/B50/sprockets%2F7a556208881f6d893d11269bf2a09158
436
+ - spec/example_rails3_app/tmp/cache/assets/C83/640/sprockets%2F3233432f81669b9bd10ef726c526d348
437
+ - spec/example_rails3_app/tmp/cache/assets/CD0/AB0/sprockets%2F2211190fb757d05874e2b25fc37a31ad
438
+ - spec/example_rails3_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
439
+ - spec/example_rails3_app/tmp/cache/assets/CE2/AD0/sprockets%2Fbd71546009ab5e606b3f27b4c6a79856
440
+ - spec/example_rails3_app/tmp/cache/assets/D14/000/sprockets%2Fffd7643b7c429e23bdb2281097a5e096
441
+ - spec/example_rails3_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
442
+ - spec/example_rails3_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
443
+ - spec/example_rails3_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
444
+ - spec/example_rails3_app/tmp/cache/assets/D5E/170/sprockets%2F2f2229c70dcf195564d4d0fd6a12ac1a
445
+ - spec/example_rails3_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
446
+ - spec/example_rails3_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
447
+ - spec/example_rails3_app/tmp/cache/assets/E29/9D0/sprockets%2Fea5ba88ffb1f831008ba38ed70bd8cfa
448
+ - spec/example_rails3_app/tmp/cache/assets/E3F/0C0/sprockets%2F9addc9febe49c19a6eee9360f156afe3
449
+ - spec/example_rails3_app/vendor/assets/javascripts/.gitkeep
450
+ - spec/example_rails3_app/vendor/assets/stylesheets/.gitkeep
451
+ - spec/example_rails3_app/vendor/plugins/.gitkeep
452
+ - spec/example_rails4_app/.gitignore
453
+ - spec/example_rails4_app/app/assets/images/.keep
454
+ - spec/example_rails4_app/app/assets/javascripts/application.js
455
+ - spec/example_rails4_app/app/assets/stylesheets/application.css
456
+ - spec/example_rails4_app/app/controllers/application_controller.rb
457
+ - spec/example_rails4_app/app/controllers/concerns/.keep
458
+ - spec/example_rails4_app/app/controllers/session_controller.rb
459
+ - spec/example_rails4_app/app/controllers/welcome_controller.rb
460
+ - spec/example_rails4_app/app/helpers/application_helper.rb
461
+ - spec/example_rails4_app/app/mailers/.keep
462
+ - spec/example_rails4_app/app/models/.keep
463
+ - spec/example_rails4_app/app/models/concerns/.keep
464
+ - spec/example_rails4_app/app/models/user.rb
465
+ - spec/example_rails4_app/app/views/.DS_Store
466
+ - spec/example_rails4_app/app/views/layouts/application.html.erb
467
+ - spec/example_rails4_app/app/views/welcome/index.html.erb
468
+ - spec/example_rails4_app/app/views/welcome/protected.html.erb
469
+ - spec/example_rails4_app/bin/bundle
470
+ - spec/example_rails4_app/bin/rails
471
+ - spec/example_rails4_app/bin/rake
472
+ - spec/example_rails4_app/bin/setup
473
+ - spec/example_rails4_app/bin/spring
474
+ - spec/example_rails4_app/config/application.rb
475
+ - spec/example_rails4_app/config/boot.rb
476
+ - spec/example_rails4_app/config/database.yml
477
+ - spec/example_rails4_app/config/environment.rb
478
+ - spec/example_rails4_app/config/environments/development.rb
479
+ - spec/example_rails4_app/config/environments/production.rb
480
+ - spec/example_rails4_app/config/environments/test.rb
481
+ - spec/example_rails4_app/config/initializers/assets.rb
482
+ - spec/example_rails4_app/config/initializers/backtrace_silencers.rb
483
+ - spec/example_rails4_app/config/initializers/cookies_serializer.rb
484
+ - spec/example_rails4_app/config/initializers/filter_parameter_logging.rb
485
+ - spec/example_rails4_app/config/initializers/inflections.rb
486
+ - spec/example_rails4_app/config/initializers/mime_types.rb
487
+ - spec/example_rails4_app/config/initializers/omniauth.rb
488
+ - spec/example_rails4_app/config/initializers/session_store.rb
489
+ - spec/example_rails4_app/config/initializers/wrap_parameters.rb
490
+ - spec/example_rails4_app/config/locales/en.yml
491
+ - spec/example_rails4_app/config/routes.rb
492
+ - spec/example_rails4_app/config/secrets.yml
493
+ - spec/example_rails4_app/config.ru
494
+ - spec/example_rails4_app/db/development.sqlite3
495
+ - spec/example_rails4_app/db/migrate/20150528142303_aai_create_user.rb
496
+ - spec/example_rails4_app/db/migrate/20150609094544_create_aai_user.rb
497
+ - spec/example_rails4_app/db/schema.rb
498
+ - spec/example_rails4_app/db/seeds.rb
499
+ - spec/example_rails4_app/Gemfile
500
+ - spec/example_rails4_app/Gemfile.lock
501
+ - spec/example_rails4_app/lib/assets/.keep
502
+ - spec/example_rails4_app/lib/tasks/.keep
503
+ - spec/example_rails4_app/log/.keep
504
+ - spec/example_rails4_app/log/development.log
505
+ - spec/example_rails4_app/log/test.log
506
+ - spec/example_rails4_app/public/404.html
507
+ - spec/example_rails4_app/public/422.html
508
+ - spec/example_rails4_app/public/500.html
509
+ - spec/example_rails4_app/public/favicon.ico
510
+ - spec/example_rails4_app/public/robots.txt
511
+ - spec/example_rails4_app/Rakefile
512
+ - spec/example_rails4_app/README.rdoc
513
+ - spec/example_rails4_app/test/controllers/.keep
514
+ - spec/example_rails4_app/test/fixtures/.keep
515
+ - spec/example_rails4_app/test/helpers/.keep
516
+ - spec/example_rails4_app/test/integration/.keep
517
+ - spec/example_rails4_app/test/mailers/.keep
518
+ - spec/example_rails4_app/test/models/.keep
519
+ - spec/example_rails4_app/test/test_helper.rb
520
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/1s_XCxu5Ta3ZrQVnXIYvLyRMXFQo20cDx9dOl2Z2iF8.cache
521
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/29DyBLYZiyJ3FlvLIMPsG2-7J8nAW42idLjWLEVdB_k.cache
522
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/3QbXCZJvxomnkCnjUWHuRcr1GygZ_h2BHAvxwpDe8_s.cache
523
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/4DpD3QisvkI9coAiaW5J81R3QEdauKikO3Gh5M8mwWo.cache
524
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6jHw85RU0ldd0Q9aN-7rANpT7g1-koNDbSenv-m7smI.cache
525
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6NLgJvQ8d_2Hvs_dsIe78tpsALlFUB02E_yBe-2E5cA.cache
526
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/7BAbDbQvvxI5tyXDU4FFEVqkskvwpwBb-Okv_3k7m_A.cache
527
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/9wp0IZ0iih5-OpulhDQiwTcivSJ1B0NGGT3E0QqfUvY.cache
528
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/_J-JFAM5KZ8G3xUcVV9ht5vdsdH3wHg737JhiRTNl30.cache
529
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/apXOQCHHr7toaELV0vOhGpGHp0qsm15GmPpb-6SA6GI.cache
530
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/BNSnmei4pmTUWNUSAxEsb0MthlP4aMS69DOMLpxnO1w.cache
531
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c5jVOyypWys4L2Hoyc4U84gCAJg3tGepalH4_wvPjag.cache
532
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c8Xfpa8RSionpn-Hbvc5pDqvktT2tZDhvRCrUD1V_Oo.cache
533
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/cihMJr_YPzjx-OxZT97hhVuVpY1rkTjbZmXFd8XHCaU.cache
534
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/CuDbyYCWFI80xf5TcM_YGo4vs7XDrDT2uGZbXL1CNlU.cache
535
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/dHMPXPs1sOQ-fiWIOHBlX15A53Jm0CIPz2F_hNdtS3M.cache
536
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/E7vUl62-SGsQ8YapPcF158Pt1JkBL-9rifcB_9dP8Dk.cache
537
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e99bn4nHgVDcocbTGKcEmDNK9c_hXbgX6QjCJFCZHJM.cache
538
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fLv1zUMqDQeVn2AWONn1mWotZV-MKGL2VWCOWalnPkg.cache
539
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fWQJziLu4L1W29En3opeg-1CsjRQBWmvxu9pCs4bXj8.cache
540
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Gb8DbxW8LZBtcLvB3DaLNTXt5D0MNezSV797OaoPY9Q.cache
541
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GgQIx53L-9pWadlFfRd5NlAqwNFKf7DLPkPnsnQ7bNk.cache
542
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GjsYHKbT8fxMeVlnpmarx6Xi-_Ph0QMuk1BHoU4JDrQ.cache
543
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gLKErIDcQk5SB5QrsCeFTLyCw5500orRLwYeVdZdKMc.cache
544
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gr63R85vyTqHHJZQ-17HzBTVQzxNIG5ioLBJIG7ylUI.cache
545
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/H4FEyyRC4IJsChOdu1cf9NDgg8w6J1YBVNHaKN92h9o.cache
546
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/h94CfaFE7uxKkjg9ok-t1VaNrmPtIlflckdFHhn8HQs.cache
547
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hE4vknoiDD4JODeZCrqVQJsqIprogjXMLmC8OwA_Jr0.cache
548
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hS0tOwqtQJaZQ94vExFzOIkbAuInPL-qbhJ_ehyAIdA.cache
549
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/If5Lvqrq1tySO8vBUqp2xvRY_mnDfGebBxBP2mxZbZY.cache
550
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/IoT_x37i_0kSKYgLgbJR5-i6lvuoyNhOt9FSw-yILiQ.cache
551
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jRTlxo8OfNbF2UFI9yARZfikVm2L6tckGljgpdPKJAE.cache
552
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/JUseOAL-WHjhDijGjAaXwOvZEJUVhMs_jFSMbXunViY.cache
553
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jWzKY7vp1V-gp2DIoaBUf6FHlXy64u51evJE2HTEmHw.cache
554
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KJcDzapXqjQsiil8Z8og8g_9qX88kXR8p3pMopsauA8.cache
555
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZpDQ14WKjcnWnLxlL99qFCd6ARfk0MsdegUfI30RMk.cache
556
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZxCQPT4Q2wX3rHnJZcFGWZPTtq7oNH9llxBAALh43s.cache
557
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LgV_5lRim8CeylWertau64VwyRxtI51id8BtgIok58g.cache
558
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Nt-6pBlTra27ZPWSp2yTZSKBAePHJHgDlIoxWTgF9i8.cache
559
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/PHhC5vQizTPXEkJAiD_q9ESL7UlJW-l8Ua2aoWOhv_o.cache
560
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/QRU43JksZxXfCsqux8aCe2yyWueGiamUDi18N8gDA1Q.cache
561
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qzBkjnl32lQWbp5TzPSAUL1ai7Di46nMpBx4F7m6x5s.cache
562
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/r77JGKq0Pw_xiSzw2prNjqaAF6alyTiTyCsdnbipthY.cache
563
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RanHbvC55zjJip0GoEuKsXCXGiMAnd9n7zr67BIqBSw.cache
564
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RECBJfTHjk7obOczR_QxMkSagYRkmidf_ZawDoZTR8A.cache
565
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rJ0exYcGrKT54S-78fIu6vNCgQs3mDufsDxQ14gI_8E.cache
566
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rx80cSLfrwi0ZB09RMu0y303mn2cqY0n-HVvX4OZSvg.cache
567
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/S5179qXMIYo2z-pYHnXOtD2IYoz5ac8moYSK7pNt7m8.cache
568
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SO9WJ6f1sF18HRfzSmwkLdVZZwRBNz1DxAaYtGbOTrE.cache
569
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SPlj-pwirc-AB3GMeOqDR5gSAiu3j6C7QnAZfGmE9_I.cache
570
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/t86ZINxINr8OvlNbaSMwdIJCEKNwBO6brBig2BlQM14.cache
571
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TdlxPZJxUr_7HWj7CrC81yJyV0-40_Ogqo_1NTaEoIU.cache
572
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TGEldewczDNL-pNPKYkePKZe3ySFo2sisfkbnD19W4s.cache
573
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TowmqkMiUGEwvy7lnHQ_88ROBl0yb2D4yH0ugiNjvfA.cache
574
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Tp7wu_U3u6gFUnDoUHA40bWXyFOSSxNiXK6XPRwYmYU.cache
575
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TqgWeb7o7Z23teWSLaSdF-f3_8aYzRVbBVZhQUHuZVc.cache
576
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tXvI8895yJKqfChNv65cTiwS7lytvZHFz1fXzFbzVeM.cache
577
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ueBgJWdtY_h7B_DpJgfhaB1zK-p3TTKWfXHuoog1ee0.cache
578
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/umu0vtYbA7uPY--szPF2GZOzRsafL6YLGkxCLx52t0c.cache
579
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache
580
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/W8O66kikznV0XXIhsnH-3dHWm24NyxyK2BbzZvEssto.cache
581
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/wRYMTVh2J03EQY8OmShoXFHM5q_wkCsogrHuAv8CR6g.cache
582
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xSK_JYmeNOLhG9YlWG_YGYarb8YLyIeMXHahwRIyhZY.cache
583
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YLGfTegl3aFlYlDF7dfyQ5OuL6B6D3l-mcGVqtWnVQ8.cache
584
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/yLpEexUzUtWqrKQPCErdaCnJUUkxgSLIOShi9XNRKlM.cache
585
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YngNHAn-McYDpn3H2vj5Cfs7jvy6y0xXgV2lm-QqytU.cache
586
+ - spec/example_rails4_app/vendor/assets/javascripts/.keep
587
+ - spec/example_rails4_app/vendor/assets/stylesheets/.keep
588
+ - spec/omniauth/has_current_user_spec.rb
299
589
  - spec/omniauth/strategies/aai_spec.rb
300
590
  - spec/omniauth/strategies/brute_force_spec.rb
301
591
  - spec/spec_helper.rb
592
+ - spec/support/omniauth_macros.rb