mongo_session_store-rails4 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (258) 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 +16 -0
  6. data/Gemfile +54 -0
  7. data/README.md +124 -0
  8. data/Rakefile +77 -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.rb +49 -0
  12. data/lib/mongo_session_store/mongo_mapper_store.rb +22 -0
  13. data/lib/mongo_session_store/mongo_store.rb +78 -0
  14. data/lib/mongo_session_store/mongo_store_base.rb +77 -0
  15. data/lib/mongo_session_store/mongoid_store.rb +53 -0
  16. data/lib/mongo_session_store/version.rb +3 -0
  17. data/mongo_session_store-rails3.gemspec +17 -0
  18. data/mongo_session_store-rails4.gemspec +17 -0
  19. data/perf/benchmark.rb +92 -0
  20. data/spec/integration_with_devise_spec.rb +89 -0
  21. data/spec/rails_3.1_app/.gitignore +5 -0
  22. data/spec/rails_3.1_app/README +261 -0
  23. data/spec/rails_3.1_app/Rakefile +7 -0
  24. data/spec/rails_3.1_app/app/assets/javascripts/application.js +7 -0
  25. data/spec/rails_3.1_app/app/assets/stylesheets/application.css +7 -0
  26. data/spec/rails_3.1_app/app/controllers/application_controller.rb +3 -0
  27. data/spec/rails_3.1_app/app/controllers/home_controller.rb +4 -0
  28. data/spec/rails_3.1_app/app/helpers/application_helper.rb +2 -0
  29. data/spec/rails_3.1_app/app/mailers/.gitkeep +0 -0
  30. data/spec/rails_3.1_app/app/models/.gitkeep +0 -0
  31. data/spec/rails_3.1_app/app/models/user.rb +6 -0
  32. data/spec/rails_3.1_app/app/views/devise/confirmations/new.html.erb +12 -0
  33. data/spec/rails_3.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  34. data/spec/rails_3.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  35. data/spec/rails_3.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  36. data/spec/rails_3.1_app/app/views/devise/passwords/edit.html.erb +16 -0
  37. data/spec/rails_3.1_app/app/views/devise/passwords/new.html.erb +12 -0
  38. data/spec/rails_3.1_app/app/views/devise/registrations/edit.html.erb +25 -0
  39. data/spec/rails_3.1_app/app/views/devise/registrations/new.html.erb +18 -0
  40. data/spec/rails_3.1_app/app/views/devise/sessions/new.html.erb +17 -0
  41. data/spec/rails_3.1_app/app/views/devise/shared/_links.erb +25 -0
  42. data/spec/rails_3.1_app/app/views/devise/unlocks/new.html.erb +12 -0
  43. data/spec/rails_3.1_app/app/views/home/index.html.erb +10 -0
  44. data/spec/rails_3.1_app/app/views/layouts/application.html.erb +15 -0
  45. data/spec/rails_3.1_app/config.ru +4 -0
  46. data/spec/rails_3.1_app/config/application.rb +47 -0
  47. data/spec/rails_3.1_app/config/boot.rb +6 -0
  48. data/spec/rails_3.1_app/config/database.yml +11 -0
  49. data/spec/rails_3.1_app/config/environment.rb +5 -0
  50. data/spec/rails_3.1_app/config/environments/development.rb +27 -0
  51. data/spec/rails_3.1_app/config/environments/production.rb +54 -0
  52. data/spec/rails_3.1_app/config/environments/test.rb +39 -0
  53. data/spec/rails_3.1_app/config/initializers/backtrace_silencers.rb +7 -0
  54. data/spec/rails_3.1_app/config/initializers/devise.rb +201 -0
  55. data/spec/rails_3.1_app/config/initializers/inflections.rb +10 -0
  56. data/spec/rails_3.1_app/config/initializers/mime_types.rb +5 -0
  57. data/spec/rails_3.1_app/config/initializers/secret_token.rb +7 -0
  58. data/spec/rails_3.1_app/config/initializers/session_store.rb +9 -0
  59. data/spec/rails_3.1_app/config/initializers/wrap_parameters.rb +12 -0
  60. data/spec/rails_3.1_app/config/locales/devise.en.yml +55 -0
  61. data/spec/rails_3.1_app/config/locales/en.yml +5 -0
  62. data/spec/rails_3.1_app/config/mongo.yml +18 -0
  63. data/spec/rails_3.1_app/config/mongoid.yml +13 -0
  64. data/spec/rails_3.1_app/config/routes.rb +4 -0
  65. data/spec/rails_3.1_app/db/migrate/20120222195914_create_users_table.rb +12 -0
  66. data/spec/rails_3.1_app/db/schema.rb +20 -0
  67. data/spec/rails_3.1_app/lib/tasks/.gitkeep +0 -0
  68. data/spec/rails_3.1_app/log/.gitkeep +0 -0
  69. data/spec/rails_3.1_app/public/404.html +26 -0
  70. data/spec/rails_3.1_app/public/422.html +26 -0
  71. data/spec/rails_3.1_app/public/500.html +26 -0
  72. data/spec/rails_3.1_app/public/favicon.ico +0 -0
  73. data/spec/rails_3.1_app/public/robots.txt +5 -0
  74. data/spec/rails_3.1_app/script/rails +6 -0
  75. data/spec/rails_3.1_app/vendor/assets/stylesheets/.gitkeep +0 -0
  76. data/spec/rails_3.1_app/vendor/plugins/.gitkeep +0 -0
  77. data/spec/rails_3.2_app/.gitignore +5 -0
  78. data/spec/rails_3.2_app/README +261 -0
  79. data/spec/rails_3.2_app/Rakefile +7 -0
  80. data/spec/rails_3.2_app/app/assets/javascripts/application.js +7 -0
  81. data/spec/rails_3.2_app/app/assets/stylesheets/application.css +7 -0
  82. data/spec/rails_3.2_app/app/controllers/application_controller.rb +3 -0
  83. data/spec/rails_3.2_app/app/controllers/home_controller.rb +4 -0
  84. data/spec/rails_3.2_app/app/helpers/application_helper.rb +2 -0
  85. data/spec/rails_3.2_app/app/mailers/.gitkeep +0 -0
  86. data/spec/rails_3.2_app/app/models/.gitkeep +0 -0
  87. data/spec/rails_3.2_app/app/models/user.rb +6 -0
  88. data/spec/rails_3.2_app/app/views/devise/confirmations/new.html.erb +12 -0
  89. data/spec/rails_3.2_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  90. data/spec/rails_3.2_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  91. data/spec/rails_3.2_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  92. data/spec/rails_3.2_app/app/views/devise/passwords/edit.html.erb +16 -0
  93. data/spec/rails_3.2_app/app/views/devise/passwords/new.html.erb +12 -0
  94. data/spec/rails_3.2_app/app/views/devise/registrations/edit.html.erb +25 -0
  95. data/spec/rails_3.2_app/app/views/devise/registrations/new.html.erb +18 -0
  96. data/spec/rails_3.2_app/app/views/devise/sessions/new.html.erb +17 -0
  97. data/spec/rails_3.2_app/app/views/devise/shared/_links.erb +25 -0
  98. data/spec/rails_3.2_app/app/views/devise/unlocks/new.html.erb +12 -0
  99. data/spec/rails_3.2_app/app/views/home/index.html.erb +10 -0
  100. data/spec/rails_3.2_app/app/views/layouts/application.html.erb +15 -0
  101. data/spec/rails_3.2_app/config.ru +4 -0
  102. data/spec/rails_3.2_app/config/application.rb +47 -0
  103. data/spec/rails_3.2_app/config/boot.rb +6 -0
  104. data/spec/rails_3.2_app/config/database.yml +11 -0
  105. data/spec/rails_3.2_app/config/environment.rb +5 -0
  106. data/spec/rails_3.2_app/config/environments/development.rb +27 -0
  107. data/spec/rails_3.2_app/config/environments/production.rb +54 -0
  108. data/spec/rails_3.2_app/config/environments/test.rb +39 -0
  109. data/spec/rails_3.2_app/config/initializers/backtrace_silencers.rb +7 -0
  110. data/spec/rails_3.2_app/config/initializers/devise.rb +203 -0
  111. data/spec/rails_3.2_app/config/initializers/inflections.rb +10 -0
  112. data/spec/rails_3.2_app/config/initializers/mime_types.rb +5 -0
  113. data/spec/rails_3.2_app/config/initializers/secret_token.rb +7 -0
  114. data/spec/rails_3.2_app/config/initializers/session_store.rb +9 -0
  115. data/spec/rails_3.2_app/config/initializers/wrap_parameters.rb +12 -0
  116. data/spec/rails_3.2_app/config/locales/devise.en.yml +55 -0
  117. data/spec/rails_3.2_app/config/locales/en.yml +5 -0
  118. data/spec/rails_3.2_app/config/mongo.yml +18 -0
  119. data/spec/rails_3.2_app/config/mongoid.yml +13 -0
  120. data/spec/rails_3.2_app/config/routes.rb +4 -0
  121. data/spec/rails_3.2_app/db/migrate/20120222195914_create_users_table.rb +12 -0
  122. data/spec/rails_3.2_app/db/schema.rb +20 -0
  123. data/spec/rails_3.2_app/lib/tasks/.gitkeep +0 -0
  124. data/spec/rails_3.2_app/log/.gitkeep +0 -0
  125. data/spec/rails_3.2_app/public/404.html +26 -0
  126. data/spec/rails_3.2_app/public/422.html +26 -0
  127. data/spec/rails_3.2_app/public/500.html +26 -0
  128. data/spec/rails_3.2_app/public/favicon.ico +0 -0
  129. data/spec/rails_3.2_app/public/robots.txt +5 -0
  130. data/spec/rails_3.2_app/script/rails +6 -0
  131. data/spec/rails_3.2_app/vendor/assets/stylesheets/.gitkeep +0 -0
  132. data/spec/rails_3.2_app/vendor/plugins/.gitkeep +0 -0
  133. data/spec/rails_4.0_app/.gitignore +16 -0
  134. data/spec/rails_4.0_app/Rakefile +6 -0
  135. data/spec/rails_4.0_app/app/assets/images/.keep +0 -0
  136. data/spec/rails_4.0_app/app/assets/javascripts/application.js +13 -0
  137. data/spec/rails_4.0_app/app/assets/stylesheets/application.css +13 -0
  138. data/spec/rails_4.0_app/app/controllers/application_controller.rb +5 -0
  139. data/spec/rails_4.0_app/app/controllers/concerns/.keep +0 -0
  140. data/spec/rails_4.0_app/app/controllers/home_controller.rb +4 -0
  141. data/spec/rails_4.0_app/app/helpers/application_helper.rb +2 -0
  142. data/spec/rails_4.0_app/app/mailers/.keep +0 -0
  143. data/spec/rails_4.0_app/app/models/.keep +0 -0
  144. data/spec/rails_4.0_app/app/models/concerns/.keep +0 -0
  145. data/spec/rails_4.0_app/app/models/user.rb +5 -0
  146. data/spec/rails_4.0_app/app/views/devise/confirmations/new.html.erb +12 -0
  147. data/spec/rails_4.0_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  148. data/spec/rails_4.0_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  149. data/spec/rails_4.0_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  150. data/spec/rails_4.0_app/app/views/devise/passwords/edit.html.erb +16 -0
  151. data/spec/rails_4.0_app/app/views/devise/passwords/new.html.erb +12 -0
  152. data/spec/rails_4.0_app/app/views/devise/registrations/edit.html.erb +29 -0
  153. data/spec/rails_4.0_app/app/views/devise/registrations/new.html.erb +18 -0
  154. data/spec/rails_4.0_app/app/views/devise/sessions/new.html.erb +17 -0
  155. data/spec/rails_4.0_app/app/views/devise/shared/_links.erb +25 -0
  156. data/spec/rails_4.0_app/app/views/devise/unlocks/new.html.erb +12 -0
  157. data/spec/rails_4.0_app/app/views/home/index.html.erb +10 -0
  158. data/spec/rails_4.0_app/app/views/layouts/application.html.erb +17 -0
  159. data/spec/rails_4.0_app/bin/bundle +3 -0
  160. data/spec/rails_4.0_app/bin/rails +4 -0
  161. data/spec/rails_4.0_app/bin/rake +4 -0
  162. data/spec/rails_4.0_app/config.ru +4 -0
  163. data/spec/rails_4.0_app/config/application.rb +26 -0
  164. data/spec/rails_4.0_app/config/boot.rb +4 -0
  165. data/spec/rails_4.0_app/config/database.yml +11 -0
  166. data/spec/rails_4.0_app/config/environment.rb +5 -0
  167. data/spec/rails_4.0_app/config/environments/development.rb +29 -0
  168. data/spec/rails_4.0_app/config/environments/production.rb +80 -0
  169. data/spec/rails_4.0_app/config/environments/test.rb +36 -0
  170. data/spec/rails_4.0_app/config/initializers/backtrace_silencers.rb +7 -0
  171. data/spec/rails_4.0_app/config/initializers/devise.rb +254 -0
  172. data/spec/rails_4.0_app/config/initializers/filter_parameter_logging.rb +4 -0
  173. data/spec/rails_4.0_app/config/initializers/inflections.rb +16 -0
  174. data/spec/rails_4.0_app/config/initializers/mime_types.rb +5 -0
  175. data/spec/rails_4.0_app/config/initializers/secret_token.rb +12 -0
  176. data/spec/rails_4.0_app/config/initializers/session_store.rb +5 -0
  177. data/spec/rails_4.0_app/config/initializers/wrap_parameters.rb +14 -0
  178. data/spec/rails_4.0_app/config/locales/devise.en.yml +59 -0
  179. data/spec/rails_4.0_app/config/locales/en.yml +23 -0
  180. data/spec/rails_4.0_app/config/mongo.yml +11 -0
  181. data/spec/rails_4.0_app/config/mongoid.yml +13 -0
  182. data/spec/rails_4.0_app/config/routes.rb +4 -0
  183. data/spec/rails_4.0_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  184. data/spec/rails_4.0_app/db/schema.rb +25 -0
  185. data/spec/rails_4.0_app/db/seeds.rb +7 -0
  186. data/spec/rails_4.0_app/lib/assets/.keep +0 -0
  187. data/spec/rails_4.0_app/lib/tasks/.keep +0 -0
  188. data/spec/rails_4.0_app/log/.keep +0 -0
  189. data/spec/rails_4.0_app/public/404.html +58 -0
  190. data/spec/rails_4.0_app/public/422.html +58 -0
  191. data/spec/rails_4.0_app/public/500.html +57 -0
  192. data/spec/rails_4.0_app/public/favicon.ico +0 -0
  193. data/spec/rails_4.0_app/public/robots.txt +5 -0
  194. data/spec/rails_4.1_app/.gitignore +16 -0
  195. data/spec/rails_4.1_app/Rakefile +6 -0
  196. data/spec/rails_4.1_app/app/assets/images/.keep +0 -0
  197. data/spec/rails_4.1_app/app/assets/javascripts/application.js +13 -0
  198. data/spec/rails_4.1_app/app/assets/stylesheets/application.css +15 -0
  199. data/spec/rails_4.1_app/app/controllers/application_controller.rb +5 -0
  200. data/spec/rails_4.1_app/app/controllers/concerns/.keep +0 -0
  201. data/spec/rails_4.1_app/app/controllers/home_controller.rb +4 -0
  202. data/spec/rails_4.1_app/app/helpers/application_helper.rb +2 -0
  203. data/spec/rails_4.1_app/app/mailers/.keep +0 -0
  204. data/spec/rails_4.1_app/app/models/.keep +0 -0
  205. data/spec/rails_4.1_app/app/models/concerns/.keep +0 -0
  206. data/spec/rails_4.1_app/app/models/user.rb +5 -0
  207. data/spec/rails_4.1_app/app/views/devise/confirmations/new.html.erb +12 -0
  208. data/spec/rails_4.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  209. data/spec/rails_4.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  210. data/spec/rails_4.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  211. data/spec/rails_4.1_app/app/views/devise/passwords/edit.html.erb +16 -0
  212. data/spec/rails_4.1_app/app/views/devise/passwords/new.html.erb +12 -0
  213. data/spec/rails_4.1_app/app/views/devise/registrations/edit.html.erb +29 -0
  214. data/spec/rails_4.1_app/app/views/devise/registrations/new.html.erb +18 -0
  215. data/spec/rails_4.1_app/app/views/devise/sessions/new.html.erb +17 -0
  216. data/spec/rails_4.1_app/app/views/devise/shared/_links.erb +25 -0
  217. data/spec/rails_4.1_app/app/views/devise/unlocks/new.html.erb +12 -0
  218. data/spec/rails_4.1_app/app/views/home/index.html.erb +10 -0
  219. data/spec/rails_4.1_app/app/views/layouts/application.html.erb +17 -0
  220. data/spec/rails_4.1_app/bin/bundle +3 -0
  221. data/spec/rails_4.1_app/bin/rails +8 -0
  222. data/spec/rails_4.1_app/bin/rake +8 -0
  223. data/spec/rails_4.1_app/bin/spring +18 -0
  224. data/spec/rails_4.1_app/config.ru +4 -0
  225. data/spec/rails_4.1_app/config/application.rb +23 -0
  226. data/spec/rails_4.1_app/config/boot.rb +4 -0
  227. data/spec/rails_4.1_app/config/database.yml +11 -0
  228. data/spec/rails_4.1_app/config/environment.rb +5 -0
  229. data/spec/rails_4.1_app/config/environments/development.rb +37 -0
  230. data/spec/rails_4.1_app/config/environments/production.rb +83 -0
  231. data/spec/rails_4.1_app/config/environments/test.rb +39 -0
  232. data/spec/rails_4.1_app/config/initializers/backtrace_silencers.rb +7 -0
  233. data/spec/rails_4.1_app/config/initializers/cookies_serializer.rb +3 -0
  234. data/spec/rails_4.1_app/config/initializers/devise.rb +254 -0
  235. data/spec/rails_4.1_app/config/initializers/filter_parameter_logging.rb +4 -0
  236. data/spec/rails_4.1_app/config/initializers/inflections.rb +16 -0
  237. data/spec/rails_4.1_app/config/initializers/mime_types.rb +5 -0
  238. data/spec/rails_4.1_app/config/initializers/session_store.rb +5 -0
  239. data/spec/rails_4.1_app/config/initializers/wrap_parameters.rb +14 -0
  240. data/spec/rails_4.1_app/config/locales/devise.en.yml +59 -0
  241. data/spec/rails_4.1_app/config/locales/en.yml +23 -0
  242. data/spec/rails_4.1_app/config/mongo.yml +11 -0
  243. data/spec/rails_4.1_app/config/mongoid.yml +13 -0
  244. data/spec/rails_4.1_app/config/routes.rb +4 -0
  245. data/spec/rails_4.1_app/config/secrets.yml +22 -0
  246. data/spec/rails_4.1_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  247. data/spec/rails_4.1_app/db/schema.rb +25 -0
  248. data/spec/rails_4.1_app/db/seeds.rb +7 -0
  249. data/spec/rails_4.1_app/lib/assets/.keep +0 -0
  250. data/spec/rails_4.1_app/lib/tasks/.keep +0 -0
  251. data/spec/rails_4.1_app/log/.keep +0 -0
  252. data/spec/rails_4.1_app/public/404.html +67 -0
  253. data/spec/rails_4.1_app/public/422.html +67 -0
  254. data/spec/rails_4.1_app/public/500.html +66 -0
  255. data/spec/rails_4.1_app/public/favicon.ico +0 -0
  256. data/spec/rails_4.1_app/public/robots.txt +5 -0
  257. data/spec/spec_helper.rb +52 -0
  258. metadata +556 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,201 @@
