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
data/omniauth-aai.gemspec CHANGED
@@ -1,28 +1,34 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/omniauth-aai/version', __FILE__)
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "omniauth-aai/version"
3
5
 
4
6
  Gem::Specification.new do |gem|
5
- gem.add_dependency 'omniauth-shibboleth'
6
-
7
- gem.add_development_dependency 'rack-test'
8
- gem.add_development_dependency 'rake'
9
- gem.add_development_dependency 'rspec', '~> 2.8'
10
- gem.add_development_dependency 'guard-rspec'
11
- gem.add_development_dependency 'rails'
12
- gem.add_development_dependency 'capybara'
7
+ gem.name = "omniauth-aai"
8
+ gem.version = OmniAuth::Aai::VERSION
9
+ gem.authors = ["Christian Rohrer"]
10
+ gem.email = ["christian.rohrer@switch.ch"]
11
+ gem.homepage = "https://github.com/switch-ch/omniauth-aai"
12
+ gem.description = %q{OmniAuth strategy for SWITCHaai}
13
+ gem.summary = %q{OmniAuth strategy for SWITCHaai, the shibboleth implementation used for the Swiss HEI federation.}
14
+ gem.license = "MIT"
15
+
16
+
17
+ gem.add_dependency 'omniauth-shibboleth', '~> 1.2'
18
+ # gem.add_dependency 'omniauth'
19
+
20
+ gem.add_development_dependency 'rack-test', '~> 0.6'
21
+ gem.add_development_dependency 'rake', '~> 10.4'
22
+ gem.add_development_dependency 'rspec', '~> 3.2'
23
+ gem.add_development_dependency 'guard-rspec', '~> 4.5'
24
+ gem.add_development_dependency 'rails', '~> 4.2'
25
+ # gem.add_development_dependency 'capybara'
13
26
  #gem.add_development_dependency 'sqlite3'
14
27
 
15
- gem.authors = ["Claudio Beffa"]
16
- gem.email = ["claudio@beffa.ch"]
17
- gem.description = %q{OmniAuth Shibboleth strategies for SWITCHaai}
18
- gem.summary = %q{OmniAuth Shibboleth strategies for SWITCHaai}
19
- gem.homepage = "https://github.com/switch-ch/omniauth-aai"
20
28
 
