devise 0.1.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of devise might be problematic. Click here for more details.

Files changed (74) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +220 -0
  3. data/Rakefile +45 -0
  4. data/TODO +37 -0
  5. data/app/controllers/confirmations_controller.rb +32 -0
  6. data/app/controllers/passwords_controller.rb +38 -0
  7. data/app/controllers/sessions_controller.rb +35 -0
  8. data/app/models/notifier.rb +47 -0
  9. data/app/views/confirmations/new.html.erb +16 -0
  10. data/app/views/notifier/confirmation_instructions.html.erb +5 -0
  11. data/app/views/notifier/reset_password_instructions.html.erb +8 -0
  12. data/app/views/passwords/edit.html.erb +20 -0
  13. data/app/views/passwords/new.html.erb +16 -0
  14. data/app/views/sessions/new.html.erb +23 -0
  15. data/config/locales/en.yml +16 -0
  16. data/init.rb +2 -0
  17. data/lib/devise.rb +48 -0
  18. data/lib/devise/active_record.rb +86 -0
  19. data/lib/devise/controllers/filters.rb +109 -0
  20. data/lib/devise/controllers/helpers.rb +91 -0
  21. data/lib/devise/controllers/url_helpers.rb +47 -0
  22. data/lib/devise/hooks/rememberable.rb +24 -0
  23. data/lib/devise/mapping.rb +95 -0
  24. data/lib/devise/migrations.rb +50 -0
  25. data/lib/devise/models/authenticable.rb +98 -0
  26. data/lib/devise/models/confirmable.rb +125 -0
  27. data/lib/devise/models/recoverable.rb +88 -0
  28. data/lib/devise/models/rememberable.rb +71 -0
  29. data/lib/devise/models/validatable.rb +36 -0
  30. data/lib/devise/routes.rb +95 -0
  31. data/lib/devise/strategies/authenticable.rb +45 -0
  32. data/lib/devise/strategies/base.rb +24 -0
  33. data/lib/devise/strategies/rememberable.rb +33 -0
  34. data/lib/devise/version.rb +3 -0
  35. data/lib/devise/warden.rb +64 -0
  36. data/test/active_record_test.rb +96 -0
  37. data/test/controllers/filters_test.rb +97 -0
  38. data/test/controllers/helpers_test.rb +40 -0
  39. data/test/controllers/url_helpers_test.rb +47 -0
  40. data/test/integration/authenticable_test.rb +191 -0
  41. data/test/integration/confirmable_test.rb +60 -0
  42. data/test/integration/recoverable_test.rb +131 -0
  43. data/test/integration/rememberable_test.rb +56 -0
  44. data/test/mailers/confirmation_instructions_test.rb +59 -0
  45. data/test/mailers/reset_password_instructions_test.rb +62 -0
  46. data/test/mapping_test.rb +71 -0
  47. data/test/models/authenticable_test.rb +138 -0
  48. data/test/models/confirmable_test.rb +206 -0
  49. data/test/models/recoverable_test.rb +145 -0
  50. data/test/models/rememberable_test.rb +68 -0
  51. data/test/models/validatable_test.rb +99 -0
  52. data/test/rails_app/app/controllers/admins_controller.rb +6 -0
  53. data/test/rails_app/app/controllers/application_controller.rb +10 -0
  54. data/test/rails_app/app/controllers/home_controller.rb +4 -0
  55. data/test/rails_app/app/controllers/users_controller.rb +7 -0
  56. data/test/rails_app/app/helpers/application_helper.rb +3 -0
  57. data/test/rails_app/app/models/account.rb +3 -0
  58. data/test/rails_app/app/models/admin.rb +3 -0
  59. data/test/rails_app/app/models/organizer.rb +3 -0
  60. data/test/rails_app/app/models/user.rb +3 -0
  61. data/test/rails_app/config/boot.rb +110 -0
  62. data/test/rails_app/config/environment.rb +41 -0
  63. data/test/rails_app/config/environments/development.rb +17 -0
  64. data/test/rails_app/config/environments/production.rb +28 -0
  65. data/test/rails_app/config/environments/test.rb +28 -0
  66. data/test/rails_app/config/initializers/new_rails_defaults.rb +21 -0
  67. data/test/rails_app/config/initializers/session_store.rb +15 -0
  68. data/test/rails_app/config/routes.rb +18 -0
  69. data/test/routes_test.rb +75 -0
  70. data/test/support/assertions_helper.rb +22 -0
  71. data/test/support/integration_tests_helper.rb +66 -0
  72. data/test/support/model_tests_helper.rb +40 -0
  73. data/test/test_helper.rb +39 -0
  74. metadata +136 -0
