mongo_session_store-rails3 4.1.1 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/.bundle/install.log +768 -0
  3. data/.travis.yml +2 -3
  4. data/Gemfile +21 -18
  5. data/README.md +23 -41
  6. data/Rakefile +32 -21
  7. data/lib/mongo_session_store-rails3.rb +1 -50
  8. data/lib/mongo_session_store-rails4.rb +1 -0
  9. data/lib/mongo_session_store.rb +49 -0
  10. data/lib/mongo_session_store/mongo_store.rb +0 -4
  11. data/lib/mongo_session_store/mongoid_store.rb +29 -5
  12. data/lib/mongo_session_store/version.rb +1 -1
  13. data/mongo_session_store-rails3.gemspec +2 -2
  14. data/mongo_session_store-rails4.gemspec +17 -0
  15. data/spec/rails_3.1_app/config/initializers/devise.rb +1 -1
  16. data/spec/rails_3.2_app/config/initializers/devise.rb +3 -1
  17. data/spec/rails_4.0_app/.gitignore +16 -0
  18. data/spec/rails_4.0_app/Rakefile +6 -0
  19. data/spec/rails_4.0_app/app/assets/images/.keep +0 -0
  20. data/spec/rails_4.0_app/app/assets/javascripts/application.js +13 -0
  21. data/spec/rails_4.0_app/app/assets/stylesheets/application.css +13 -0
  22. data/spec/rails_4.0_app/app/controllers/application_controller.rb +5 -0
  23. data/spec/rails_4.0_app/app/controllers/concerns/.keep +0 -0
  24. data/spec/rails_4.0_app/app/controllers/home_controller.rb +4 -0
  25. data/spec/rails_4.0_app/app/helpers/application_helper.rb +2 -0
  26. data/spec/rails_4.0_app/app/mailers/.keep +0 -0
  27. data/spec/rails_4.0_app/app/models/.keep +0 -0
  28. data/spec/rails_4.0_app/app/models/concerns/.keep +0 -0
  29. data/spec/rails_4.0_app/app/models/user.rb +5 -0
  30. data/spec/rails_4.0_app/app/views/devise/confirmations/new.html.erb +12 -0
  31. data/spec/rails_4.0_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  32. data/spec/rails_4.0_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  33. data/spec/rails_4.0_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  34. data/spec/rails_4.0_app/app/views/devise/passwords/edit.html.erb +16 -0
  35. data/spec/rails_4.0_app/app/views/devise/passwords/new.html.erb +12 -0
  36. data/spec/rails_4.0_app/app/views/devise/registrations/edit.html.erb +29 -0
  37. data/spec/rails_4.0_app/app/views/devise/registrations/new.html.erb +18 -0
  38. data/spec/rails_4.0_app/app/views/devise/sessions/new.html.erb +17 -0
  39. data/spec/rails_4.0_app/app/views/devise/shared/_links.erb +25 -0
  40. data/spec/rails_4.0_app/app/views/devise/unlocks/new.html.erb +12 -0
  41. data/spec/rails_4.0_app/app/views/home/index.html.erb +10 -0
  42. data/spec/rails_4.0_app/app/views/layouts/application.html.erb +17 -0
  43. data/spec/rails_4.0_app/bin/bundle +3 -0
  44. data/spec/rails_4.0_app/bin/rails +4 -0
  45. data/spec/rails_4.0_app/bin/rake +4 -0
  46. data/spec/rails_4.0_app/config.ru +4 -0
  47. data/spec/rails_4.0_app/config/application.rb +26 -0
  48. data/spec/rails_4.0_app/config/boot.rb +4 -0
  49. data/spec/rails_4.0_app/config/database.yml +11 -0
  50. data/spec/rails_4.0_app/config/environment.rb +5 -0
  51. data/spec/rails_4.0_app/config/environments/development.rb +29 -0
  52. data/spec/rails_4.0_app/config/environments/production.rb +80 -0
  53. data/spec/rails_4.0_app/config/environments/test.rb +36 -0
  54. data/spec/rails_4.0_app/config/initializers/backtrace_silencers.rb +7 -0
  55. data/spec/rails_4.0_app/config/initializers/devise.rb +254 -0
  56. data/spec/rails_4.0_app/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/spec/rails_4.0_app/config/initializers/inflections.rb +16 -0
  58. data/spec/rails_4.0_app/config/initializers/mime_types.rb +5 -0
  59. data/spec/rails_4.0_app/config/initializers/secret_token.rb +12 -0
  60. data/spec/rails_4.0_app/config/initializers/session_store.rb +5 -0
  61. data/spec/rails_4.0_app/config/initializers/wrap_parameters.rb +14 -0
  62. data/spec/rails_4.0_app/config/locales/devise.en.yml +59 -0
  63. data/spec/rails_4.0_app/config/locales/en.yml +23 -0
  64. data/spec/rails_4.0_app/config/mongo.yml +11 -0
  65. data/spec/rails_4.0_app/config/mongoid.yml +13 -0
  66. data/spec/rails_4.0_app/config/routes.rb +4 -0
  67. data/spec/rails_4.0_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  68. data/spec/rails_4.0_app/db/schema.rb +25 -0
  69. data/spec/rails_4.0_app/db/seeds.rb +7 -0
  70. data/spec/rails_4.0_app/lib/assets/.keep +0 -0
  71. data/spec/rails_4.0_app/lib/tasks/.keep +0 -0
  72. data/spec/rails_4.0_app/log/.keep +0 -0
  73. data/spec/rails_4.0_app/public/404.html +58 -0
  74. data/spec/rails_4.0_app/public/422.html +58 -0
  75. data/spec/rails_4.0_app/public/500.html +57 -0
  76. data/spec/rails_4.0_app/public/favicon.ico +0 -0
  77. data/spec/rails_4.0_app/public/robots.txt +5 -0
  78. data/spec/rails_4.1_app/.gitignore +16 -0
  79. data/spec/rails_4.1_app/Rakefile +6 -0
  80. data/spec/rails_4.1_app/app/assets/images/.keep +0 -0
  81. data/spec/rails_4.1_app/app/assets/javascripts/application.js +13 -0
  82. data/spec/rails_4.1_app/app/assets/stylesheets/application.css +15 -0
  83. data/spec/rails_4.1_app/app/controllers/application_controller.rb +5 -0
  84. data/spec/rails_4.1_app/app/controllers/concerns/.keep +0 -0
  85. data/spec/rails_4.1_app/app/controllers/home_controller.rb +4 -0
  86. data/spec/rails_4.1_app/app/helpers/application_helper.rb +2 -0
  87. data/spec/rails_4.1_app/app/mailers/.keep +0 -0
  88. data/spec/rails_4.1_app/app/models/.keep +0 -0
  89. data/spec/rails_4.1_app/app/models/concerns/.keep +0 -0
  90. data/spec/rails_4.1_app/app/models/user.rb +5 -0
  91. data/spec/rails_4.1_app/app/views/devise/confirmations/new.html.erb +12 -0
  92. data/spec/rails_4.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  93. data/spec/rails_4.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  94. data/spec/rails_4.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  95. data/spec/rails_4.1_app/app/views/devise/passwords/edit.html.erb +16 -0
  96. data/spec/rails_4.1_app/app/views/devise/passwords/new.html.erb +12 -0
  97. data/spec/rails_4.1_app/app/views/devise/registrations/edit.html.erb +29 -0
  98. data/spec/rails_4.1_app/app/views/devise/registrations/new.html.erb +18 -0
  99. data/spec/rails_4.1_app/app/views/devise/sessions/new.html.erb +17 -0
  100. data/spec/rails_4.1_app/app/views/devise/shared/_links.erb +25 -0
  101. data/spec/rails_4.1_app/app/views/devise/unlocks/new.html.erb +12 -0
  102. data/spec/rails_4.1_app/app/views/home/index.html.erb +10 -0
  103. data/spec/rails_4.1_app/app/views/layouts/application.html.erb +17 -0
  104. data/spec/rails_4.1_app/bin/bundle +3 -0
  105. data/spec/rails_4.1_app/bin/rails +8 -0
  106. data/spec/rails_4.1_app/bin/rake +8 -0
  107. data/spec/rails_4.1_app/bin/spring +18 -0
  108. data/spec/rails_4.1_app/config.ru +4 -0
  109. data/spec/rails_4.1_app/config/application.rb +23 -0
  110. data/spec/rails_4.1_app/config/boot.rb +4 -0
  111. data/spec/rails_4.1_app/config/database.yml +11 -0
  112. data/spec/rails_4.1_app/config/environment.rb +5 -0
  113. data/spec/rails_4.1_app/config/environments/development.rb +37 -0
  114. data/spec/rails_4.1_app/config/environments/production.rb +83 -0
  115. data/spec/rails_4.1_app/config/environments/test.rb +39 -0
  116. data/spec/rails_4.1_app/config/initializers/backtrace_silencers.rb +7 -0
  117. data/spec/rails_4.1_app/config/initializers/cookies_serializer.rb +3 -0
  118. data/spec/rails_4.1_app/config/initializers/devise.rb +254 -0
  119. data/spec/rails_4.1_app/config/initializers/filter_parameter_logging.rb +4 -0
  120. data/spec/rails_4.1_app/config/initializers/inflections.rb +16 -0
  121. data/spec/rails_4.1_app/config/initializers/mime_types.rb +5 -0
  122. data/spec/rails_4.1_app/config/initializers/session_store.rb +5 -0
  123. data/spec/rails_4.1_app/config/initializers/wrap_parameters.rb +14 -0
  124. data/spec/rails_4.1_app/config/locales/devise.en.yml +59 -0
  125. data/spec/rails_4.1_app/config/locales/en.yml +23 -0
  126. data/spec/rails_4.1_app/config/mongo.yml +11 -0
  127. data/spec/rails_4.1_app/config/mongoid.yml +13 -0
  128. data/spec/rails_4.1_app/config/routes.rb +4 -0
  129. data/spec/rails_4.1_app/config/secrets.yml +22 -0
  130. data/spec/rails_4.1_app/db/migrate/20140301171212_add_devise_users.rb +11 -0
  131. data/spec/rails_4.1_app/db/schema.rb +25 -0
  132. data/spec/rails_4.1_app/db/seeds.rb +7 -0
  133. data/spec/rails_4.1_app/lib/assets/.keep +0 -0
  134. data/spec/rails_4.1_app/lib/tasks/.keep +0 -0
  135. data/spec/rails_4.1_app/log/.keep +0 -0
  136. data/spec/rails_4.1_app/public/404.html +67 -0
  137. data/spec/rails_4.1_app/public/422.html +67 -0
  138. data/spec/rails_4.1_app/public/500.html +66 -0
  139. data/spec/rails_4.1_app/public/favicon.ico +0 -0
  140. data/spec/rails_4.1_app/public/robots.txt +5 -0
  141. metadata +264 -12