21
29
  gem.files = `find . -not \\( -regex ".*\\.git.*" -o -regex "\\./pkg.*" -o -regex "\\./spec.*" \\)`.split("\n").map{ |f| f.gsub(/^.\//, '') }
22
30
  gem.test_files = `find spec/*`.split("\n")
23
- gem.name = "omniauth-aai"
24
31
  gem.require_paths = ["lib"]
25
- gem.version = OmniAuth::Aai::VERSION
26
32
 
27
33
 
28
34
  end
Binary file
@@ -1,9 +1,9 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rails', '3.2.9'
3
+ gem 'rails', '3.2.21'
4
4
  gem 'sqlite3'
5
5
 
6
- gem 'omniauth-aai', :path => "../../../omniauth-aai"
6
+ gem 'omniauth-aai', path: "../../../omniauth-aai"
7
7
 
8
8
  group :assets do
9
9
  gem 'sass-rails', '~> 3.2.3'
@@ -12,5 +12,3 @@ group :assets do
12
12
  end
13
13
 
14
14
  gem 'jquery-rails'
15
-
16
-
@@ -0,0 +1,123 @@
1
+ PATH
2
+ remote: ../../../omniauth-aai
3
+ specs:
4
+ omniauth-aai (0.5.2)
5
+ omniauth-shibboleth
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.21)
11
+ actionpack (= 3.2.21)
12
+ mail (~> 2.5.4)
13
+ actionpack (3.2.21)
14
+ activemodel (= 3.2.21)
15
+ activesupport (= 3.2.21)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.21)
24
+ activesupport (= 3.2.21)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.21)
27
+ activemodel (= 3.2.21)
28
+ activesupport (= 3.2.21)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.21)
32
+ activemodel (= 3.2.21)
33
+ activesupport (= 3.2.21)
34
+ activesupport (3.2.21)
35
+ i18n (~> 0.6, >= 0.6.4)
36
+ multi_json (~> 1.0)
37
+ arel (3.0.3)
38
+ builder (3.0.4)
39
+ coffee-rails (3.2.2)
40
+ coffee-script (>= 2.2.0)
41
+ railties (~> 3.2.0)
42
+ coffee-script (2.4.1)
43
+ coffee-script-source
44
+ execjs
45
+ coffee-script-source (1.9.1.1)
46
+ erubis (2.7.0)
47
+ execjs (2.5.2)
48
+ hashie (3.4.1)
49
+ hike (1.2.3)
50
+ i18n (0.7.0)
51
+ journey (1.0.4)
52
+ jquery-rails (3.1.2)
53
+ railties (>= 3.0, < 5.0)
54
+ thor (>= 0.14, < 2.0)
55
+ json (1.8.2)
56
+ mail (2.5.4)
57
+ mime-types (~> 1.16)
58
+ treetop (~> 1.4.8)
59
+ mime-types (1.25.1)
60
+ multi_json (1.11.0)
61
+ omniauth (1.2.2)
62
+ hashie (>= 1.2, < 4)
63
+ rack (~> 1.0)
64
+ omniauth-shibboleth (1.2.0)
65
+ omniauth (>= 1.0.0)
66
+ polyglot (0.3.5)
67
+ rack (1.4.5)
68
+ rack-cache (1.2)
69
+ rack (>= 0.4)
70
+ rack-ssl (1.3.4)
71
+ rack
72
+ rack-test (0.6.3)
73
+ rack (>= 1.0)
74
+ rails (3.2.21)
75
+ actionmailer (= 3.2.21)
76
+ actionpack (= 3.2.21)
77
+ activerecord (= 3.2.21)
78
+ activeresource (= 3.2.21)
79
+ activesupport (= 3.2.21)
80
+ bundler (~> 1.0)
81
+ railties (= 3.2.21)
82
+ railties (3.2.21)
83
+ actionpack (= 3.2.21)
84
+ activesupport (= 3.2.21)
85
+ rack-ssl (~> 1.3.2)
86
+ rake (>= 0.8.7)
87
+ rdoc (~> 3.4)
88
+ thor (>= 0.14.6, < 2.0)
89
+ rake (10.4.2)
90
+ rdoc (3.12.2)
91
+ json (~> 1.4)
92
+ sass (3.4.14)
93
+ sass-rails (3.2.6)
94
+ railties (~> 3.2.0)
95
+ sass (>= 3.1.10)
96
+ tilt (~> 1.3)
97
+ sprockets (2.2.3)
98
+ hike (~> 1.2)
99
+ multi_json (~> 1.0)
100
+ rack (~> 1.0)
101
+ tilt (~> 1.1, != 1.3.0)
102
+ sqlite3 (1.3.10)
103
+ thor (0.19.1)
104
+ tilt (1.4.1)
105
+ treetop (1.4.15)
106
+ polyglot
107
+ polyglot (>= 0.3.1)
108
+ tzinfo (0.3.44)
109
+ uglifier (2.7.1)
110
+ execjs (>= 0.3.0)
111
+ json (>= 1.8.0)
112
+
113
+ PLATFORMS
114
+ ruby
115
+
116
+ DEPENDENCIES
117
+ coffee-rails (~> 3.2.1)
118
+ jquery-rails
119
+ omniauth-aai!
120
+ rails (= 3.2.21)
121
+ sass-rails (~> 3.2.3)
122
+ sqlite3
123
+ uglifier (>= 1.0.3)
@@ -1,9 +1,11 @@
1
1
  class WelcomeController < ApplicationController
2
- before_filter :authenticate!, :except => :index
3
-
2
+
3
+ before_filter :authenticate!, except: :index
4
+
4
5
  def index
