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
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Rails31App::Application.load_tasks
@@ -0,0 +1,7 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require_tree .
@@ -0,0 +1,7 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require_tree .
7
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -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
@@ -0,0 +1,6 @@
1
+ class User < ActiveRecord::Base
2
+ # Include default devise modules. Others available are:
3
+ # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
4
+ devise :database_authenticatable, :registerable, :validatable
5
+ #:recoverable, :rememberable, :trackable, :validatable
6
+ 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
+ <p><%= f.label :email %><br />
7
+ <%= f.email_field :email %></p>
8
+
9
+ <p><%= f.submit "Resend confirmation instructions" %></p>
10
+ <% end %>
11
+
12
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,5 @@
1
+ <p>Welcome <%= @resource.email %>!</p>
2
+
3
+ <p>You can confirm your account through the link below:</p>
4
+
5
+ <p><%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
@@ -0,0 +1,8 @@
1
+ <p>Hello <%= @resource.email %>!</p>
2
+
3
+ <p>Someone has requested a link to change your password, and you can do this through the link below.</p>
4
+
5
+ <p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
6
+
7
+ <p>If you didn't request this, please ignore this email.</p>
8
+ <p>Your password won't change until you access the link above and create a new one.</p>
@@ -0,0 +1,7 @@
1
+ <p>Hello <%= @resource.email %>!</p>
2
+
3
+ <p>Your account has been locked due to an excessive amount of unsuccessful sign in attempts.</p>
4
+
5
+ <p>Click the link below to unlock your account:</p>
6
+
7
+ <p><%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
@@ -0,0 +1,16 @@
1
+ <h2>Change your password</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+ <%= f.hidden_field :reset_password_token %>
6
+
7
+ <p><%= f.label :password, "New password" %><br />
8
+ <%= f.password_field :password %></p>
9
+
10
+ <p><%= f.label :password_confirmation, "Confirm new password" %><br />
11
+ <%= f.password_field :password_confirmation %></p>
12
+
13
+ <p><%= f.submit "Change my password" %></p>
14
+ <% end %>
15
+
16
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,12 @@
1
+ <h2>Forgot your password?</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <p><%= f.label :email %><br />
7
+ <%= f.email_field :email %></p>
8
+
9
+ <p><%= f.submit "Send me reset password instructions" %></p>
10
+ <% end %>
11
+
12
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,25 @@
1
+ <h2>Edit <%= resource_name.to_s.humanize %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <p><%= f.label :email %><br />
7
+ <%= f.email_field :email %></p>
8
+
9
+ <p><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br />
10
+ <%= f.password_field :password %></p>
11
+
12
+ <p><%= f.label :password_confirmation %><br />
13
+ <%= f.password_field :password_confirmation %></p>
14
+
15
+ <p><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
16
+ <%= f.password_field :current_password %></p>
17
+
18
+ <p><%= f.submit "Update" %></p>
19
+ <% end %>
20
+
21
+ <h3>Cancel my account</h3>
22
+
23
+ <p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p>
24
+
25
+ <%= link_to "Back", :back %>
@@ -0,0 +1,18 @@
1
+ <h2>Sign up</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <p><%= f.label :email %><br />
7
+ <%= f.email_field :email %></p>
8
+
9
+ <p><%= f.label :password %><br />
10
+ <%= f.password_field :password %></p>
11
+
12
+ <p><%= f.label :password_confirmation %><br />
13
+ <%= f.password_field :password_confirmation %></p>
14
+
15
+ <p><%= f.submit "Sign up" %></p>
16
+ <% end %>
17
+
18
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,17 @@
1
+ <h2>Sign in</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
4
+ <p><%= f.label :email %><br />
5
+ <%= f.email_field :email %></p>
6
+
7
+ <p><%= f.label :password %><br />
8
+ <%= f.password_field :password %></p>
9
+
10
+ <% if devise_mapping.rememberable? -%>
11
+ <p><%= f.check_box :remember_me %> <%= f.label :remember_me %></p>
12
+ <% end -%>
13
+
14
+ <p><%= f.submit "Sign in" %></p>
15
+ <% end %>
16
+
17
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,25 @@
1
+ <%- if controller_name != 'sessions' %>
2
+ <%= link_to "Sign in", new_session_path(resource_name) %><br />
3
+ <% end -%>
4
+
5
+ <%- if devise_mapping.registerable? && controller_name != 'registrations' %>
6
+ <%= link_to "Sign up", new_registration_path(resource_name) %><br />
7
+ <% end -%>
8
+
9
+ <%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
10
+ <%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
11
+ <% end -%>
12
+
13
+ <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
14
+ <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %><br />
15
+ <% end -%>
16
+
17
+ <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
18
+ <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %><br />
19
+ <% end -%>
20
+
21
+ <%- if devise_mapping.omniauthable? %>
22
+ <%- resource_class.omniauth_providers.each do |provider| %>
23
+ <%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %><br />
24
+ <% end -%>
25
+ <% end -%>
@@ -0,0 +1,12 @@
1
+ <h2>Resend unlock instructions</h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <p><%= f.label :email %><br />
7
+ <%= f.email_field :email %></p>
8
+
9
+ <p><%= f.submit "Resend unlock instructions" %></p>
10
+ <% end %>
11
+
12
+ <%= render :partial => "devise/shared/links" %>
@@ -0,0 +1,10 @@
1
+ You are logged
2
+ <% if user_signed_in? %>
3
+ in as <%= current_user.email %>.
4
+ <form method="post" action="<%= destroy_user_session_path %>">
5
+ <input type="hidden" name="_method" value="delete" />
6
+ <input type="submit" value="Sign out" />
7
+ </form>
8
+ <% else %>
9
+ out. <%= link_to "Sign in", new_user_session_path %>
10
+ <% end %>
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Rails31App</title>
5
+ <%= csrf_meta_tags %>
6
+ </head>
7
+ <body>
8
+
9
+ <%= flash[:notice] %>
10
+ <%= flash[:alert] %>
11
+
12
+ <%= yield %>
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails31App::Application
@@ -0,0 +1,47 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "active_resource/railtie"
8
+ # require "rails/test_unit/railtie"
9
+
10
+ # If you have a Gemfile, require the gems listed there, including any gems
11
+ # you've limited to :test, :development, or :production.
12
+ Bundler.require(:default, :test) if defined?(Bundler)
13
+
14
+ module Rails31App
15
+ class Application < Rails::Application
16
+ # Settings in config/environments/* take precedence over those specified here.
17
+ # Application configuration should go into files in config/initializers
18
+ # -- all .rb files in that directory are automatically loaded.
19
+
20
+ # Custom directories with classes and modules you want to be autoloadable.
21
+ # config.autoload_paths += %W(#{config.root}/extras)
22
+
23
+ # Only load the plugins named here, in the order given (default is alphabetical).
24
+ # :all can be used as a placeholder for all plugins not explicitly named.
25
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
26
+
27
+ # Activate observers that should always be running.
28
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
29
+
30
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
31
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
32
+ # config.time_zone = 'Central Time (US & Canada)'
33
+
34
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
35
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
36
+ # config.i18n.default_locale = :de
37
+
38
+ # Configure the default encoding used in templates for Ruby 1.9.
39
+ config.encoding = "utf-8"
40
+
41
+ # Configure sensitive parameters which will be filtered from the log file.
42
+ config.filter_parameters += [:password]
43
+
44
+ # Enable the asset pipeline
45
+ config.assets.enabled = true
46
+ end
47
+ end
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5
+
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,11 @@
1
+ test:
2
+ adapter: <%= RUBY_PLATFORM == 'java' ? 'jdbcsqlite3' : 'sqlite3' %>
3
+ database: db/test.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ development:
8
+ adapter: <%= RUBY_PLATFORM == 'java' ? 'jdbcsqlite3' : 'sqlite3' %>
9
+ database: db/development.sqlite3
10
+ pool: 5
11
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Rails31App::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Rails31App::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+ end
@@ -0,0 +1,54 @@
1
+ Rails31App::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Specify the default JavaScript compressor
18
+ config.assets.js_compressor = :uglifier
19
+
20
+ # Specifies the header that your server uses for sending files
21
+ # (comment out if your front-end server doesn't support this)
22
+ config.action_dispatch.x_sendfile_header = "X-Sendfile" # Use 'X-Accel-Redirect' for nginx
23
+
24
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
25
+ # config.force_ssl = true
26
+
27
+ # See everything in the log (default is :info)
28
+ # config.log_level = :debug
29
+
30
+ # Use a different logger for distributed setups
31
+ # config.logger = SyslogLogger.new
32
+
33
+ # Use a different cache store in production
34
+ # config.cache_store = :mem_cache_store
35
+
36
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
37
+ # config.action_controller.asset_host = "http://assets.example.com"
38
+
39
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
40
+ # config.assets.precompile += %w( search.js )
41
+
42
+ # Disable delivery errors, bad email addresses will be ignored
43
+ # config.action_mailer.raise_delivery_errors = false
44
+
45
+ # Enable threaded mode
46
+ # config.threadsafe!
47
+
48
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
49
+ # the I18n.default_locale when a translation can not be found)
50
+ config.i18n.fallbacks = true
51
+
52
+ # Send deprecation notices to registered listeners
53
+ config.active_support.deprecation = :notify
54
+ end
@@ -0,0 +1,39 @@
1
+ Rails31App::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end