@@ -1,3 +1,3 @@
1
1
  module MongoSessionStore
2
- VERSION = "4.1.1"
2
+ VERSION = "5.0.0"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  require File.expand_path('../lib/mongo_session_store/version', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = "mongo_session_store-rails3"
4
+ s.name = File.basename(__FILE__).gsub(".gemspec", "")
5
5
  s.version = MongoSessionStore::VERSION
6
6
 
7
7
  s.authors = ["Brian Hempel", "Nicolas M\303\251rouze", "Tony Pitale", "Chris Brickley"]
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.homepage = "http://github.com/brianhempel/mongo_session_store"
12
12
  s.require_paths = ["lib"]
13
13
  s.rubygems_version = "1.3.7"
14
- s.summary = "Rails session stores for MongoMapper, Mongoid, or any other ODM. Rails 3.1 and 3.2 compatible."
14
+ s.summary = "Rails session stores for MongoMapper, Mongoid, or any other ODM. Rails 3.1, 3.2, 4.0, and 4.1 compatible."
15
15
 
16
16
  s.add_dependency "actionpack", ">= 3.1"
17
17
  end
@@ -0,0 +1,17 @@
1
+ require File.expand_path('../lib/mongo_session_store/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = File.basename(__FILE__).gsub(".gemspec", "")
5
+ s.version = MongoSessionStore::VERSION
6
+
7
+ s.authors = ["Brian Hempel", "Nicolas M\303\251rouze", "Tony Pitale", "Chris Brickley"]
8
+ s.email = ["plasticchicken@gmail.com"]
9
+ s.files = `git ls-files`.split("\n")
10
+ s.test_files = `git ls-files -- {test,spec,features,perf}/*`.split("\n")
11
+ s.homepage = "http://github.com/brianhempel/mongo_session_store"
12
+ s.require_paths = ["lib"]
13
+ s.rubygems_version = "1.3.7"
14
+ s.summary = "Rails session stores for MongoMapper, Mongoid, or any other ODM. Rails 3.1, 3.2, 4.0, and 4.1 compatible."
15
+
16
+ s.add_dependency "actionpack", ">= 3.1"
17
+ end
@@ -62,7 +62,7 @@ Devise.setup do |config|
62
62
  # ==> Configuration for :database_authenticatable
63
63
  # For bcrypt, this is the cost for hashing the password and defaults to 10. If
64
64
  # using other encryptors, it sets how many times you want the password re-encrypted.
65
- config.stretches = 10
65
+ config.stretches = 1
66
66
 
67
67
  # Setup a pepper to generate the encrypted password.
68
68
  # config.pepper = "2519fad7de5a8216e8dc829cee5b48263621510d2d8c28ca0c1208fc013418b8754d0e32e939af16f10ccb20f837c8945bb5d78725c2c66e793fa4342f64cf29"
@@ -2,6 +2,8 @@
2
2
  # four configuration values can also be set straight in your models.
3
3
  Devise.setup do |config|
4
4
 
5
+ config.secret_key = '8325d1c1e7e6ac4b97859ec8807aa14355045ea6a7b531d24a4c4559b3754d4b1125519e51ecce66e0eb6e7545b4a40dd3bb18383f2b6015d4d22fd9ea4109a3'
6
+
5
7
  # ==> Mailer Configuration
6
8
  # Configure the e-mail address which will be shown in DeviseMailer.
7
9
  config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
@@ -62,7 +64,7 @@ Devise.setup do |config|
62
64
  # ==> Configuration for :database_authenticatable
63
65
  # For bcrypt, this is the cost for hashing the password and defaults to 10. If
64
66
  # using other encryptors, it sets how many times you want the password re-encrypted.
65
- config.stretches = 10
67
+ config.stretches = 1
66
68
 
67
69
  # Setup a pepper to generate the encrypted password.
68
70
  # config.pepper = "2519fad7de5a8216e8dc829cee5b48263621510d2d8c28ca0c1208fc013418b8754d0e32e939af16f10ccb20f837c8945bb5d78725c2c66e793fa4342f64cf29"
@@ -0,0 +1,16 @@
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/*.log
16
+ /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
+ Rails40App::Application.load_tasks
@@ -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 vendor/assets/javascripts of plugins, if any, 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/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
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 vendor/assets/stylesheets of plugins, if any, 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 top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -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
@@ -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,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>
@@ -0,0 +1,8 @@
1
+ <p>Hello <%= @resource.email %>!</p>
2
+
3
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
4
+
5
+ <p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @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 number 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 => @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
+ <div><%= f.label :password, "New password" %><br />
8
+ <%= f.password_field :password, :autofocus => true %></div>
9
+
10
+ <div><%= f.label :password_confirmation, "Confirm new password" %><br />
11
+ <%= f.password_field :password_confirmation %></div>
12
+
13
+ <div><%= f.submit "Change my password" %></div>
14
+ <% end %>
15
+
16
+ <%= render "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
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email, :autofocus => true %></div>
8
+
9
+ <div><%= f.submit "Send me reset password instructions" %></div>
10
+ <% end %>
11
+
12
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,29 @@
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
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email, :autofocus => true %></div>
8
+
9
+ <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
10
+ <div>Currently waiting confirmation for: <%= resource.unconfirmed_email %></div>
11
+ <% end %>
12
+
13
+ <div><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br />
14
+ <%= f.password_field :password, :autocomplete => "off" %></div>
15
+
16
+ <div><%= f.label :password_confirmation %><br />
17
+ <%= f.password_field :password_confirmation %></div>
18
+
19
+ <div><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
20
+ <%= f.password_field :current_password %></div>
21
+
22
+ <div><%= f.submit "Update" %></div>
23
+ <% end %>
24
+
25
+ <h3>Cancel my account</h3>
26
+
27
+ <p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), :data => { :confirm => "Are you sure?" }, :method => :delete %></p>
28
+
29
+ <%= 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
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email, :autofocus => true %></div>
8
+
9
+ <div><%= f.label :password %><br />
10
+ <%= f.password_field :password %></div>
11
+
12
+ <div><%= f.label :password_confirmation %><br />
13
+ <%= f.password_field :password_confirmation %></div>
14
+
15
+ <div><%= f.submit "Sign up" %></div>
16
+ <% end %>
17
+
18
+ <%= render "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
+ <div><%= f.label :email %><br />
5
+ <%= f.email_field :email, :autofocus => true %></div>
6
+
7
+ <div><%= f.label :password %><br />
8
+ <%= f.password_field :password %></div>
9
+
10
+ <% if devise_mapping.rememberable? -%>
11
+ <div><%= f.check_box :remember_me %> <%= f.label :remember_me %></div>
12
+ <% end -%>
13
+
14
+ <div><%= f.submit "Sign in" %></div>
15
+ <% end %>
16
+
17
+ <%= render "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' && controller_name != 'registrations' %>
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
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email, :autofocus => true %></div>
8
+
9
+ <div><%= f.submit "Resend unlock instructions" %></div>
10
+ <% end %>
11
+
12
+ <%= render "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,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Rails40App</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= notice %>
12
+ <%= alert %>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -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 Rails.application
@@ -0,0 +1,26 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "active_record/railtie"
4
+ require "action_controller/railtie"
5
+ require "action_mailer/railtie"
6
+ require 'rails/all'
7
+
8
+ # Require the gems listed in Gemfile, including any gems
9
+ # you've limited to :test, :development, or :production.
10
+ Bundler.require(:default, Rails.env)
11
+
12
+ module Rails40App
13
+ class Application < Rails::Application
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration should go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded.
17
+
18
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
19
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
20
+ # config.time_zone = 'Central Time (US & Canada)'
21
+
22
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
23
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
24
+ # config.i18n.default_locale = :de
25
+ end
26
+ end
@@ -0,0 +1,4 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+
4
+ 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
+ Rails40App::Application.initialize!