1
+ # Use this hook to configure devise mailer, warden hooks and so forth. The first
2
+ # four configuration values can also be set straight in your models.
3
+ Devise.setup do |config|
4
+
5
+ # ==> Mailer Configuration
6
+ # Configure the e-mail address which will be shown in DeviseMailer.
7
+ config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
8
+
9
+ # Configure the class responsible to send e-mails.
10
+ # config.mailer = "Devise::Mailer"
11
+
12
+ # ==> ORM configuration
13
+ # Load and configure the ORM. Supports :active_record (default) and
14
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
15
+ # available as additional gems.
16
+ require "devise/orm/active_record"
17
+
18
+ # ==> Configuration for any authentication mechanism
19
+ # Configure which keys are used when authenticating a user. The default is
20
+ # just :email. You can configure it to use [:username, :subdomain], so for
21
+ # authenticating a user, both parameters are required. Remember that those
22
+ # parameters are used only when authenticating and not when retrieving from
23
+ # session. If you need permissions, you should implement that in a before filter.
24
+ # You can also supply a hash where the value is a boolean determining whether
25
+ # or not authentication should be aborted when the value is not present.
26
+ # config.authentication_keys = [ :email ]
27
+
28
+ # Configure parameters from the request object used for authentication. Each entry
29
+ # given should be a request method and it will automatically be passed to the
30
+ # find_for_authentication method and considered in your model lookup. For instance,
31
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
32
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
33
+ # config.request_keys = []
34
+
35
+ # Configure which authentication keys should be case-insensitive.
36
+ # These keys will be downcased upon creating or modifying a user and when used
37
+ # to authenticate or find a user. Default is :email.
38
+ config.case_insensitive_keys = [ :email ]
39
+
40
+ # Configure which authentication keys should have whitespace stripped.
41
+ # These keys will have whitespace before and after removed upon creating or
42
+ # modifying a user and when used to authenticate or find a user. Default is :email.
43
+ config.strip_whitespace_keys = [ :email ]
44
+
45
+ # Tell if authentication through request.params is enabled. True by default.
46
+ # config.params_authenticatable = true
47
+
48
+ # Tell if authentication through HTTP Basic Auth is enabled. False by default.
49
+ # config.http_authenticatable = false
50
+
51
+ # If http headers should be returned for AJAX requests. True by default.
52
+ # config.http_authenticatable_on_xhr = true
53
+
54
+ # The realm used in Http Basic Authentication. "Application" by default.
55
+ # config.http_authentication_realm = "Application"
56
+
57
+ # It will change confirmation, password recovery and other workflows
58
+ # to behave the same regardless if the e-mail provided was right or wrong.
59
+ # Does not affect registerable.
60
+ # config.paranoid = true
61
+
62
+ # ==> Configuration for :database_authenticatable
63
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
64
+ # using other encryptors, it sets how many times you want the password re-encrypted.
65
+ config.stretches = 1
66
+
67
+ # Setup a pepper to generate the encrypted password.
68
+ # config.pepper = "2519fad7de5a8216e8dc829cee5b48263621510d2d8c28ca0c1208fc013418b8754d0e32e939af16f10ccb20f837c8945bb5d78725c2c66e793fa4342f64cf29"
69
+
70
+ # ==> Configuration for :confirmable
71
+ # The time you want to give your user to confirm his account. During this time
72
+ # he will be able to access your application without confirming. Default is 0.days
73
+ # When confirm_within is zero, the user won't be able to sign in without confirming.
74
+ # You can use this to let your user access some features of your application
75
+ # without confirming the account, but blocking it after a certain period
76
+ # (ie 2 days).
77
+ # config.confirm_within = 2.days
78
+
79
+ # Defines which key will be used when confirming an account
80
+ # config.confirmation_keys = [ :email ]
81
+
82
+ # ==> Configuration for :rememberable
83
+ # The time the user will be remembered without asking for credentials again.
84
+ # config.remember_for = 2.weeks
85
+
86
+ # If true, a valid remember token can be re-used between multiple browsers.
87
+ # config.remember_across_browsers = true
88
+
89
+ # If true, extends the user's remember period when remembered via cookie.
90
+ # config.extend_remember_period = false
91
+
92
+ # Options to be passed to the created cookie. For instance, you can set
93
+ # :secure => true in order to force SSL only cookies.
94
+ # config.cookie_options = {}
95
+
96
+ # ==> Configuration for :validatable
97
+ # Range for password length. Default is 6..128.
98
+ # config.password_length = 6..128
99
+
100
+ # Regex to use to validate the email address
101
+ # config.email_regexp = /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
102
+
103
+ # ==> Configuration for :timeoutable
104
+ # The time you want to timeout the user session without activity. After this
105
+ # time the user will be asked for credentials again. Default is 30 minutes.
106
+ # config.timeout_in = 30.minutes
107
+
108
+ # ==> Configuration for :lockable
109
+ # Defines which strategy will be used to lock an account.
110
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
111
+ # :none = No lock strategy. You should handle locking by yourself.
112
+ # config.lock_strategy = :failed_attempts
113
+
114
+ # Defines which key will be used when locking and unlocking an account
115
+ # config.unlock_keys = [ :email ]
116
+
117
+ # Defines which strategy will be used to unlock an account.
118
+ # :email = Sends an unlock link to the user email
119
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
120
+ # :both = Enables both strategies
121
+ # :none = No unlock strategy. You should handle unlocking by yourself.
122
+ # config.unlock_strategy = :both
123
+
124
+ # Number of authentication tries before locking an account if lock_strategy
125
+ # is failed attempts.
126
+ # config.maximum_attempts = 20
127
+
128
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
129
+ # config.unlock_in = 1.hour
130
+
131
+ # ==> Configuration for :recoverable
132
+ #
133
+ # Defines which key will be used when recovering the password for an account
134
+ # config.reset_password_keys = [ :email ]
135
+
136
+ # Time interval you can reset your password with a reset password key.
137
+ # Don't put a too small interval or your users won't have the time to
138
+ # change their passwords.
139
+ config.reset_password_within = 2.hours
140
+
141
+ # ==> Configuration for :encryptable
142
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
143
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
144
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
145
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
146
+ # REST_AUTH_SITE_KEY to pepper)
147
+ # config.encryptor = :sha512
148
+
149
+ # ==> Configuration for :token_authenticatable
150
+ # Defines name of the authentication token params key
151
+ # config.token_authentication_key = :auth_token
152
+
153
+ # If true, authentication through token does not store user in session and needs
154
+ # to be supplied on each request. Useful if you are using the token as API token.
155
+ # config.stateless_token = false
156
+
157
+ # ==> Scopes configuration
158
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
159
+ # "users/sessions/new". It's turned off by default because it's slower if you
160
+ # are using only default views.
161
+ # config.scoped_views = false
162
+
163
+ # Configure the default scope given to Warden. By default it's the first
164
+ # devise role declared in your routes (usually :user).
165
+ # config.default_scope = :user
166
+
167
+ # Configure sign_out behavior.
168
+ # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
169
+ # The default is true, which means any logout action will sign out all active scopes.
170
+ # config.sign_out_all_scopes = true
171
+
172
+ # ==> Navigation configuration
173
+ # Lists the formats that should be treated as navigational. Formats like
174
+ # :html, should redirect to the sign in page when the user does not have
175
+ # access, but formats like :xml or :json, should return 401.
176
+ #
177
+ # If you have any extra navigational formats, like :iphone or :mobile, you
178
+ # should add them to the navigational formats lists.
179
+ #
180
+ # The :"*/*" and "*/*" formats below is required to match Internet
181
+ # Explorer requests.
182
+ # config.navigational_formats = [:"*/*", "*/*", :html]
183
+
184
+ # The default HTTP method used to sign out a resource. Default is :delete.
185
+ config.sign_out_via = :delete
186
+
187
+ # ==> OmniAuth
188
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
189
+ # up on your models and hooks.
190
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
191
+
192
+ # ==> Warden configuration
193
+ # If you want to use other strategies, that are not supported by Devise, or
194
+ # change the failure app, you can configure them inside the config.warden block.
195
+ #
196
+ # config.warden do |manager|
197
+ # manager.failure_app = AnotherApp
198
+ # manager.intercept_401 = false
199
+ # manager.default_strategies(:scope => :user).unshift :some_external_strategy
200
+ # end
201
+ end
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Rails31App::Application.config.secret_token = '8e4d927033255ebff9a7b712eed68e65fb80196861bc31a3ba5d814f6e5ad94d7be61ac535fc0f646a1fbe0f67a9ea6af0a8085fff0964936a066f144f9caf25'
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Rails31App::Application.config.session_store :cookie_store, :key => '_rails_3.1_app_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ MongoStore::Session.database = Mongo::Connection.new.db("rails31_app_#{Rails.env}") if ENV['MONGO_SESSION_STORE_ORM'] == "mongo"
9
+ Rails31App::Application.config.session_store :"#{ENV['MONGO_SESSION_STORE_ORM']}_store"
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActionController::Base.wrap_parameters :format => [:json]
8
+
9
+ # Disable root element in JSON by default.
10
+ # if defined?(ActiveRecord)
11
+ # ActiveRecord::Base.include_root_in_json = false
12
+ # end
@@ -0,0 +1,55 @@
1
+ # Additional translations at http://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ errors:
5
+ messages:
6
+ expired: "has expired, please request a new one"
7
+ not_found: "not found"
8
+ already_confirmed: "was already confirmed, please try signing in"
9
+ not_locked: "was not locked"
10
+ not_saved:
11
+ one: "1 error prohibited this %{resource} from being saved:"
12
+ other: "%{count} errors prohibited this %{resource} from being saved:"
13
+
14
+ devise:
15
+ failure:
16
+ already_authenticated: 'You are already signed in.'
17
+ unauthenticated: 'You need to sign in or sign up before continuing.'
18
+ unconfirmed: 'You have to confirm your account before continuing.'
19
+ locked: 'Your account is locked.'
20
+ invalid: 'Invalid email or password.'
21
+ invalid_token: 'Invalid authentication token.'
22
+ timeout: 'Your session expired, please sign in again to continue.'
23
+ inactive: 'Your account was not activated yet.'
24
+ sessions:
25
+ signed_in: 'Signed in successfully.'
26
+ signed_out: 'Signed out successfully.'
27
+ passwords:
28
+ send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
29
+ updated: 'Your password was changed successfully. You are now signed in.'
30
+ send_paranoid_instructions: "If your e-mail exists on our database, you will receive a password recovery link on your e-mail"
31
+ confirmations:
32
+ send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
33
+ send_paranoid_instructions: 'If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
34
+ confirmed: 'Your account was successfully confirmed. You are now signed in.'
35
+ registrations:
36
+ signed_up: 'Welcome! You have signed up successfully.'
37
+ signed_up_but_unconfirmed: 'A message with a confirmation link has been sent to your email address. Please open the link to activate your account.'
38
+ signed_up_but_inactive: 'You have signed up successfully. However, we could not sign you in because your account is not yet activated.'
39
+ signed_up_but_locked: 'You have signed up successfully. However, we could not sign you in because your account is locked.'
40
+ updated: 'You updated your account successfully.'
41
+ destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
42
+ unlocks:
43
+ send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
44
+ unlocked: 'Your account was successfully unlocked. You are now signed in.'
45
+ send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
46
+ omniauth_callbacks:
47
+ success: 'Successfully authorized from %{kind} account.'
48
+ failure: 'Could not authorize you from %{kind} because "%{reason}".'
49
+ mailer:
50
+ confirmation_instructions:
51
+ subject: 'Confirmation instructions'
52
+ reset_password_instructions:
53
+ subject: 'Reset password instructions'
54
+ unlock_instructions:
55
+ subject: 'Unlock Instructions'
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,18 @@
1
+ defaults: &defaults
2
+ host: 127.0.0.1
3
+ port: 27017
4
+
5
+ development:
6
+ <<: *defaults
7
+ database: rails31_app_development
8
+
9
+ test:
10
+ <<: *defaults
11
+ database: rails31_app_test
12
+
13
+ # set these environment variables on your prod server
14
+ production:
15
+ <<: *defaults
16
+ database: rails31_app
17
+ username: <%= ENV['MONGO_USERNAME'] %>
18
+ password: <%= ENV['MONGO_PASSWORD'] %>
@@ -0,0 +1,13 @@
1
+ development:
2
+ sessions:
3
+ default:
4
+ database: rails31_app_development
5
+ hosts:
6
+ - localhost:27017
7
+
8
+ test:
9
+ sessions:
10
+ default:
11
+ database: rails31_app_test
12
+ hosts:
13
+ - localhost:27017
@@ -0,0 +1,4 @@
1
+ Rails31App::Application.routes.draw do
2
+ devise_for :users
3
+ root :to => "home#index"
4
+ end
@@ -0,0 +1,12 @@
1
+ class CreateUsersTable < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :users do |t|
4
+ t.string :email, :null => false, :default => ""
5
+ t.string :encrypted_password, :null => false, :default => ""
6
+ end
7
+ end
8
+
9
+ def self.down
10
+ drop_table :users
11
+ end
12
+ end
@@ -0,0 +1,20 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20120222195914) do
14
+
15
+ create_table "users", :force => true do |t|
16
+ t.string "email", :default => "", :null => false
17
+ t.string "encrypted_password", :limit => 128, :default => "", :null => false
18
+ end
19
+
20
+ end
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>