5
6
  end
6
7
 
7
8
  def protected
8
9
  end
10
+
9
11
  end
@@ -2,12 +2,7 @@ require File.expand_path('../boot', __FILE__)
2
2
 
3
3
  require 'rails/all'
4
4
 
5
- if defined?(Bundler)
6
- # If you precompile assets before deploying to production, use this line
7
- Bundler.require(*Rails.groups(:assets => %w(development test)))
8
- # If you want your assets lazily compiled in production, use this line
9
- # Bundler.require(:default, :assets, Rails.env)
10
- end
5
+ Bundler.require(:default, Rails.env)
11
6
 
12
7
  module TestApp1
13
8
  class Application < Rails::Application
@@ -6,8 +6,7 @@ TestApp1::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
9
+ config.eager_load = false
11
10
 
12
11
  # Show full error reports and disable caching
13
12
  config.consider_all_requests_local = true
@@ -25,10 +24,6 @@ TestApp1::Application.configure do
25
24
  # Raise exception on mass assignment protection for Active Record models
26
25
  config.active_record.mass_assignment_sanitizer = :strict
27
26
 
28
- # Log the query plan for queries taking more than this (works
29
- # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
31
-
32
27
  # Do not compress assets
33
28
  config.assets.compress = false
34
29
 
@@ -61,7 +61,4 @@ TestApp1::Application.configure do
61
61
  # Send deprecation notices to registered listeners
62
62
  config.active_support.deprecation = :notify
63
63
 
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
64
  end
@@ -7,13 +7,12 @@ TestApp1::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
+ config.eager_load = false
11
+
10
12
  # Configure static asset server for tests with Cache-Control for performance
11
13
  config.serve_static_assets = true
12
14
  config.static_cache_control = "public, max-age=3600"
13
15
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
16
-
17
16
  # Show full error reports and disable caching
18
17
  config.consider_all_requests_local = true
19
18
  config.action_controller.perform_caching = false
@@ -5,3 +5,4 @@
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
7
  TestApp1::Application.config.secret_token = '35c5abe9d55cbbbac1722d7c622dea58f4d77b68b71ee8d76a3edd61cb2b5cb4978dd36d50e4836df40f492a2e3622764f7fe6e8a941f2a9b466d1d749d1fc44'
8
+ TestApp1::Application.config.secret_key_base = '757fc65ff787d0f37ea9acc171992f3f67241b1035f0200a870c5ae1be3f86ecab1e6981e7eb731a23be51ce1be713a1a3111edf8c0a09b462cfd2c201edc2a4'
@@ -1,7 +1,7 @@
1
1
  TestApp1::Application.routes.draw do
2
- get "welcome/index"
3
2
 
3
+ get "welcome/index"
4
4
  get "welcome/protected"
5
5
 