@@ -0,0 +1,41 @@
1
+ # Be sure to restart your server when you modify this file
2
+
3
+ # Specifies gem version of Rails to use when vendor/rails is not present
4
+ RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
5
+
6
+ # Bootstrap the Rails environment, frameworks, and default configuration
7
+ require File.join(File.dirname(__FILE__), 'boot')
8
+
9
+ Rails::Initializer.run do |config|
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Add additional load paths for your own custom dirs
15
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
16
+
17
+ # Specify gems that this application depends on and have them installed with rake gems:install
18
+ # config.gem "bj"
19
+ # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
20
+ # config.gem "sqlite3-ruby", :lib => "sqlite3"
21
+ # config.gem "aws-s3", :lib => "aws/s3"
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
+ # Skip frameworks you're not going to use. To use Rails without a database,
28
+ # you must remove the Active Record framework.
29
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
30
+
31
+ # Activate observers that should always be running
32
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
33
+
34
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
35
+ # Run "rake -D time" for a list of tasks for finding time zone names.
36
+ config.time_zone = 'UTC'
37
+
38
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
39
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
40
+ # config.i18n.default_locale = :en
41
+ end
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = 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
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
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.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
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.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+ config.action_view.cache_template_loading = true
16
+
17
+ # Disable request forgery protection in test environment
18
+ config.action_controller.allow_forgery_protection = false
19
+
20
+ # Tell Action Mailer not to deliver emails to the real world.
21
+ # The :test delivery method accumulates sent emails in the
22
+ # ActionMailer::Base.deliveries array.
23
+ config.action_mailer.delivery_method = :test
24
+
25
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
26
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
27
+ # like if you have constraints or database-specific column types
28
+ # config.active_record.schema_format = :sql
@@ -0,0 +1,21 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ ActionController::Routing.generate_best_match = false
15
+
16
+ # Use ISO 8601 format for JSON serialized times and dates.
17
+ ActiveSupport.use_standard_json_time_format = true
18
+
19
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
20
+ # if you're including raw json in an HTML page.
21
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions 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
+ ActionController::Base.session = {
8
+ :key => '_rails_app_session',
9
+ :secret => '89e8147901a0d7c221ac130e0ded3eeab6dab4a97127255909f08fedaae371918b41dec9d4d75c5b27a55c3772d43c2b6a3cbac232c5cc2ce4b8ec22242f5e60'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,18 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.devise_for :users
3
+ map.devise_for :admin, :as => 'admin_area'
4
+ map.devise_for :account, :path_names => {
5
+ :sign_in => 'login', :sign_out => 'logout', :password => 'secret', :confirmation => 'verification'
6
+ }
7
+ map.devise_for :organizers, :singular => 'manager'
8
+
9
+ map.resources :users, :only => :index
10
+ map.resources :admins, :only => :index
11
+ map.root :controller => :home
12
+
13
+ map.connect '/admin_area/password/new', :controller => "passwords", :action => "new"
14
+ map.admin_root '/admin_area/home', :controller => "admins", :action => "index"
15
+
16
+ map.connect ':controller/:action/:id'
17
+ map.connect ':controller/:action/:id.:format'
18
+ end
@@ -0,0 +1,75 @@
1
+ require 'test/test_helper'
2
+
3
+ class MapRoutingTest < ActionController::TestCase
4
+
5
+ test 'map new user session' do
6
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, {:path => 'users/sign_in', :method => :get})
7
+ end
8
+
9
+ test 'map create user session' do
10
+ assert_recognizes({:controller => 'sessions', :action => 'create'}, {:path => 'users/sign_in', :method => :post})
11
+ end
12
+
13
+ test 'map destroy user session' do
14
+ assert_recognizes({:controller => 'sessions', :action => 'destroy'}, {:path => 'users/sign_out', :method => :get})
15
+ end
16
+
17
+ test 'map new user confirmation' do
18
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'users/confirmation/new')
19
+ end
20
+
21
+ test 'map create user confirmation' do
22
+ assert_recognizes({:controller => 'confirmations', :action => 'create'}, {:path => 'users/confirmation', :method => :post})
23
+ end
24
+
25
+ test 'map show user confirmation' do
26
+ assert_recognizes({:controller => 'confirmations', :action => 'show'}, {:path => 'users/confirmation', :method => :get})
27
+ end
28
+
29
+ test 'map new user password' do
30
+ assert_recognizes({:controller => 'passwords', :action => 'new'}, 'users/password/new')
31
+ end
32
+
33
+ test 'map create user password' do
34
+ assert_recognizes({:controller => 'passwords', :action => 'create'}, {:path => 'users/password', :method => :post})
35
+ end
36
+
37
+ test 'map edit user password' do
38
+ assert_recognizes({:controller => 'passwords', :action => 'edit'}, 'users/password/edit')
39
+ end
40
+
41
+ test 'map update user password' do
42
+ assert_recognizes({:controller => 'passwords', :action => 'update'}, {:path => 'users/password', :method => :put})
43
+ end
44
+
45
+ test 'map admin session with :as option' do
46
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, {:path => 'admin_area/sign_in', :method => :get})
47
+ end
48
+
49
+ test 'does not map admin confirmation' do
50
+ assert_raise ActionController::RoutingError do
51
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'admin_area/confirmation/new')
52
+ end
53
+ end
54
+
55
+ test 'map account with custom path name for session sign in' do
56
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, 'account/login')
57
+ end
58
+
59
+ test 'map account with custom path name for session sign out' do
60
+ assert_recognizes({:controller => 'sessions', :action => 'destroy'}, 'account/logout')
61
+ end
62
+
63
+ test 'map account with custom path name for password' do
64
+ assert_recognizes({:controller => 'passwords', :action => 'new'}, 'account/secret/new')
65
+ end
66
+
67
+ test 'map account with custom path name for confirmation' do
68
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'account/verification/new')
69
+ end
70
+
71
+ test 'map organizer with custom singular name' do
72
+ assert_recognizes({:controller => 'passwords', :action => 'new'}, 'organizers/password/new')
73
+ end
74
+
75
+ end
@@ -0,0 +1,22 @@
1
+ class ActiveSupport::TestCase
2
+ def assert_not(assertion)
3
+ assert !assertion
4
+ end
5
+
6
+ def assert_blank(assertion)
7
+ assert assertion.blank?
8
+ end
9
+
10
+ def assert_not_blank(assertion)
11
+ assert !assertion.blank?
12
+ end
13
+ alias :assert_present :assert_not_blank
14
+
15
+ def assert_email_sent(&block)
16
+ assert_difference('ActionMailer::Base.deliveries.size') { yield }
17
+ end
18
+
19
+ def assert_email_not_sent(&block)
20
+ assert_no_difference('ActionMailer::Base.deliveries.size') { yield }
21
+ end
22
+ end
@@ -0,0 +1,66 @@
1
+ class ActionController::IntegrationTest
2
+
3
+ def warden
4
+ request.env['warden']
5
+ end
6
+
7
+ def create_user(options={})
8
+ @user ||= begin
9
+ user = User.create!(
10
+ :email => 'user@test.com', :password => '123456', :password_confirmation => '123456'
11
+ )
12
+ user.confirm! unless options[:confirm] == false
13
+ user
14
+ end
15
+ end
16
+
17
+ def create_admin(options={})
18
+ @admin ||= begin
19
+ admin = Admin.create!(
20
+ :email => 'admin@test.com', :password => '123456', :password_confirmation => '123456'
21
+ )
22
+ admin
23
+ end
24
+ end
25
+
26
+ def sign_in_as_user(options={}, &block)
27
+ user = create_user(options)
28
+ visit new_user_session_path unless options[:visit] == false
29
+ fill_in 'email', :with => 'user@test.com'
30
+ fill_in 'password', :with => '123456'
31
+ check 'remember me' if options[:remember_me] == true
32
+ yield if block_given?
33
+ click_button 'Sign In'
34
+ user
35
+ end
36
+
37
+ def sign_in_as_admin(options={}, &block)
38
+ admin = create_admin(options)
39
+ visit new_admin_session_path unless options[:visit] == false
40
+ fill_in 'email', :with => 'admin@test.com'
41
+ fill_in 'password', :with => '123456'
42
+ yield if block_given?
43
+ click_button 'Sign In'
44
+ admin
45
+ end
46
+
47
+ # Fix assert_redirect_to in integration sessions because they don't take into
48
+ # account Middleware redirects.
49
+ #
50
+ def assert_redirected_to(url)
51
+ assert [301, 302].include?(@integration_session.status),
52
+ "Expected status to be 301 or 302, got #{@integration_session.status}"
53
+
54
+ url = prepend_host(url)
55
+ location = prepend_host(@integration_session.headers["Location"])
56
+ assert_equal url, location
57
+ end
58
+
59
+ protected
60
+
61
+ def prepend_host(url)
62
+ url = "http://#{request.host}#{url}" if url[0] == ?/
63
+ url
64
+ end
65
+
66
+ end
@@ -0,0 +1,40 @@
1
+ class ActiveSupport::TestCase
2
+ def setup_mailer
3
+ ActionMailer::Base.deliveries = []
4
+ end
5
+
6
+ def store_translations(locale, translations, &block)
7
+ begin
8
+ I18n.backend.store_translations locale, translations
9
+ yield
10
+ ensure
11
+ I18n.reload!
12
+ end
13
+ end
14
+
15
+ # Helpers for creating new users
16
+ #
17
+ def generate_unique_email
18
+ @@email_count ||= 0
19
+ @@email_count += 1
20
+ "test#{@@email_count}@email.com"
21
+ end
22
+
23
+ def valid_attributes(attributes={})
24
+ { :email => generate_unique_email,
25
+ :password => '123456',
26
+ :password_confirmation => '123456' }.update(attributes)
27
+ end
28
+
29
+ def new_user(attributes={})
30
+ User.new(valid_attributes(attributes))
31
+ end
32
+
33
+ def create_user(attributes={})
34
+ User.create!(valid_attributes(attributes))
35
+ end
36
+
37
+ def field_accessible?(field)
38
+ new_user(field => 'test').send(field) == 'test'
39
+ end
40
+ end
@@ -0,0 +1,39 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.join(File.dirname(__FILE__), 'rails_app', 'config', 'environment')
3
+
4
+ require 'test_help'
5
+ require 'webrat'
6
+
7
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
8
+
9
+ ActionMailer::Base.delivery_method = :test
10
+ ActionMailer::Base.perform_deliveries = true
11
+ ActionMailer::Base.default_url_options[:host] = 'test.com'
12
+
13
+ ActiveRecord::Migration.verbose = false
14
+ ActiveRecord::Base.logger = Logger.new(nil)
15
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :database => ":memory:")
16
+ ActiveRecord::Schema.define(:version => 1) do
17
+ [:users, :admins].each do |table|
18
+ create_table table do |t|
19
+ t.authenticable
20
+
21
+ if table == :users
22
+ t.confirmable
23
+ t.recoverable
24
+ t.rememberable
25
+ end
26
+
27
+ t.timestamps
28
+ end
29
+ end
30
+ end
31
+
32
+ Webrat.configure do |config|
33
+ config.mode = :rails
34
+ end
35
+
36
+ class ActiveSupport::TestCase
37
+ self.use_transactional_fixtures = true
38
+ self.use_instantiated_fixtures = false
39
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - "Jos\xC3\xA9 Valim"
8
+ - "Carlos Ant\xC3\xB4nio"
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-10-21 00:00:00 -02:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: warden
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ~>
23
+ - !ruby/object:Gem::Version
24
+ version: 0.5.0
25
+ version:
26
+ description: Flexible authentication solution for Rails with Warden
27
+ email: contact@plataformatec.com.br
28
+ executables: []
29
+
30
+ extensions: []
31
+
32
+ extra_rdoc_files:
33
+ - README.rdoc
34
+ files:
35
+ - MIT-LICENSE
36
+ - README.rdoc
37
+ - Rakefile
38
+ - TODO
39
+ - app/controllers/confirmations_controller.rb
40
+ - app/controllers/passwords_controller.rb
41
+ - app/controllers/sessions_controller.rb
42
+ - app/models/notifier.rb
43
+ - app/views/confirmations/new.html.erb
44
+ - app/views/notifier/confirmation_instructions.html.erb
45
+ - app/views/notifier/reset_password_instructions.html.erb
46
+ - app/views/passwords/edit.html.erb
47
+ - app/views/passwords/new.html.erb
48
+ - app/views/sessions/new.html.erb
49
+ - config/locales/en.yml
50
+ - init.rb
51
+ - lib/devise.rb
52
+ - lib/devise/active_record.rb
53
+ - lib/devise/controllers/filters.rb
54
+ - lib/devise/controllers/helpers.rb
55
+ - lib/devise/controllers/url_helpers.rb
56
+ - lib/devise/hooks/rememberable.rb
57
+ - lib/devise/mapping.rb
58
+ - lib/devise/migrations.rb
59
+ - lib/devise/models/authenticable.rb
60
+ - lib/devise/models/confirmable.rb
61
+ - lib/devise/models/recoverable.rb
62
+ - lib/devise/models/rememberable.rb
63
+ - lib/devise/models/validatable.rb
64
+ - lib/devise/routes.rb
65
+ - lib/devise/strategies/authenticable.rb
66
+ - lib/devise/strategies/base.rb
67
+ - lib/devise/strategies/rememberable.rb
68
+ - lib/devise/version.rb
69
+ - lib/devise/warden.rb
70
+ has_rdoc: true
71
+ homepage: http://github.com/plataformatec/devise
72
+ licenses: []
73
+
74
+ post_install_message:
75
+ rdoc_options:
76
+ - --charset=UTF-8
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ version:
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ version:
91
+ requirements: []
92
+
93
+ rubyforge_project:
94
+ rubygems_version: 1.3.5
95
+ signing_key:
96
+ specification_version: 3
97
+ summary: Flexible authentication solution for Rails with Warden
98
+ test_files:
99
+ - test/rails_app/config/boot.rb
100
+ - test/rails_app/config/routes.rb
101
+ - test/rails_app/config/environments/development.rb
102
+ - test/rails_app/config/environments/production.rb
103
+ - test/rails_app/config/environments/test.rb
104
+ - test/rails_app/config/environment.rb
105
+ - test/rails_app/config/initializers/session_store.rb
106
+ - test/rails_app/config/initializers/new_rails_defaults.rb
107
+ - test/rails_app/app/controllers/users_controller.rb
108
+ - test/rails_app/app/controllers/application_controller.rb
109
+ - test/rails_app/app/controllers/admins_controller.rb
110
+ - test/rails_app/app/controllers/home_controller.rb
111
+ - test/rails_app/app/helpers/application_helper.rb
112
+ - test/rails_app/app/models/admin.rb
113
+ - test/rails_app/app/models/organizer.rb
114
+ - test/rails_app/app/models/account.rb
115
+ - test/rails_app/app/models/user.rb
116
+ - test/controllers/url_helpers_test.rb
117
+ - test/controllers/helpers_test.rb
118
+ - test/controllers/filters_test.rb
119
+ - test/integration/authenticable_test.rb
120
+ - test/integration/rememberable_test.rb
121
+ - test/integration/recoverable_test.rb
122
+ - test/integration/confirmable_test.rb
123
+ - test/mailers/confirmation_instructions_test.rb
124
+ - test/mailers/reset_password_instructions_test.rb
125
+ - test/models/authenticable_test.rb
126
+ - test/models/rememberable_test.rb
127
+ - test/models/recoverable_test.rb
128
+ - test/models/validatable_test.rb
129
+ - test/models/confirmable_test.rb
130
+ - test/support/model_tests_helper.rb
131
+ - test/support/assertions_helper.rb
132
+ - test/support/integration_tests_helper.rb
133
+ - test/routes_test.rb
134
+ - test/test_helper.rb
135
+ - test/mapping_test.rb
136
+ - test/active_record_test.rb