mongo_session_store-rails5 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/install.log +768 -0
  3. data/.gitignore +10 -0
  4. data/.rspec +1 -0
  5. data/.travis.yml +21 -0
  6. data/Gemfile +67 -0
  7. data/README.md +133 -0
  8. data/Rakefile +93 -0
  9. data/lib/mongo_session_store-rails3.rb +1 -0
  10. data/lib/mongo_session_store-rails4.rb +1 -0
  11. data/lib/mongo_session_store-rails5.rb +1 -0
  12. data/lib/mongo_session_store.rb +49 -0
  13. data/lib/mongo_session_store/mongo_mapper_store.rb +22 -0
  14. data/lib/mongo_session_store/mongo_store.rb +83 -0
  15. data/lib/mongo_session_store/mongo_store_base.rb +98 -0
  16. data/lib/mongo_session_store/mongoid_store.rb +57 -0
  17. data/lib/mongo_session_store/version.rb +3 -0
  18. data/mongo_session_store-rails3.gemspec +18 -0
  19. data/mongo_session_store-rails4.gemspec +18 -0
  20. data/mongo_session_store-rails5.gemspec +20 -0
  21. data/perf/benchmark.rb +92 -0
  22. data/release.sh +6 -0
  23. data/spec/integration_with_devise_spec.rb +89 -0
  24. data/spec/mongo_store_base_spec.rb +42 -0
  25. data/spec/rails_3.1_app/.gitignore +5 -0
  26. data/spec/rails_3.1_app/README +261 -0
  27. data/spec/rails_3.1_app/Rakefile +7 -0
  28. data/spec/rails_3.1_app/app/assets/javascripts/application.js +7 -0
  29. data/spec/rails_3.1_app/app/assets/stylesheets/application.css +7 -0
  30. data/spec/rails_3.1_app/app/controllers/application_controller.rb +3 -0
  31. data/spec/rails_3.1_app/app/controllers/home_controller.rb +4 -0
  32. data/spec/rails_3.1_app/app/helpers/application_helper.rb +2 -0
  33. data/spec/rails_3.1_app/app/mailers/.gitkeep +0 -0
  34. data/spec/rails_3.1_app/app/models/.gitkeep +0 -0
  35. data/spec/rails_3.1_app/app/models/user.rb +6 -0
  36. data/spec/rails_3.1_app/app/views/devise/confirmations/new.html.erb +12 -0
  37. data/spec/rails_3.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  38. data/spec/rails_3.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  39. data/spec/rails_3.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  40. data/spec/rails_3.1_app/app/views/devise/passwords/edit.html.erb +16 -0
  41. data/spec/rails_3.1_app/app/views/devise/passwords/new.html.erb +12 -0
  42. data/spec/rails_3.1_app/app/views/devise/registrations/edit.html.erb +25 -0
  43. data/spec/rails_3.1_app/app/views/devise/registrations/new.html.erb +18 -0
  44. data/spec/rails_3.1_app/app/views/devise/sessions/new.html.erb +17 -0
  45. data/spec/rails_3.1_app/app/views/devise/shared/_links.erb +25 -0
  46. data/spec/rails_3.1_app/app/views/devise/unlocks/new.html.erb +12 -0
  47. data/spec/rails_3.1_app/app/views/home/index.html.erb +10 -0
  48. data/spec/rails_3.1_app/app/views/layouts/application.html.erb +15 -0
  49. data/spec/rails_3.1_app/config.ru +4 -0
  50. data/spec/rails_3.1_app/config/application.rb +47 -0
  51. data/spec/rails_3.1_app/config/boot.rb +6 -0
  52. data/spec/rails_3.1_app/config/database.yml +11 -0
  53. data/spec/rails_3.1_app/config/environment.rb +5 -0
  54. data/spec/rails_3.1_app/config/environments/development.rb +27 -0
  55. data/spec/rails_3.1_app/config/environments/production.rb +54 -0
  56. data/spec/rails_3.1_app/config/environments/test.rb +39 -0
  57. data/spec/rails_3.1_app/config/initializers/backtrace_silencers.rb +7 -0
  58. data/spec/rails_3.1_app/config/initializers/devise.rb +201 -0
  59. data/spec/rails_3.1_app/config/initializers/inflections.rb +10 -0
  60. data/spec/rails_3.1_app/config/initializers/mime_types.rb +5 -0
  61. data/spec/rails_3.1_app/config/initializers/secret_token.rb +7 -0
  62. data/spec/rails_3.1_app/config/initializers/session_store.rb +9 -0
  63. data/spec/rails_3.1_app/config/initializers/wrap_parameters.rb +12 -0
  64. data/spec/rails_3.1_app/config/locales/devise.en.yml +55 -0
  65. data/spec/rails_3.1_app/config/locales/en.yml +5 -0
  66. data/spec/rails_3.1_app/config/mongo.yml +18 -0
  67. data/spec/rails_3.1_app/config/mongoid.yml +13 -0
  68. data/spec/rails_3.1_app/config/routes.rb +4 -0
  69. data/spec/rails_3.1_app/db/migrate/20120222195914_create_users_table.rb +12 -0
  70. data/spec/rails_3.1_app/db/schema.rb +20 -0
  71. data/spec/rails_3.1_app/lib/tasks/.gitkeep +0 -0
  72. data/spec/rails_3.1_app/log/.gitkeep +0 -0
  73. data/spec/rails_3.1_app/public/404.html +26 -0
  74. data/spec/rails_3.1_app/public/422.html +26 -0
  75. data/spec/rails_3.1_app/public/500.html +26 -0
  76. data/spec/rails_3.1_app/public/favicon.ico +0 -0
  77. data/spec/rails_3.1_app/public/robots.txt +5 -0
  78. data/spec/rails_3.1_app/script/rails +6 -0
  79. data/spec/rails_3.1_app/vendor/assets/stylesheets/.gitkeep +0 -0
  80. data/spec/rails_3.1_app/vendor/plugins/.gitkeep +0 -0
  81. data/spec/rails_3.2_app/.gitignore +5 -0
  82. data/spec/rails_3.2_app/README +261 -0
  83. data/spec/rails_3.2_app/Rakefile +7 -0
  84. data/spec/rails_3.2_app/app/assets/javascripts/application.js +7 -0
  85. data/spec/rails_3.2_app/app/assets/stylesheets/application.css +7 -0
  86. data/spec/rails_3.2_app/app/controllers/application_controller.rb +3 -0
  87. data/spec/rails_3.2_app/app/controllers/home_controller.rb +4 -0
  88. data/spec/rails_3.2_app/app/helpers/application_helper.rb +2 -0
  89. data/spec/rails_3.2_app/app/mailers/.gitkeep +0 -0
  90. data/spec/rails_3.2_app/app/models/.gitkeep +0 -0
  91. data/spec/rails_3.2_app/app/models/user.rb +6 -0
  92. data/spec/rails_3.2_app/app/views/devise/confirmations/new.html.erb +12 -0
  93. data/spec/rails_3.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  94. data/spec/rails_3.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  95. data/spec/rails_3.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  96. data/spec/rails_3.2_app/app/views/devise/passwords/edit.html.erb +16 -0
  97. data/spec/rails_3.2_app/app/views/devise/passwords/new.html.erb +12 -0
  98. data/spec/rails_3.2_app/app/views/devise/registrations/edit.html.erb +25 -0
  99. data/spec/rails_3.2_app/app/views/devise/registrations/new.html.erb +18 -0
  100. data/spec/rails_3.2_app/app/views/devise/sessions/new.html.erb +17 -0
  101. data/spec/rails_3.2_app/app/views/devise/shared/_links.erb +25 -0
  102. data/spec/rails_3.2_app/app/views/devise/unlocks/new.html.erb +12 -0
  103. data/spec/rails_3.2_app/app/views/home/index.html.erb +10 -0
  104. data/spec/rails_3.2_app/app/views/layouts/application.html.erb +15 -0
  105. data/spec/rails_3.2_app/config.ru +4 -0
  106. data/spec/rails_3.2_app/config/application.rb +47 -0
  107. data/spec/rails_3.2_app/config/boot.rb +6 -0
  108. data/spec/rails_3.2_app/config/database.yml +11 -0
  109. data/spec/rails_3.2_app/config/environment.rb +5 -0
  110. data/spec/rails_3.2_app/config/environments/development.rb +27 -0
  111. data/spec/rails_3.2_app/config/environments/production.rb +54 -0
  112. data/spec/rails_3.2_app/config/environments/test.rb +39 -0
  113. data/spec/rails_3.2_app/config/initializers/backtrace_silencers.rb +7 -0
  114. data/spec/rails_3.2_app/config/initializers/devise.rb +203 -0
  115. data/spec/rails_3.2_app/config/initializers/inflections.rb +10 -0
  116. data/spec/rails_3.2_app/config/initializers/mime_types.rb +5 -0
  117. data/spec/rails_3.2_app/config/initializers/secret_token.rb +7 -0
  118. data/spec/rails_3.2_app/config/initializers/session_store.rb +9 -0
  119. data/spec/rails_3.2_app/config/initializers/wrap_parameters.rb +12 -0
  120. data/spec/rails_3.2_app/config/locales/devise.en.yml +55 -0
  121. data/spec/rails_3.2_app/config/locales/en.yml +5 -0
  122. data/spec/rails_3.2_app/config/mongo.yml +18 -0
  123. data/spec/rails_3.2_app/config/mongoid.yml +13 -0
  124. data/spec/rails_3.2_app/config/routes.rb +4 -0
  125. data/spec/rails_3.2_app/db/migrate/20120222195914_create_users_table.rb +12 -0
  126. data/spec/rails_3.2_app/db/schema.rb +20 -0
  127. data/spec/rails_3.2_app/lib/tasks/.gitkeep +0 -0
  128. data/spec/rails_3.2_app/log/.gitkeep +0 -0
  129. data/spec/rails_3.2_app/public/404.html +26 -0
  130. data/spec/rails_3.2_app/public/422.html +26 -0
  131. data/spec/rails_3.2_app/public/500.html +26 -0
  132. data/spec/rails_3.2_app/public/favicon.ico +0 -0
  133. data/spec/rails_3.2_app/public/robots.txt +5 -0
  134. data/spec/rails_3.2_app/script/rails +6 -0
  135. data/spec/rails_3.2_app/vendor/assets/stylesheets/.gitkeep +0 -0
  136. data/spec/rails_3.2_app/vendor/plugins/.gitkeep +0 -0
  137. data/spec/rails_4.0_app/.gitignore +16 -0
  138. data/spec/rails_4.0_app/Rakefile +6 -0
  139. data/spec/rails_4.0_app/app/assets/images/.keep +0 -0
  140. data/spec/rails_4.0_app/app/assets/javascripts/application.js +13 -0
  141. data/spec/rails_4.0_app/app/assets/stylesheets/application.css +13 -0
  142. data/spec/rails_4.0_app/app/controllers/application_controller.rb +5 -0
  143. data/spec/rails_4.0_app/app/controllers/concerns/.keep +0 -0
  144. data/spec/rails_4.0_app/app/controllers/home_controller.rb +4 -0
  145. data/spec/rails_4.0_app/app/helpers/application_helper.rb +2 -0
  146. data/spec/rails_4.0_app/app/mailers/.keep +0 -0
  147. data/spec/rails_4.0_app/app/models/.keep +0 -0
  148. data/spec/rails_4.0_app/app/models/concerns/.keep +0 -0
  149. data/spec/rails_4.0_app/app/models/user.rb +5 -0
  150. data/spec/rails_4.0_app/app/views/devise/confirmations/new.html.erb +12 -0
  151. data/spec/rails_4.0_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  152. data/spec/rails_4.0_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  153. data/spec/rails_4.0_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  154. data/spec/rails_4.0_app/app/views/devise/passwords/edit.html.erb +16 -0
  155. data/spec/rails_4.0_app/app/views/devise/passwords/new.html.erb +12 -0
  156. data/spec/rails_4.0_app/app/views/devise/registrations/edit.html.erb +29 -0
  157. data/spec/rails_4.0_app/app/views/devise/registrations/new.html.erb +18 -0
  158. data/spec/rails_4.0_app/app/views/devise/sessions/new.html.erb +17 -0
  159. data/spec/rails_4.0_app/app/views/devise/shared/_links.erb +25 -0
  160. data/spec/rails_4.0_app/app/views/devise/unlocks/new.html.erb +12 -0
  161. data/spec/rails_4.0_app/app/views/home/index.html.erb +10 -0
  162. data/spec/rails_4.0_app/app/views/layouts/application.html.erb +17 -0
  163. data/spec/rails_4.0_app/bin/bundle +3 -0
  164. data/spec/rails_4.0_app/bin/rails +4 -0
  165. data/spec/rails_4.0_app/bin/rake +4 -0
  166. data/spec/rails_4.0_app/config.ru +4 -0
  167. data/spec/rails_4.0_app/config/application.rb +26 -0
  168. data/spec/rails_4.0_app/config/boot.rb +4 -0
  169. data/spec/rails_4.0_app/config/database.yml +11 -0
  170. data/spec/rails_4.0_app/config/environment.rb +5 -0
  171. data/spec/rails_4.0_app/config/environments/development.rb +29 -0
  172. data/spec/rails_4.0_app/config/environments/production.rb +80 -0
  173. data/spec/rails_4.0_app/config/environments/test.rb +36 -0
  174. data/spec/rails_4.0_app/config/initializers/backtrace_silencers.rb +7 -0
  175. data/spec/rails_4.0_app/config/initializers/devise.rb +254 -0
  176. data/spec/rails_4.0_app/config/initializers/filter_parameter_logging.rb +4 -0
  177. data/spec/rails_4.0_app/config/initializers/inflections.rb +16 -0
  178. data/spec/rails_4.0_app/config/initializers/mime_types.rb +5 -0
  179. data/spec/rails_4.0_app/config/initializers/secret_token.rb +12 -0
  180. data/spec/rails_4.0_app/config/initializers/session_store.rb +5 -0
  181. data/spec/rails_4.0_app/config/initializers/wrap_parameters.rb +14 -0
  182. data/spec/rails_4.0_app/config/locales/devise.en.yml +59 -0
  183. data/spec/rails_4.0_app/config/locales/en.yml +23 -0
  184. data/spec/rails_4.0_app/config/mongo.yml +11 -0
  185. data/spec/rails_4.0_app/config/mongoid.yml +13 -0
  186. data/spec/rails_4.0_app/config/routes.rb +4 -0
  187. data/spec/rails_4.0_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  188. data/spec/rails_4.0_app/db/schema.rb +25 -0
  189. data/spec/rails_4.0_app/db/seeds.rb +7 -0
  190. data/spec/rails_4.0_app/lib/assets/.keep +0 -0
  191. data/spec/rails_4.0_app/lib/tasks/.keep +0 -0
  192. data/spec/rails_4.0_app/log/.keep +0 -0
  193. data/spec/rails_4.0_app/public/404.html +58 -0
  194. data/spec/rails_4.0_app/public/422.html +58 -0
  195. data/spec/rails_4.0_app/public/500.html +57 -0
  196. data/spec/rails_4.0_app/public/favicon.ico +0 -0
  197. data/spec/rails_4.0_app/public/robots.txt +5 -0
  198. data/spec/rails_4.1_app/.gitignore +16 -0
  199. data/spec/rails_4.1_app/Rakefile +6 -0
  200. data/spec/rails_4.1_app/app/assets/images/.keep +0 -0
  201. data/spec/rails_4.1_app/app/assets/javascripts/application.js +13 -0
  202. data/spec/rails_4.1_app/app/assets/stylesheets/application.css +15 -0
  203. data/spec/rails_4.1_app/app/controllers/application_controller.rb +5 -0
  204. data/spec/rails_4.1_app/app/controllers/concerns/.keep +0 -0
  205. data/spec/rails_4.1_app/app/controllers/home_controller.rb +4 -0
  206. data/spec/rails_4.1_app/app/helpers/application_helper.rb +2 -0
  207. data/spec/rails_4.1_app/app/mailers/.keep +0 -0
  208. data/spec/rails_4.1_app/app/models/.keep +0 -0
  209. data/spec/rails_4.1_app/app/models/concerns/.keep +0 -0
  210. data/spec/rails_4.1_app/app/models/user.rb +5 -0
  211. data/spec/rails_4.1_app/app/views/devise/confirmations/new.html.erb +12 -0
  212. data/spec/rails_4.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  213. data/spec/rails_4.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  214. data/spec/rails_4.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  215. data/spec/rails_4.1_app/app/views/devise/passwords/edit.html.erb +16 -0
  216. data/spec/rails_4.1_app/app/views/devise/passwords/new.html.erb +12 -0
  217. data/spec/rails_4.1_app/app/views/devise/registrations/edit.html.erb +29 -0
  218. data/spec/rails_4.1_app/app/views/devise/registrations/new.html.erb +18 -0
  219. data/spec/rails_4.1_app/app/views/devise/sessions/new.html.erb +17 -0
  220. data/spec/rails_4.1_app/app/views/devise/shared/_links.erb +25 -0
  221. data/spec/rails_4.1_app/app/views/devise/unlocks/new.html.erb +12 -0
  222. data/spec/rails_4.1_app/app/views/home/index.html.erb +10 -0
  223. data/spec/rails_4.1_app/app/views/layouts/application.html.erb +17 -0
  224. data/spec/rails_4.1_app/bin/bundle +3 -0
  225. data/spec/rails_4.1_app/bin/rails +8 -0
  226. data/spec/rails_4.1_app/bin/rake +8 -0
  227. data/spec/rails_4.1_app/bin/spring +18 -0
  228. data/spec/rails_4.1_app/config.ru +4 -0
  229. data/spec/rails_4.1_app/config/application.rb +23 -0
  230. data/spec/rails_4.1_app/config/boot.rb +4 -0
  231. data/spec/rails_4.1_app/config/database.yml +11 -0
  232. data/spec/rails_4.1_app/config/environment.rb +5 -0
  233. data/spec/rails_4.1_app/config/environments/development.rb +37 -0
  234. data/spec/rails_4.1_app/config/environments/production.rb +83 -0
  235. data/spec/rails_4.1_app/config/environments/test.rb +39 -0
  236. data/spec/rails_4.1_app/config/initializers/backtrace_silencers.rb +7 -0
  237. data/spec/rails_4.1_app/config/initializers/cookies_serializer.rb +3 -0
  238. data/spec/rails_4.1_app/config/initializers/devise.rb +254 -0
  239. data/spec/rails_4.1_app/config/initializers/filter_parameter_logging.rb +4 -0
  240. data/spec/rails_4.1_app/config/initializers/inflections.rb +16 -0
  241. data/spec/rails_4.1_app/config/initializers/mime_types.rb +5 -0
  242. data/spec/rails_4.1_app/config/initializers/session_store.rb +5 -0
  243. data/spec/rails_4.1_app/config/initializers/wrap_parameters.rb +14 -0
  244. data/spec/rails_4.1_app/config/locales/devise.en.yml +59 -0
  245. data/spec/rails_4.1_app/config/locales/en.yml +23 -0
  246. data/spec/rails_4.1_app/config/mongo.yml +11 -0
  247. data/spec/rails_4.1_app/config/mongoid.yml +13 -0
  248. data/spec/rails_4.1_app/config/routes.rb +4 -0
  249. data/spec/rails_4.1_app/config/secrets.yml +22 -0
  250. data/spec/rails_4.1_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  251. data/spec/rails_4.1_app/db/schema.rb +25 -0
  252. data/spec/rails_4.1_app/db/seeds.rb +7 -0
  253. data/spec/rails_4.1_app/lib/assets/.keep +0 -0
  254. data/spec/rails_4.1_app/lib/tasks/.keep +0 -0
  255. data/spec/rails_4.1_app/log/.keep +0 -0
  256. data/spec/rails_4.1_app/public/404.html +67 -0
  257. data/spec/rails_4.1_app/public/422.html +67 -0
  258. data/spec/rails_4.1_app/public/500.html +66 -0
  259. data/spec/rails_4.1_app/public/favicon.ico +0 -0
  260. data/spec/rails_4.1_app/public/robots.txt +5 -0
  261. data/spec/rails_4.2_app/.gitignore +17 -0
  262. data/spec/rails_4.2_app/Rakefile +6 -0
  263. data/spec/rails_4.2_app/app/assets/images/.keep +0 -0
  264. data/spec/rails_4.2_app/app/assets/javascripts/application.js +13 -0
  265. data/spec/rails_4.2_app/app/assets/stylesheets/application.css +15 -0
  266. data/spec/rails_4.2_app/app/controllers/application_controller.rb +5 -0
  267. data/spec/rails_4.2_app/app/controllers/concerns/.keep +0 -0
  268. data/spec/rails_4.2_app/app/controllers/home_controller.rb +4 -0
  269. data/spec/rails_4.2_app/app/helpers/application_helper.rb +2 -0
  270. data/spec/rails_4.2_app/app/mailers/.keep +0 -0
  271. data/spec/rails_4.2_app/app/models/.keep +0 -0
  272. data/spec/rails_4.2_app/app/models/concerns/.keep +0 -0
  273. data/spec/rails_4.2_app/app/models/user.rb +5 -0
  274. data/spec/rails_4.2_app/app/views/devise/confirmations/new.html.erb +12 -0
  275. data/spec/rails_4.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  276. data/spec/rails_4.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  277. data/spec/rails_4.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  278. data/spec/rails_4.2_app/app/views/devise/passwords/edit.html.erb +16 -0
  279. data/spec/rails_4.2_app/app/views/devise/passwords/new.html.erb +12 -0
  280. data/spec/rails_4.2_app/app/views/devise/registrations/edit.html.erb +29 -0
  281. data/spec/rails_4.2_app/app/views/devise/registrations/new.html.erb +18 -0
  282. data/spec/rails_4.2_app/app/views/devise/sessions/new.html.erb +17 -0
  283. data/spec/rails_4.2_app/app/views/devise/shared/_links.erb +25 -0
  284. data/spec/rails_4.2_app/app/views/devise/unlocks/new.html.erb +12 -0
  285. data/spec/rails_4.2_app/app/views/home/index.html.erb +10 -0
  286. data/spec/rails_4.2_app/app/views/layouts/application.html.erb +17 -0
  287. data/spec/rails_4.2_app/bin/bundle +3 -0
  288. data/spec/rails_4.2_app/bin/rails +8 -0
  289. data/spec/rails_4.2_app/bin/rake +8 -0
  290. data/spec/rails_4.2_app/bin/setup +29 -0
  291. data/spec/rails_4.2_app/bin/spring +15 -0
  292. data/spec/rails_4.2_app/config.ru +4 -0
  293. data/spec/rails_4.2_app/config/application.rb +26 -0
  294. data/spec/rails_4.2_app/config/boot.rb +3 -0
  295. data/spec/rails_4.2_app/config/database.yml +11 -0
  296. data/spec/rails_4.2_app/config/environment.rb +5 -0
  297. data/spec/rails_4.2_app/config/environments/development.rb +41 -0
  298. data/spec/rails_4.2_app/config/environments/production.rb +79 -0
  299. data/spec/rails_4.2_app/config/environments/test.rb +42 -0
  300. data/spec/rails_4.2_app/config/initializers/assets.rb +11 -0
  301. data/spec/rails_4.2_app/config/initializers/backtrace_silencers.rb +7 -0
  302. data/spec/rails_4.2_app/config/initializers/cookies_serializer.rb +3 -0
  303. data/spec/rails_4.2_app/config/initializers/devise.rb +254 -0
  304. data/spec/rails_4.2_app/config/initializers/filter_parameter_logging.rb +4 -0
  305. data/spec/rails_4.2_app/config/initializers/inflections.rb +16 -0
  306. data/spec/rails_4.2_app/config/initializers/mime_types.rb +4 -0
  307. data/spec/rails_4.2_app/config/initializers/session_store.rb +5 -0
  308. data/spec/rails_4.2_app/config/initializers/wrap_parameters.rb +14 -0
  309. data/spec/rails_4.2_app/config/locales/en.yml +23 -0
  310. data/spec/rails_4.2_app/config/mongo.yml +11 -0
  311. data/spec/rails_4.2_app/config/mongoid.yml +13 -0
  312. data/spec/rails_4.2_app/config/routes.rb +4 -0
  313. data/spec/rails_4.2_app/config/secrets.yml +22 -0
  314. data/spec/rails_4.2_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  315. data/spec/rails_4.2_app/db/schema.rb +25 -0
  316. data/spec/rails_4.2_app/db/seeds.rb +7 -0
  317. data/spec/rails_4.2_app/lib/assets/.keep +0 -0
  318. data/spec/rails_4.2_app/lib/tasks/.keep +0 -0
  319. data/spec/rails_4.2_app/log/.keep +0 -0
  320. data/spec/rails_4.2_app/public/404.html +67 -0
  321. data/spec/rails_4.2_app/public/422.html +67 -0
  322. data/spec/rails_4.2_app/public/500.html +66 -0
  323. data/spec/rails_4.2_app/public/favicon.ico +0 -0
  324. data/spec/rails_4.2_app/public/robots.txt +5 -0
  325. data/spec/rails_helper.rb +47 -0
  326. data/spec/spec_helper.rb +5 -0
  327. metadata +409 -0
