devise 3.5.2 → 4.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +259 -1086
- data/MIT-LICENSE +1 -1
- data/README.md +254 -67
- data/app/controllers/devise/confirmations_controller.rb +3 -1
- data/app/controllers/devise/omniauth_callbacks_controller.rb +8 -6
- data/app/controllers/devise/passwords_controller.rb +8 -4
- data/app/controllers/devise/registrations_controller.rb +39 -18
- data/app/controllers/devise/sessions_controller.rb +9 -7
- data/app/controllers/devise/unlocks_controller.rb +4 -2
- data/app/controllers/devise_controller.rb +23 -10
- data/app/helpers/devise_helper.rb +12 -19
- data/app/mailers/devise/mailer.rb +10 -0
- data/app/views/devise/confirmations/new.html.erb +2 -2
- data/app/views/devise/mailer/email_changed.html.erb +7 -0
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/passwords/edit.html.erb +3 -3
- data/app/views/devise/passwords/new.html.erb +2 -2
- data/app/views/devise/registrations/edit.html.erb +9 -5
- data/app/views/devise/registrations/new.html.erb +4 -4
- data/app/views/devise/sessions/new.html.erb +4 -4
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +8 -8
- data/app/views/devise/unlocks/new.html.erb +2 -2
- data/config/locales/en.yml +6 -1
- data/lib/devise/controllers/helpers.rb +35 -26
- data/lib/devise/controllers/rememberable.rb +11 -2
- data/lib/devise/controllers/scoped_views.rb +2 -0
- data/lib/devise/controllers/sign_in_out.rb +34 -11
- data/lib/devise/controllers/store_location.rb +25 -7
- data/lib/devise/controllers/url_helpers.rb +2 -0
- data/lib/devise/delegator.rb +2 -0
- data/lib/devise/encryptor.rb +6 -4
- data/lib/devise/failure_app.rb +84 -32
- data/lib/devise/hooks/activatable.rb +2 -0
- data/lib/devise/hooks/csrf_cleaner.rb +2 -0
- data/lib/devise/hooks/forgetable.rb +2 -0
- data/lib/devise/hooks/lockable.rb +6 -1
- data/lib/devise/hooks/proxy.rb +3 -1
- data/lib/devise/hooks/rememberable.rb +2 -0
- data/lib/devise/hooks/timeoutable.rb +7 -3
- data/lib/devise/hooks/trackable.rb +2 -0
- data/lib/devise/mailers/helpers.rb +7 -4
- data/lib/devise/mapping.rb +2 -0
- data/lib/devise/models/authenticatable.rb +51 -26
- data/lib/devise/models/confirmable.rb +89 -27
- data/lib/devise/models/database_authenticatable.rb +97 -20
- data/lib/devise/models/lockable.rb +15 -5
- data/lib/devise/models/omniauthable.rb +2 -0
- data/lib/devise/models/recoverable.rb +32 -24
- data/lib/devise/models/registerable.rb +4 -0
- data/lib/devise/models/rememberable.rb +42 -26
- data/lib/devise/models/timeoutable.rb +2 -6
- data/lib/devise/models/trackable.rb +15 -1
- data/lib/devise/models/validatable.rb +10 -3
- data/lib/devise/models.rb +3 -1
- data/lib/devise/modules.rb +2 -0
- data/lib/devise/omniauth/config.rb +2 -0
- data/lib/devise/omniauth/url_helpers.rb +14 -5
- data/lib/devise/omniauth.rb +2 -0
- data/lib/devise/orm/active_record.rb +5 -1
- data/lib/devise/orm/mongoid.rb +6 -2
- data/lib/devise/parameter_filter.rb +4 -0
- data/lib/devise/parameter_sanitizer.rb +139 -65
- data/lib/devise/rails/routes.rb +59 -34
- data/lib/devise/rails/warden_compat.rb +3 -10
- data/lib/devise/rails.rb +7 -16
- data/lib/devise/secret_key_finder.rb +27 -0
- data/lib/devise/strategies/authenticatable.rb +4 -2
- data/lib/devise/strategies/base.rb +2 -0
- data/lib/devise/strategies/database_authenticatable.rb +11 -4
- data/lib/devise/strategies/rememberable.rb +5 -6
- data/lib/devise/test/controller_helpers.rb +165 -0
- data/lib/devise/test/integration_helpers.rb +63 -0
- data/lib/devise/test_helpers.rb +7 -124
- data/lib/devise/time_inflector.rb +2 -0
- data/lib/devise/token_generator.rb +3 -41
- data/lib/devise/version.rb +3 -1
- data/lib/devise.rb +72 -42
- data/lib/generators/active_record/devise_generator.rb +29 -10
- data/lib/generators/active_record/templates/migration.rb +4 -2
- data/lib/generators/active_record/templates/migration_existing.rb +4 -2
- data/lib/generators/devise/controllers_generator.rb +3 -1
- data/lib/generators/devise/devise_generator.rb +4 -2
- data/lib/generators/devise/install_generator.rb +17 -0
- data/lib/generators/devise/orm_helpers.rb +10 -21
- data/lib/generators/devise/views_generator.rb +21 -11
- data/lib/generators/mongoid/devise_generator.rb +7 -5
- data/lib/generators/templates/README +1 -8
- data/lib/generators/templates/controllers/confirmations_controller.rb +2 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +2 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +2 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +6 -4
- data/lib/generators/templates/controllers/sessions_controller.rb +4 -2
- data/lib/generators/templates/controllers/unlocks_controller.rb +2 -0
- data/lib/generators/templates/devise.rb +52 -19
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/email_changed.markerb +7 -0
- data/lib/generators/templates/markerb/password_change.markerb +3 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/unlock_instructions.markerb +1 -1
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +5 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +10 -2
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +4 -1
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +7 -2
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +4 -1
- metadata +27 -313
- data/.gitignore +0 -10
- data/.travis.yml +0 -45
- data/.yardopts +0 -9
- data/CONTRIBUTING.md +0 -14
- data/Gemfile +0 -29
- data/Gemfile.lock +0 -183
- data/Rakefile +0 -36
- data/devise.gemspec +0 -27
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-3.2-stable +0 -29
- data/gemfiles/Gemfile.rails-3.2-stable.lock +0 -169
- data/gemfiles/Gemfile.rails-4.0-stable +0 -29
- data/gemfiles/Gemfile.rails-4.0-stable.lock +0 -163
- data/gemfiles/Gemfile.rails-4.1-stable +0 -29
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -169
- data/gemfiles/Gemfile.rails-4.2-stable +0 -29
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -191
- data/script/cached-bundle +0 -49
- data/script/s3-put +0 -71
- data/test/controllers/custom_registrations_controller_test.rb +0 -40
- data/test/controllers/custom_strategy_test.rb +0 -62
- data/test/controllers/helpers_test.rb +0 -316
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -51
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -19
- data/test/controllers/passwords_controller_test.rb +0 -31
- data/test/controllers/sessions_controller_test.rb +0 -103
- data/test/controllers/url_helpers_test.rb +0 -65
- data/test/delegator_test.rb +0 -19
- data/test/devise_test.rb +0 -107
- data/test/failure_app_test.rb +0 -298
- data/test/generators/active_record_generator_test.rb +0 -109
- data/test/generators/controllers_generator_test.rb +0 -48
- data/test/generators/devise_generator_test.rb +0 -39
- data/test/generators/install_generator_test.rb +0 -13
- data/test/generators/mongoid_generator_test.rb +0 -23
- data/test/generators/views_generator_test.rb +0 -96
- data/test/helpers/devise_helper_test.rb +0 -49
- data/test/integration/authenticatable_test.rb +0 -729
- data/test/integration/confirmable_test.rb +0 -324
- data/test/integration/database_authenticatable_test.rb +0 -95
- data/test/integration/http_authenticatable_test.rb +0 -105
- data/test/integration/lockable_test.rb +0 -239
- data/test/integration/omniauthable_test.rb +0 -133
- data/test/integration/recoverable_test.rb +0 -347
- data/test/integration/registerable_test.rb +0 -359
- data/test/integration/rememberable_test.rb +0 -176
- data/test/integration/timeoutable_test.rb +0 -172
- data/test/integration/trackable_test.rb +0 -92
- data/test/mailers/confirmation_instructions_test.rb +0 -115
- data/test/mailers/reset_password_instructions_test.rb +0 -96
- data/test/mailers/unlock_instructions_test.rb +0 -91
- data/test/mapping_test.rb +0 -134
- data/test/models/authenticatable_test.rb +0 -23
- data/test/models/confirmable_test.rb +0 -479
- data/test/models/database_authenticatable_test.rb +0 -249
- data/test/models/lockable_test.rb +0 -328
- data/test/models/omniauthable_test.rb +0 -7
- data/test/models/recoverable_test.rb +0 -228
- data/test/models/registerable_test.rb +0 -7
- data/test/models/rememberable_test.rb +0 -204
- data/test/models/serializable_test.rb +0 -49
- data/test/models/timeoutable_test.rb +0 -51
- data/test/models/trackable_test.rb +0 -41
- data/test/models/validatable_test.rb +0 -127
- data/test/models_test.rb +0 -144
- data/test/omniauth/config_test.rb +0 -57
- data/test/omniauth/url_helpers_test.rb +0 -54
- data/test/orm/active_record.rb +0 -10
- data/test/orm/mongoid.rb +0 -13
- data/test/parameter_sanitizer_test.rb +0 -81
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -6
- data/test/rails_app/app/active_record/shim.rb +0 -2
- data/test/rails_app/app/active_record/user.rb +0 -6
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -7
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -7
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -6
- data/test/rails_app/app/controllers/admins_controller.rb +0 -6
- data/test/rails_app/app/controllers/application_controller.rb +0 -12
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -30
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -31
- data/test/rails_app/app/controllers/home_controller.rb +0 -25
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -2
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -2
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -14
- data/test/rails_app/app/controllers/users_controller.rb +0 -31
- data/test/rails_app/app/helpers/application_helper.rb +0 -3
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -3
- data/test/rails_app/app/mailers/users/mailer.rb +0 -3
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -4
- data/test/rails_app/app/mongoid/admin.rb +0 -29
- data/test/rails_app/app/mongoid/shim.rb +0 -23
- data/test/rails_app/app/mongoid/user.rb +0 -39
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -39
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -39
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config/application.rb +0 -40
- data/test/rails_app/config/boot.rb +0 -14
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -5
- data/test/rails_app/config/environments/development.rb +0 -30
- data/test/rails_app/config/environments/production.rb +0 -84
- data/test/rails_app/config/environments/test.rb +0 -41
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -7
- data/test/rails_app/config/initializers/devise.rb +0 -180
- data/test/rails_app/config/initializers/inflections.rb +0 -2
- data/test/rails_app/config/initializers/secret_token.rb +0 -8
- data/test/rails_app/config/initializers/session_store.rb +0 -1
- data/test/rails_app/config/routes.rb +0 -120
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -71
- data/test/rails_app/db/schema.rb +0 -55
- data/test/rails_app/lib/shared_admin.rb +0 -17
- data/test/rails_app/lib/shared_user.rb +0 -29
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -13
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_test.rb +0 -9
- data/test/routes_test.rb +0 -264
- data/test/support/action_controller/record_identifier.rb +0 -10
- data/test/support/assertions.rb +0 -39
- data/test/support/helpers.rb +0 -73
- data/test/support/integration.rb +0 -92
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -24
- data/test/test_helper.rb +0 -34
- data/test/test_helpers_test.rb +0 -178
- data/test/test_models.rb +0 -33
@@ -1,31 +0,0 @@
|
|
1
|
-
class UsersController < ApplicationController
|
2
|
-
prepend_before_filter :current_user, only: :exhibit
|
3
|
-
before_filter :authenticate_user!, except: [:accept, :exhibit]
|
4
|
-
respond_to :html, :xml
|
5
|
-
|
6
|
-
def index
|
7
|
-
user_session[:cart] = "Cart"
|
8
|
-
respond_with(current_user)
|
9
|
-
end
|
10
|
-
|
11
|
-
def edit_form
|
12
|
-
user_session['last_request_at'] = params.fetch(:last_request_at, 31.minutes.ago.utc)
|
13
|
-
end
|
14
|
-
|
15
|
-
def update_form
|
16
|
-
render text: 'Update'
|
17
|
-
end
|
18
|
-
|
19
|
-
def accept
|
20
|
-
@current_user = current_user
|
21
|
-
end
|
22
|
-
|
23
|
-
def exhibit
|
24
|
-
render text: current_user ? "User is authenticated" : "User is not authenticated"
|
25
|
-
end
|
26
|
-
|
27
|
-
def expire
|
28
|
-
user_session['last_request_at'] = 31.minutes.ago.utc
|
29
|
-
render text: 'User will be expired on next request'
|
30
|
-
end
|
31
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require 'shared_admin'
|
2
|
-
|
3
|
-
class Admin
|
4
|
-
include Mongoid::Document
|
5
|
-
include Shim
|
6
|
-
include SharedAdmin
|
7
|
-
|
8
|
-
## Database authenticatable
|
9
|
-
field :email, type: String
|
10
|
-
field :encrypted_password, type: String
|
11
|
-
|
12
|
-
## Recoverable
|
13
|
-
field :reset_password_token, type: String
|
14
|
-
field :reset_password_sent_at, type: Time
|
15
|
-
|
16
|
-
## Rememberable
|
17
|
-
field :remember_created_at, type: Time
|
18
|
-
|
19
|
-
## Confirmable
|
20
|
-
field :confirmation_token, type: String
|
21
|
-
field :confirmed_at, type: Time
|
22
|
-
field :confirmation_sent_at, type: Time
|
23
|
-
field :unconfirmed_email, type: String # Only if using reconfirmable
|
24
|
-
|
25
|
-
## Lockable
|
26
|
-
field :locked_at, type: Time
|
27
|
-
|
28
|
-
field :active, type: Boolean, default: false
|
29
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
module Shim
|
2
|
-
extend ::ActiveSupport::Concern
|
3
|
-
|
4
|
-
included do
|
5
|
-
include ::Mongoid::Timestamps
|
6
|
-
field :created_at, type: DateTime
|
7
|
-
end
|
8
|
-
|
9
|
-
module ClassMethods
|
10
|
-
def order(attribute)
|
11
|
-
asc(attribute)
|
12
|
-
end
|
13
|
-
|
14
|
-
def find_by_email(email)
|
15
|
-
find_by(email: email)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
# overwrite equality (because some devise tests use this for asserting model equality)
|
20
|
-
def ==(other)
|
21
|
-
other.is_a?(self.class) && _id == other._id
|
22
|
-
end
|
23
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'shared_user'
|
2
|
-
|
3
|
-
class User
|
4
|
-
include Mongoid::Document
|
5
|
-
include Shim
|
6
|
-
include SharedUser
|
7
|
-
|
8
|
-
field :username, type: String
|
9
|
-
field :facebook_token, type: String
|
10
|
-
|
11
|
-
## Database authenticatable
|
12
|
-
field :email, type: String, default: ""
|
13
|
-
field :encrypted_password, type: String, default: ""
|
14
|
-
|
15
|
-
## Recoverable
|
16
|
-
field :reset_password_token, type: String
|
17
|
-
field :reset_password_sent_at, type: Time
|
18
|
-
|
19
|
-
## Rememberable
|
20
|
-
field :remember_created_at, type: Time
|
21
|
-
|
22
|
-
## Trackable
|
23
|
-
field :sign_in_count, type: Integer, default: 0
|
24
|
-
field :current_sign_in_at, type: Time
|
25
|
-
field :last_sign_in_at, type: Time
|
26
|
-
field :current_sign_in_ip, type: String
|
27
|
-
field :last_sign_in_ip, type: String
|
28
|
-
|
29
|
-
## Confirmable
|
30
|
-
field :confirmation_token, type: String
|
31
|
-
field :confirmed_at, type: Time
|
32
|
-
field :confirmation_sent_at, type: Time
|
33
|
-
# field :unconfirmed_email, type: String # Only if using reconfirmable
|
34
|
-
|
35
|
-
## Lockable
|
36
|
-
field :failed_attempts, type: Integer, default: 0 # Only if lock strategy is :failed_attempts
|
37
|
-
field :unlock_token, type: String # Only if unlock strategy is :email or :both
|
38
|
-
field :locked_at, type: Time
|
39
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'shared_user_without_omniauth'
|
2
|
-
|
3
|
-
class UserOnEngine
|
4
|
-
include Mongoid::Document
|
5
|
-
include Shim
|
6
|
-
include SharedUserWithoutOmniauth
|
7
|
-
|
8
|
-
field :username, type: String
|
9
|
-
field :facebook_token, type: String
|
10
|
-
|
11
|
-
## Database authenticatable
|
12
|
-
field :email, type: String, default: ""
|
13
|
-
field :encrypted_password, type: String, default: ""
|
14
|
-
|
15
|
-
## Recoverable
|
16
|
-
field :reset_password_token, type: String
|
17
|
-
field :reset_password_sent_at, type: Time
|
18
|
-
|
19
|
-
## Rememberable
|
20
|
-
field :remember_created_at, type: Time
|
21
|
-
|
22
|
-
## Trackable
|
23
|
-
field :sign_in_count, type: Integer, default: 0
|
24
|
-
field :current_sign_in_at, type: Time
|
25
|
-
field :last_sign_in_at, type: Time
|
26
|
-
field :current_sign_in_ip, type: String
|
27
|
-
field :last_sign_in_ip, type: String
|
28
|
-
|
29
|
-
## Confirmable
|
30
|
-
field :confirmation_token, type: String
|
31
|
-
field :confirmed_at, type: Time
|
32
|
-
field :confirmation_sent_at, type: Time
|
33
|
-
# field :unconfirmed_email, type: String # Only if using reconfirmable
|
34
|
-
|
35
|
-
## Lockable
|
36
|
-
field :failed_attempts, type: Integer, default: 0 # Only if lock strategy is :failed_attempts
|
37
|
-
field :unlock_token, type: String # Only if unlock strategy is :email or :both
|
38
|
-
field :locked_at, type: Time
|
39
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'shared_user_without_omniauth'
|
2
|
-
|
3
|
-
class UserOnMainApp
|
4
|
-
include Mongoid::Document
|
5
|
-
include Shim
|
6
|
-
include SharedUserWithoutOmniauth
|
7
|
-
|
8
|
-
field :username, type: String
|
9
|
-
field :facebook_token, type: String
|
10
|
-
|
11
|
-
## Database authenticatable
|
12
|
-
field :email, type: String, default: ""
|
13
|
-
field :encrypted_password, type: String, default: ""
|
14
|
-
|
15
|
-
## Recoverable
|
16
|
-
field :reset_password_token, type: String
|
17
|
-
field :reset_password_sent_at, type: Time
|
18
|
-
|
19
|
-
## Rememberable
|
20
|
-
field :remember_created_at, type: Time
|
21
|
-
|
22
|
-
## Trackable
|
23
|
-
field :sign_in_count, type: Integer, default: 0
|
24
|
-
field :current_sign_in_at, type: Time
|
25
|
-
field :last_sign_in_at, type: Time
|
26
|
-
field :current_sign_in_ip, type: String
|
27
|
-
field :last_sign_in_ip, type: String
|
28
|
-
|
29
|
-
## Confirmable
|
30
|
-
field :confirmation_token, type: String
|
31
|
-
field :confirmed_at, type: Time
|
32
|
-
field :confirmation_sent_at, type: Time
|
33
|
-
# field :unconfirmed_email, type: String # Only if using reconfirmable
|
34
|
-
|
35
|
-
## Lockable
|
36
|
-
field :failed_attempts, type: Integer, default: 0 # Only if lock strategy is :failed_attempts
|
37
|
-
field :unlock_token, type: String # Only if unlock strategy is :email or :both
|
38
|
-
field :locked_at, type: Time
|
39
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
Welcome Admin!
|
@@ -1 +0,0 @@
|
|
1
|
-
Admin dashboard
|
@@ -1 +0,0 @@
|
|
1
|
-
Home!
|
@@ -1 +0,0 @@
|
|
1
|
-
Join
|
@@ -1 +0,0 @@
|
|
1
|
-
Private!
|
@@ -1 +0,0 @@
|
|
1
|
-
User dashboard
|
@@ -1,24 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<title>Devise Test App</title>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<div id="container">
|
9
|
-
<%- flash.each do |name, msg| -%>
|
10
|
-
<%= content_tag :div, msg, id: "flash_#{name}" %>
|
11
|
-
<%- end -%>
|
12
|
-
|
13
|
-
<% if user_signed_in? -%>
|
14
|
-
<p>Hello User <%= current_user.email %>! You are signed in!</p>
|
15
|
-
<% end -%>
|
16
|
-
|
17
|
-
<% if admin_signed_in? -%>
|
18
|
-
<p>Hello Admin <%= current_admin.email %>! You are signed in!</p>
|
19
|
-
<% end -%>
|
20
|
-
|
21
|
-
<%= yield %>
|
22
|
-
</div>
|
23
|
-
</body>
|
24
|
-
</html>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= button_to 'Update', update_form_user_path(current_user), method: 'put' %>
|
@@ -1 +0,0 @@
|
|
1
|
-
Welcome User #<%= current_user.id %>!
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= @resource.email %>
|
@@ -1 +0,0 @@
|
|
1
|
-
Special user view
|
data/test/rails_app/bin/bundle
DELETED
data/test/rails_app/bin/rails
DELETED
data/test/rails_app/bin/rake
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
require File.expand_path('../boot', __FILE__)
|
2
|
-
|
3
|
-
require "action_controller/railtie"
|
4
|
-
require "action_mailer/railtie"
|
5
|
-
require "rails/test_unit/railtie"
|
6
|
-
|
7
|
-
Bundler.require :default, DEVISE_ORM
|
8
|
-
|
9
|
-
begin
|
10
|
-
require "#{DEVISE_ORM}/railtie"
|
11
|
-
rescue LoadError
|
12
|
-
end
|
13
|
-
|
14
|
-
require "devise"
|
15
|
-
|
16
|
-
module RailsApp
|
17
|
-
class Application < Rails::Application
|
18
|
-
# Add additional load paths for your own custom dirs
|
19
|
-
config.autoload_paths.reject!{ |p| p =~ /\/app\/(\w+)$/ && !%w(controllers helpers mailers views).include?($1) }
|
20
|
-
config.autoload_paths += ["#{config.root}/app/#{DEVISE_ORM}"]
|
21
|
-
|
22
|
-
# Configure generators values. Many other options are available, be sure to check the documentation.
|
23
|
-
# config.generators do |g|
|
24
|
-
# g.orm :active_record
|
25
|
-
# g.template_engine :erb
|
26
|
-
# g.test_framework :test_unit, fixture: true
|
27
|
-
# end
|
28
|
-
|
29
|
-
# Configure sensitive parameters which will be filtered from the log file.
|
30
|
-
config.filter_parameters << :password
|
31
|
-
config.assets.enabled = false
|
32
|
-
|
33
|
-
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
34
|
-
|
35
|
-
# This was used to break devise in some situations
|
36
|
-
config.to_prepare do
|
37
|
-
Devise::SessionsController.layout "application"
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
unless defined?(DEVISE_ORM)
|
2
|
-
DEVISE_ORM = (ENV["DEVISE_ORM"] || :active_record).to_sym
|
3
|
-
end
|
4
|
-
|
5
|
-
module Devise
|
6
|
-
# Detection for minor differences between Rails 3.2 and 4 in tests.
|
7
|
-
def self.rails4?
|
8
|
-
Rails.version.start_with? '4'
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
# Set up gems listed in the Gemfile.
|
13
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
|
14
|
-
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# SQLite version 3.x
|
2
|
-
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
3
|
-
development:
|
4
|
-
adapter: sqlite3
|
5
|
-
database: db/development.sqlite3
|
6
|
-
pool: 5
|
7
|
-
timeout: 5000
|
8
|
-
|
9
|
-
# Warning: The database defined as "test" will be erased and
|
10
|
-
# re-generated from your development database when you run "rake".
|
11
|
-
# Do not set this db to the same as development or production.
|
12
|
-
test:
|
13
|
-
adapter: sqlite3
|
14
|
-
database: ":memory:"
|
15
|
-
|
16
|
-
production:
|
17
|
-
adapter: sqlite3
|
18
|
-
database: ":memory:"
|
@@ -1,30 +0,0 @@
|
|
1
|
-
RailsApp::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
|
-
# Do not eager load code on boot.
|
10
|
-
config.eager_load = false
|
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
|
-
# Raise an error on page load if there are pending migrations
|
26
|
-
config.active_record.migration_error = :page_load
|
27
|
-
|
28
|
-
# Debug mode disables concatenation and preprocessing of assets.
|
29
|
-
config.assets.debug = true
|
30
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
RailsApp::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
|
-
# Eager load code on boot. This eager loads most of Rails and
|
8
|
-
# your application in memory, allowing both thread web servers
|
9
|
-
# and those relying on copy on write to perform better.
|
10
|
-
# Rake tasks automatically ignore this option for performance.
|
11
|
-
config.eager_load = true
|
12
|
-
|
13
|
-
# Full error reports are disabled and caching is turned on.
|
14
|
-
config.consider_all_requests_local = false
|
15
|
-
config.action_controller.perform_caching = true
|
16
|
-
|
17
|
-
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
-
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
-
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
-
# config.action_dispatch.rack_cache = true
|
21
|
-
|
22
|
-
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
-
if Rails.version >= "4.2.0"
|
24
|
-
config.serve_static_files = false
|
25
|
-
else
|
26
|
-
config.serve_static_assets = false
|
27
|
-
end
|
28
|
-
|
29
|
-
# Compress JavaScripts and CSS.
|
30
|
-
config.assets.js_compressor = :uglifier
|
31
|
-
# config.assets.css_compressor = :sass
|
32
|
-
|
33
|
-
# Whether to fallback to assets pipeline if a precompiled asset is missed.
|
34
|
-
config.assets.compile = false
|
35
|
-
|
36
|
-
# Generate digests for assets URLs.
|
37
|
-
config.assets.digest = true
|
38
|
-
|
39
|
-
# Version of your assets, change this if you want to expire all your assets.
|
40
|
-
config.assets.version = '1.0'
|
41
|
-
|
42
|
-
# Specifies the header that your server uses for sending files.
|
43
|
-
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
44
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
45
|
-
|
46
|
-
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
47
|
-
# config.force_ssl = true
|
48
|
-
|
49
|
-
# Set to :debug to see everything in the log.
|
50
|
-
config.log_level = :info
|
51
|
-
|
52
|
-
# Prepend all log lines with the following tags.
|
53
|
-
# config.log_tags = [:subdomain, :uuid]
|
54
|
-
|
55
|
-
# Use a different logger for distributed setups.
|
56
|
-
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
57
|
-
|
58
|
-
# Use a different cache store in production.
|
59
|
-
# config.cache_store = :mem_cache_store
|
60
|
-
|
61
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
62
|
-
# config.action_controller.asset_host = "http://assets.example.com"
|
63
|
-
|
64
|
-
# Precompile additional assets.
|
65
|
-
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
66
|
-
# config.assets.precompile += %w( search.js )
|
67
|
-
|
68
|
-
# Ignore bad email addresses and do not raise email delivery errors.
|
69
|
-
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
70
|
-
# config.action_mailer.raise_delivery_errors = false
|
71
|
-
|
72
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
73
|
-
# the I18n.default_locale when a translation can not be found).
|
74
|
-
config.i18n.fallbacks = true
|
75
|
-
|
76
|
-
# Send deprecation notices to registered listeners.
|
77
|
-
config.active_support.deprecation = :notify
|
78
|
-
|
79
|
-
# Disable automatic flushing of the log to improve performance.
|
80
|
-
# config.autoflush_log = false
|
81
|
-
|
82
|
-
# Use default logging formatter so that PID and timestamp are not suppressed.
|
83
|
-
config.log_formatter = ::Logger::Formatter.new
|
84
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
RailsApp::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
|
-
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
-
# just for the purpose of running a single test. If you are using a tool that
|
12
|
-
# preloads Rails for running tests, you may have to set it to true.
|
13
|
-
config.eager_load = false
|
14
|
-
|
15
|
-
# Disable serving static files from the `/public` folder by default since
|
16
|
-
# Apache or NGINX already handles this.
|
17
|
-
if Rails.version >= "4.2.0"
|
18
|
-
config.serve_static_files = true
|
19
|
-
else
|
20
|
-
config.serve_static_assets = true
|
21
|
-
end
|
22
|
-
config.static_cache_control = "public, max-age=3600"
|
23
|
-
|
24
|
-
# Show full error reports and disable caching.
|
25
|
-
config.consider_all_requests_local = true
|
26
|
-
config.action_controller.perform_caching = false
|
27
|
-
|
28
|
-
# Raise exceptions instead of rendering exception templates.
|
29
|
-
config.action_dispatch.show_exceptions = false
|
30
|
-
|
31
|
-
# Disable request forgery protection in test environment.
|
32
|
-
config.action_controller.allow_forgery_protection = false
|
33
|
-
|
34
|
-
# Tell Action Mailer not to deliver emails to the real world.
|
35
|
-
# The :test delivery method accumulates sent emails in the
|
36
|
-
# ActionMailer::Base.deliveries array.
|
37
|
-
config.action_mailer.delivery_method = :test
|
38
|
-
|
39
|
-
# Print deprecation notices to the stderr.
|
40
|
-
config.active_support.deprecation = :stderr
|
41
|
-
end
|
@@ -1,7 +0,0 @@
|
|
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!
|