6
- root :to => 'welcome#index'
6
+ root to: 'welcome#index'
7
7
  end
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
@@ -0,0 +1,741 @@
1
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138)
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2014-09-29 15:59:58 +0200
5
+ Processing by WelcomeController#index as HTML
6
+ Rendered welcome/index.html.erb within layouts/application (7.4ms)
7
+ Completed 500 Internal Server Error in 16ms
8
+
9
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007f9f3b1980e8>:0x007f9f3b1a6c60>):
10
+ 1: <h1>Welcome#index</h1>
11
+ 2: <p><%= current_user.inspect %></p>
12
+ 3: <%= link_to "protected", welcome_protected_path()%>
13
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___4548366170472149975_70160933923560'
14
+
15
+
16
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
17
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
18
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.5ms)
19
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138)
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at 2014-09-29 16:03:23 +0200
23
+ Processing by WelcomeController#index as HTML
24
+ Rendered welcome/index.html.erb within layouts/application (6.0ms)
25
+ Completed 500 Internal Server Error in 11ms
26
+
27
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fe7751a7110>:0x007fe7751a6350>):
28
+ 1: <h1>Welcome#index</h1>
29
+ 2: <p><%= current_user.inspect %></p>
30
+ 3: <%= link_to "protected", welcome_protected_path()%>
31
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___2185123626046173774_70316039315980'
32
+
33
+
34
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
35
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
36
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
37
+
38
+
39
+ Started GET "/" for 127.0.0.1 at 2014-09-29 16:08:02 +0200
40
+ Processing by WelcomeController#index as HTML
41
+ Rendered welcome/index.html.erb within layouts/application (5.8ms)
42
+ Completed 500 Internal Server Error in 10ms
43
+
44
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007f9583c8f968>:0x007f9583c8eb08>):
45
+ 1: <h1>Welcome#index</h1>
46
+ 2: <p><%= current_user.inspect %></p>
47
+ 3: <%= link_to "protected", welcome_protected_path()%>
48
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___363798586501657256_70140068824500'
49
+
50
+
51
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
52
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.9ms)
53
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.3ms)
54
+
55
+
56
+ Started GET "/" for 127.0.0.1 at 2014-09-29 16:11:38 +0200
57
+ Processing by WelcomeController#index as HTML
58
+ Rendered welcome/index.html.erb within layouts/application (5.7ms)
59
+ Completed 500 Internal Server Error in 10ms
60
+
61
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fef05c01d30>:0x007fef05c00c28>):
62
+ 1: <h1>Welcome#index</h1>
63
+ 2: <p><%= current_user.inspect %></p>
64
+ 3: <%= link_to "protected", welcome_protected_path()%>
65
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___4570549307699315552_70332285081140'
66
+
67
+
68
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
69
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.5ms)
70
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.8ms)
71
+
72
+
73
+ Started GET "/" for 127.0.0.1 at 2014-09-29 16:13:38 +0200
74
+ Processing by WelcomeController#index as HTML
75
+ Rendered welcome/index.html.erb within layouts/application (4.7ms)
76
+ Completed 500 Internal Server Error in 7ms
77
+
78
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fef05c01d30>:0x007fef059c82f8>):
79
+ 1: <h1>Welcome#index</h1>
80
+ 2: <p><%= current_user.inspect %></p>
81
+ 3: <%= link_to "protected", welcome_protected_path()%>
82
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___4570549307699315552_70332285081140'
83
+
84
+
85
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
86
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
87
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
88
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
89
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
90
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+
92
+
93
+ Started GET "/" for 127.0.0.1 at 2014-10-01 13:29:06 +0200
94
+ Processing by WelcomeController#index as HTML
95
+ Rendered welcome/index.html.erb within layouts/application (8.5ms)
96
+ Completed 500 Internal Server Error in 19ms
97
+
98
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fa79c1c4468>:0x007fa79c1b3938>):
99
+ 1: <h1>Welcome#index</h1>
100
+ 2: <p><%= current_user.inspect %></p>
101
+ 3: <%= link_to "protected", welcome_protected_path()%>
102
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___926978555212506287_70178915200060'
103
+
104
+
105
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
106
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.2ms)
107
+ Rendered /Users/rohrer/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.5ms)
108
+
109
+
110
+ Started GET "/" for ::1 at 2015-05-28 10:20:45 +0200
111
+
112
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x007f827a188bd0>):
113
+ activerecord (4.2.1) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
114
+ activerecord (4.2.1) lib/active_record/railtie.rb:108:in `block (3 levels) in <class:Railtie>'
115
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `each'
116
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `block (2 levels) in <class:Railtie>'
117
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
118
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
119
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
120
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
121
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
122
+ activerecord (4.2.1) lib/active_record/base.rb:316:in `<module:ActiveRecord>'
123
+ activerecord (4.2.1) lib/active_record/base.rb:26:in `<top (required)>'
124
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:656:in `rescue in call'
125
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
126
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
127
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
128
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
129
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
130
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
131
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
132
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
133
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
134
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
135
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
136
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
137
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
138
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
139
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
140
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
141
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
142
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
143
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
144
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
145
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
146
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
147
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
148
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
149
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
150
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
151
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
152
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
153
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
154
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
155
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
156
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
157
+
158
+
159
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
160
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
161
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
162
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.9ms)
163
+
164
+
165
+ Started GET "/" for ::1 at 2015-05-28 10:44:40 +0200
166
+
167
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x007ffcf00431d0>):
168
+ activerecord (4.2.1) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
169
+ activerecord (4.2.1) lib/active_record/railtie.rb:108:in `block (3 levels) in <class:Railtie>'
170
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `each'
171
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `block (2 levels) in <class:Railtie>'
172
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
173
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
174
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
175
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
176
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
177
+ activerecord (4.2.1) lib/active_record/base.rb:316:in `<module:ActiveRecord>'
178
+ activerecord (4.2.1) lib/active_record/base.rb:26:in `<top (required)>'
179
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:656:in `rescue in call'
180
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
181
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
182
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
183
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
184
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
185
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
186
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
187
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
188
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
189
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
190
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
191
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
192
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
193
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
194
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
195
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
196
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
197
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
198
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
199
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
200
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
201
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
202
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
203
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
204
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
205
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
206
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
207
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
208
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
209
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
210
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
211
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
212
+
213
+
214
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms)
215
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
216
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
217
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.0ms)
218
+
219
+
220
+ Started GET "/" for ::1 at 2015-05-28 10:55:41 +0200
221
+
222
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x007fd064072358>):
223
+ activerecord (4.2.1) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
224
+ activerecord (4.2.1) lib/active_record/railtie.rb:108:in `block (3 levels) in <class:Railtie>'
225
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `each'
226
+ activerecord (4.2.1) lib/active_record/railtie.rb:107:in `block (2 levels) in <class:Railtie>'
227
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
228
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
229
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
230
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
231
+ activesupport (4.2.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
232
+ activerecord (4.2.1) lib/active_record/base.rb:316:in `<module:ActiveRecord>'
233
+ activerecord (4.2.1) lib/active_record/base.rb:26:in `<top (required)>'
234
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:656:in `rescue in call'
235
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
236
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
237
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
238
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
239
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
240
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
241
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
242
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
243
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
244
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
245
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
246
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
247
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
248
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
249
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
250
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
251
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
252
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
253
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
254
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
255
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
256
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
257
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
258
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
259
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
260
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
261
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
262
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
263
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
264
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
265
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
266
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
267
+
268
+
269
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
270
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
271
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
272
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms)
273
+
274
+
275
+ Started GET "/" for 127.0.0.1 at 2015-05-28 10:58:47 +0200
276
+ Connecting to database specified by database.yml
277
+ Processing by WelcomeController#index as HTML
278
+ Rendered welcome/index.html.erb within layouts/application (7.8ms)
279
+ Completed 500 Internal Server Error in 17ms
280
+
281
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007f80e41127b0>:0x007f80e41118d8>):
282
+ 1: <h1>Welcome#index</h1>
283
+ 2: <p><%= current_user.inspect %></p>
284
+ 3: <%= link_to "protected", welcome_protected_path()%>
285
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___3424742126355645756_70095797052520'
286
+
287
+
288
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
289
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
290
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.9ms)
291
+ Connecting to database specified by database.yml
292
+
293
+
294
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:01:26 +0200
295
+ Connecting to database specified by database.yml
296
+ Processing by WelcomeController#index as HTML
297
+ Rendered welcome/index.html.erb within layouts/application (8.9ms)
298
+ Completed 500 Internal Server Error in 16ms
299
+
300
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fe70e17e038>:0x007fe70e17ccd8>):
301
+ 1: <h1>Welcome#index</h1>
302
+ 2: <p><%= current_user.inspect %></p>
303
+ 3: <%= link_to "protected", welcome_protected_path()%>
304
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___3013341319470824301_70315175047600'
305
+
306
+
307
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
308
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
309
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.0ms)
310
+
311
+
312
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:01:27 +0200
313
+ Processing by WelcomeController#index as HTML
314
+ Rendered welcome/index.html.erb within layouts/application (7.5ms)
315
+ Completed 500 Internal Server Error in 10ms
316
+
317
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fe70e17e038>:0x007fe70b9b7e78>):
318
+ 1: <h1>Welcome#index</h1>
319
+ 2: <p><%= current_user.inspect %></p>
320
+ 3: <%= link_to "protected", welcome_protected_path()%>
321
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___3013341319470824301_70315175047600'
322
+
323
+
324
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
325
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
326
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.7ms)
327
+ Connecting to database specified by database.yml
328
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
329
+ Migrating to AaiCreateUser (20150528090112)
330
+  (0.0ms) select sqlite_version(*)
331
+  (0.0ms) begin transaction
332
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
333
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
334
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150528090112')
335
+  (7.7ms) commit transaction
336
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
337
+
338
+
339
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:02:27 +0200
340
+ Connecting to database specified by database.yml
341
+ Processing by WelcomeController#index as HTML
342
+ Rendered welcome/index.html.erb within layouts/application (6.3ms)
343
+ Completed 500 Internal Server Error in 13ms
344
+
345
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fc6299a4830>:0x007fc62999ede0>):
346
+ 1: <h1>Welcome#index</h1>
347
+ 2: <p><%= current_user.inspect %></p>
348
+ 3: <%= link_to "protected", welcome_protected_path()%>
349
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___4102346792193817654_70244538903980'
350
+
351
+
352
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
353
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
354
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.2ms)
355
+
356
+
357
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:02:28 +0200
358
+ Processing by WelcomeController#index as HTML
359
+ Rendered welcome/index.html.erb within layouts/application (4.9ms)
360
+ Completed 500 Internal Server Error in 8ms
361
+
362
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fc6299a4830>:0x007fc629214228>):
363
+ 1: <h1>Welcome#index</h1>
364
+ 2: <p><%= current_user.inspect %></p>
365
+ 3: <%= link_to "protected", welcome_protected_path()%>
366
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb___4102346792193817654_70244538903980'
367
+
368
+
369
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
370
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
371
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.4ms)
372
+
373
+
374
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
375
+ Processing by WelcomeController#index as HTML
376
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
377
+ Warning. Error encountered while saving cache /Users/rohrer/coding/ruby/switch/aai/omniauth-aai/spec/example_rails_app/tmp/cache/sass/1bdd68f842f399e7ad83e883de6a0cb238b79cb1/welcome.css.scssc: can't dump anonymous class #<Class:0x007fc6292be7c8>
378
+
379
+ Compiled welcome.css (3ms) (pid 66603)
380
+ Compiled application.css (7ms) (pid 66603)
381
+ Compiled jquery.js (3ms) (pid 66603)
382
+ Compiled jquery_ujs.js (0ms) (pid 66603)
383
+ Compiled welcome.js (79ms) (pid 66603)
384
+ Compiled application.js (102ms) (pid 66603)
385
+ Completed 200 OK in 156ms (Views: 155.6ms | ActiveRecord: 0.0ms)
386
+
387
+
388
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
389
+ Served asset /application.css - 200 OK (14ms)
390
+
391
+
392
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
393
+ Served asset /welcome.css - 200 OK (1ms)
394
+
395
+
396
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
397
+ Served asset /jquery.js - 200 OK (10ms)
398
+
399
+
400
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
401
+ Served asset /application.js - 200 OK (10ms)
402
+
403
+
404
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
405
+ Served asset /welcome.js - 200 OK (2ms)
406
+
407
+
408
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-28 11:03:37 +0200
409
+ Served asset /jquery_ujs.js - 200 OK (2ms)
410
+
411
+
412
+ Started GET "/welcome/protected" for 127.0.0.1 at 2015-05-28 11:03:49 +0200
413
+ Processing by WelcomeController#protected as HTML
414
+ Redirected to http://localhost:3000/auth/developer
415
+ Filter chain halted as :authenticate! rendered or redirected
416
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
417
+
418
+
419
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 11:03:49 +0200
420
+
421
+
422
+ Started POST "/auth/developer/callback" for 127.0.0.1 at 2015-05-28 11:04:14 +0200
423
+ Processing by SessionController#create as HTML
424
+ Parameters: {"name"=>"Christian Rohrer", "email"=>"christian.rohrer@switch.ch", "swiss_ep_uid"=>"92123123123@switch.ch", "provider"=>"developer"}
425
+ WARNING: Can't verify CSRF token authenticity
426
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '92123123123@switch.ch' LIMIT 1
427
+  (0.0ms) begin transaction
428
+ SQL (4.7ms) INSERT INTO "users" ("created_at", "uid", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 28 May 2015 09:04:14 UTC +00:00], ["uid", "92123123123@switch.ch"], ["updated_at", Thu, 28 May 2015 09:04:14 UTC +00:00]]
429
+  (0.9ms) commit transaction
430
+ Redirected to http://localhost:3000/
431
+ Completed 302 Found in 36ms (ActiveRecord: 6.6ms)
432
+
433
+
434
+ Started GET "/" for 127.0.0.1 at 2015-05-28 11:04:14 +0200
435
+ Processing by WelcomeController#index as HTML
436
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '92123123123@switch.ch' LIMIT 1
437
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
438
+ Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.1ms)
439
+
440
+
441
+ Started GET "/welcome/protected" for 127.0.0.1 at 2015-05-28 11:04:19 +0200
442
+ Processing by WelcomeController#protected as HTML
443
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '92123123123@switch.ch' LIMIT 1
444
+ Rendered welcome/protected.html.erb within layouts/application (0.5ms)
445
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
446
+
447
+
448
+ Started GET "/welcome/protected" for 127.0.0.1 at 2015-05-28 11:04:25 +0200
449
+ Processing by WelcomeController#protected as HTML
450
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '92123123123@switch.ch' LIMIT 1
451
+ Rendered welcome/protected.html.erb within layouts/application (0.2ms)
452
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms)
453
+
454
+
455
+ Started GET "/" for 127.0.0.1 at 2015-05-28 14:20:15 +0200
456
+ Connecting to database specified by database.yml
457
+ Processing by WelcomeController#index as HTML
458
+ Rendered welcome/index.html.erb within layouts/application (8.2ms)
459
+ Completed 500 Internal Server Error in 16.2ms
460
+
461
+ ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007fec8bdd4af8>:0x007fec8bdcf828>):
462
+ 1: <h1>Welcome#index</h1>
463
+ 2: <p><%= current_user.inspect %></p>
464
+ 3: <%= link_to "protected", welcome_protected_path()%>
465
+ app/views/welcome/index.html.erb:2:in `_app_views_welcome_index_html_erb__1110346019683616152_70326982871880'
466
+
467
+
468
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
469
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
470
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.7ms)
471
+
472
+
473
+ Started GET "/" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
474
+ Processing by WelcomeController#index as HTML
475
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
476
+ Completed 200 OK in 40.3ms (Views: 40.1ms | ActiveRecord: 0.0ms)
477
+
478
+
479
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
480
+ Served asset /application.css - 304 Not Modified (4ms)
481
+
482
+
483
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
484
+ Served asset /welcome.css - 304 Not Modified (1ms)
485
+
486
+
487
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
488
+ Served asset /jquery.js - 304 Not Modified (1ms)
489
+
490
+
491
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
492
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
493
+
494
+
495
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
496
+ Served asset /welcome.js - 304 Not Modified (1ms)
497
+
498
+
499
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-28 14:20:44 +0200
500
+ Served asset /application.js - 304 Not Modified (3ms)
501
+
502
+
503
+ Started GET "/welcome/protected" for 127.0.0.1 at 2015-05-28 14:20:46 +0200
504
+ Processing by WelcomeController#protected as HTML
505
+ Redirected to http://localhost:3000/auth/developer
506
+ Filter chain halted as :authenticate! rendered or redirected
507
+ Completed 302 Found in 0.5ms (ActiveRecord: 0.0ms)
508
+
509
+
510
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:20:46 +0200
511
+
512
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
513
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
514
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
515
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
516
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
517
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
518
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
519
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
520
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
521
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
522
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
523
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
524
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
525
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
526
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
527
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
528
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
529
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
530
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
531
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
532
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
533
+
534
+
535
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
536
+
537
+
538
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:21:35 +0200
539
+
540
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
541
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
542
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
543
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
544
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
545
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
546
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
547
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
548
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
549
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
550
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
551
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
552
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
553
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
554
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
555
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
556
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
557
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
558
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
559
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
560
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
561
+
562
+
563
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
564
+
565
+
566
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:21:37 +0200
567
+
568
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
569
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
570
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
571
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
572
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
573
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
574
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
575
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
576
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
577
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
578
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
579
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
580
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
581
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
582
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
583
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
584
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
585
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
586
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
587
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
588
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
589
+
590
+
591
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
592
+
593
+
594
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:21:42 +0200
595
+ Connecting to database specified by database.yml
596
+
597
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
598
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
599
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
600
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
601
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
602
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
603
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
604
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
605
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
606
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
607
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
608
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
609
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
610
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
611
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
612
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
613
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
614
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
615
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
616
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
617
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
618
+
619
+
620
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
621
+
622
+
623
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:21:44 +0200
624
+
625
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
626
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
627
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
628
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
629
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
630
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
631
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
632
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
633
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
634
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
635
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
636
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
637
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
638
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
639
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
640
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
641
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
642
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
643
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
644
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
645
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
646
+
647
+
648
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
649
+
650
+
651
+ Started GET "/" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
652
+ Processing by WelcomeController#index as HTML
653
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
654
+ Completed 200 OK in 13.9ms (Views: 13.7ms | ActiveRecord: 0.0ms)
655
+
656
+
657
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
658
+ Served asset /welcome.css - 304 Not Modified (3ms)
659
+
660
+
661
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
662
+ Served asset /application.css - 304 Not Modified (5ms)
663
+
664
+
665
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
666
+ Served asset /jquery.js - 304 Not Modified (1ms)
667
+
668
+
669
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
670
+ Served asset /welcome.js - 304 Not Modified (1ms)
671
+
672
+
673
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
674
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
675
+
676
+
677
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-28 14:21:47 +0200
678
+ Served asset /application.js - 304 Not Modified (3ms)
679
+
680
+
681
+ Started GET "/welcome/protected" for 127.0.0.1 at 2015-05-28 14:21:49 +0200
682
+ Processing by WelcomeController#protected as HTML
683
+ Redirected to http://localhost:3000/auth/developer
684
+ Filter chain halted as :authenticate! rendered or redirected
685
+ Completed 302 Found in 0.6ms (ActiveRecord: 0.0ms)
686
+
687
+
688
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:21:49 +0200
689
+
690
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
691
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
692
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
693
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
694
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
695
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
696
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
697
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
698
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
699
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
700
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
701
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
702
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
703
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
704
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
705
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
706
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
707
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
708
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
709
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
710
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
711
+
712
+
713
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
714
+
715
+
716
+ Started GET "/auth/developer" for 127.0.0.1 at 2015-05-28 14:55:21 +0200
717
+
718
+ ActionController::RoutingError (No route matches [GET] "/auth/developer"):
719
+ actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
720
+ actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
721
+ railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
722
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
723
+ activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
724
+ railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
725
+ actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
726
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
727
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
728
+ activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
729
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
730
+ actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
731
+ railties (3.2.21) lib/rails/engine.rb:484:in `call'
732
+ railties (3.2.21) lib/rails/application.rb:231:in `call'
733
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
734
+ railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
735
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
736
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
737
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
738
+ /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
739
+
740
+
741
+ Rendered /Users/rohrer/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)