@@ -0,0 +1,11 @@
1
+ defaults: &defaults
2
+ host: 127.0.0.1
3
+ port: 27017
4
+
5
+ development:
6
+ <<: *defaults
7
+ database: rails41_app_development
8
+
9
+ test:
10
+ <<: *defaults
11
+ database: rails41_app_test
@@ -0,0 +1,13 @@
1
+ development:
2
+ sessions:
3
+ default:
4
+ database: rails41_app_development
5
+ hosts:
6
+ - localhost:27017
7
+
8
+ test:
9
+ sessions:
10
+ default:
11
+ database: rails41_app_test
12
+ hosts:
13
+ - localhost:27017
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ devise_for :users
3
+ root :to => "home#index"
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: a8ef04e888ee54014dfb4f32ca538e987f1c160db5ee225b2e863b82664d356be5746975fd059da6b0c00215ce1c597bceeacb119093c94be461161181975a76
15
+
16
+ test:
17
+ secret_key_base: f777f8cc4e8ca43ff30bae1dcdb77088467cff65759fc4298c5e6644ad0d9cf22f8128b3eabde1ea8ef37724d8bdab38088e4d11f6a7389cf0d0f7db3cb1f719
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,11 @@
1
+ class AddDeviseUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table(:users) do |t|
4
+ t.string :email, :null => false, :default => ""
5
+ t.string :encrypted_password, :null => false, :default => ""
6
+ t.timestamps
7
+ end
8
+
9
+ add_index :users, :email, :unique => true
10
+ end
11
+ end
@@ -0,0 +1,25 @@
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: 20140301171212) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "email", default: "", null: false
18
+ t.string "encrypted_password", default: "", null: false
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ add_index "users", ["email"], name: "index_users_on_email", unique: true
24
+
25
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,17 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ !/log/.keep
17
+ /tmp
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
File without changes
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
File without changes
@@ -0,0 +1,4 @@
1
+ class HomeController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,5 @@
1
+ class User < ActiveRecord::Base
2
+ # Include default devise modules. Others available are:
3
+ # :confirmable, :lockable, :timeoutable and :omniauthable
4
+ devise :database_authenticatable, :registerable
5
+ end
@@ -0,0 +1,12 @@
1
+ <h2>Resend confirmation instructions</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email, :autofocus => true %></div>
8
+
9
+ <div><%= f.submit "Resend confirmation instructions" %></div>
10
+ <% end %>
11
+
12
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,5 @@
1
+ <p>Welcome <%= @email %>!</p>
2
+
3
+ <p>You can confirm your account email through the link below:</p>
4
+
5
+ <p><%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @token) %></p>