--- !ruby/object:Gem::Specification name: authlogic version: !ruby/object:Gem::Version version: 3.5.0 platform: ruby authors: - Ben Johnson autorequire: bindir: bin cert_chain: [] date: 2016-08-29 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: activerecord requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.2' - - "<" - !ruby/object:Gem::Version version: '5.1' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.2' - - "<" - !ruby/object:Gem::Version version: '5.1' - !ruby/object:Gem::Dependency name: activesupport requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.2' - - "<" - !ruby/object:Gem::Version version: '5.1' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.2' - - "<" - !ruby/object:Gem::Version version: '5.1' - !ruby/object:Gem::Dependency name: request_store requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' - !ruby/object:Gem::Dependency name: scrypt requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '1.2' - - "<" - !ruby/object:Gem::Version version: '4.0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '1.2' - - "<" - !ruby/object:Gem::Version version: '4.0' - !ruby/object:Gem::Dependency name: bcrypt requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3.1' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3.1' - !ruby/object:Gem::Dependency name: timecop requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '0.7' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '0.7' - !ruby/object:Gem::Dependency name: rubocop requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: 0.41.2 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: 0.41.2 description: A clean, simple, and unobtrusive ruby authentication solution. email: - bjohnson@binarylogic.com executables: [] extensions: [] extra_rdoc_files: [] files: - ".gitignore" - ".rubocop.yml" - ".rubocop_todo.yml" - ".travis.yml" - CHANGELOG.md - CONTRIBUTING.md - Gemfile - LICENSE - README.md - Rakefile - authlogic.gemspec - lib/authlogic.rb - lib/authlogic/acts_as_authentic/base.rb - lib/authlogic/acts_as_authentic/email.rb - lib/authlogic/acts_as_authentic/logged_in_status.rb - lib/authlogic/acts_as_authentic/login.rb - lib/authlogic/acts_as_authentic/magic_columns.rb - lib/authlogic/acts_as_authentic/password.rb - lib/authlogic/acts_as_authentic/perishable_token.rb - lib/authlogic/acts_as_authentic/persistence_token.rb - lib/authlogic/acts_as_authentic/restful_authentication.rb - lib/authlogic/acts_as_authentic/session_maintenance.rb - lib/authlogic/acts_as_authentic/single_access_token.rb - lib/authlogic/acts_as_authentic/validations_scope.rb - lib/authlogic/authenticates_many/association.rb - lib/authlogic/authenticates_many/base.rb - lib/authlogic/config.rb - lib/authlogic/controller_adapters/abstract_adapter.rb - lib/authlogic/controller_adapters/rack_adapter.rb - lib/authlogic/controller_adapters/rails_adapter.rb - lib/authlogic/controller_adapters/sinatra_adapter.rb - lib/authlogic/crypto_providers.rb - lib/authlogic/crypto_providers/aes256.rb - lib/authlogic/crypto_providers/bcrypt.rb - lib/authlogic/crypto_providers/md5.rb - lib/authlogic/crypto_providers/scrypt.rb - lib/authlogic/crypto_providers/sha1.rb - lib/authlogic/crypto_providers/sha256.rb - lib/authlogic/crypto_providers/sha512.rb - lib/authlogic/crypto_providers/wordpress.rb - lib/authlogic/i18n.rb - lib/authlogic/i18n/translator.rb - lib/authlogic/random.rb - lib/authlogic/regex.rb - lib/authlogic/session/activation.rb - lib/authlogic/session/active_record_trickery.rb - lib/authlogic/session/base.rb - lib/authlogic/session/brute_force_protection.rb - lib/authlogic/session/callbacks.rb - lib/authlogic/session/cookies.rb - lib/authlogic/session/existence.rb - lib/authlogic/session/foundation.rb - lib/authlogic/session/http_auth.rb - lib/authlogic/session/id.rb - lib/authlogic/session/klass.rb - lib/authlogic/session/magic_columns.rb - lib/authlogic/session/magic_states.rb - lib/authlogic/session/params.rb - lib/authlogic/session/password.rb - lib/authlogic/session/perishable_token.rb - lib/authlogic/session/persistence.rb - lib/authlogic/session/priority_record.rb - lib/authlogic/session/scopes.rb - lib/authlogic/session/session.rb - lib/authlogic/session/timeout.rb - lib/authlogic/session/unauthorized_record.rb - lib/authlogic/session/validation.rb - lib/authlogic/test_case.rb - lib/authlogic/test_case/mock_controller.rb - lib/authlogic/test_case/mock_cookie_jar.rb - lib/authlogic/test_case/mock_logger.rb - lib/authlogic/test_case/mock_request.rb - lib/authlogic/test_case/rails_request_adapter.rb - test/acts_as_authentic_test/base_test.rb - test/acts_as_authentic_test/email_test.rb - test/acts_as_authentic_test/logged_in_status_test.rb - test/acts_as_authentic_test/login_test.rb - test/acts_as_authentic_test/magic_columns_test.rb - test/acts_as_authentic_test/password_test.rb - test/acts_as_authentic_test/perishable_token_test.rb - test/acts_as_authentic_test/persistence_token_test.rb - test/acts_as_authentic_test/restful_authentication_test.rb - test/acts_as_authentic_test/session_maintenance_test.rb - test/acts_as_authentic_test/single_access_test.rb - test/authenticates_many_test.rb - test/config_test.rb - test/crypto_provider_test/aes256_test.rb - test/crypto_provider_test/bcrypt_test.rb - test/crypto_provider_test/scrypt_test.rb - test/crypto_provider_test/sha1_test.rb - test/crypto_provider_test/sha256_test.rb - test/crypto_provider_test/sha512_test.rb - test/fixtures/companies.yml - test/fixtures/employees.yml - test/fixtures/projects.yml - test/fixtures/users.yml - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x - test/gemfiles/Gemfile.rails-5.0.x - test/i18n/lol.yml - test/i18n_test.rb - test/libs/affiliate.rb - test/libs/company.rb - test/libs/employee.rb - test/libs/employee_session.rb - test/libs/ldaper.rb - test/libs/project.rb - test/libs/user.rb - test/libs/user_session.rb - test/random_test.rb - test/session_test/activation_test.rb - test/session_test/active_record_trickery_test.rb - test/session_test/brute_force_protection_test.rb - test/session_test/callbacks_test.rb - test/session_test/cookies_test.rb - test/session_test/credentials_test.rb - test/session_test/existence_test.rb - test/session_test/foundation_test.rb - test/session_test/http_auth_test.rb - test/session_test/id_test.rb - test/session_test/klass_test.rb - test/session_test/magic_columns_test.rb - test/session_test/magic_states_test.rb - test/session_test/params_test.rb - test/session_test/password_test.rb - test/session_test/perishability_test.rb - test/session_test/persistence_test.rb - test/session_test/scopes_test.rb - test/session_test/session_test.rb - test/session_test/timeout_test.rb - test/session_test/unauthorized_record_test.rb - test/session_test/validation_test.rb - test/test_helper.rb homepage: http://github.com/binarylogic/authlogic licenses: - MIT metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.4.5.1 signing_key: specification_version: 4 summary: A clean, simple, and unobtrusive ruby authentication solution. test_files: - test/acts_as_authentic_test/base_test.rb - test/acts_as_authentic_test/email_test.rb - test/acts_as_authentic_test/logged_in_status_test.rb - test/acts_as_authentic_test/login_test.rb - test/acts_as_authentic_test/magic_columns_test.rb - test/acts_as_authentic_test/password_test.rb - test/acts_as_authentic_test/perishable_token_test.rb - test/acts_as_authentic_test/persistence_token_test.rb - test/acts_as_authentic_test/restful_authentication_test.rb - test/acts_as_authentic_test/session_maintenance_test.rb - test/acts_as_authentic_test/single_access_test.rb - test/authenticates_many_test.rb - test/config_test.rb - test/crypto_provider_test/aes256_test.rb - test/crypto_provider_test/bcrypt_test.rb - test/crypto_provider_test/scrypt_test.rb - test/crypto_provider_test/sha1_test.rb - test/crypto_provider_test/sha256_test.rb - test/crypto_provider_test/sha512_test.rb - test/fixtures/companies.yml - test/fixtures/employees.yml - test/fixtures/projects.yml - test/fixtures/users.yml - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x - test/gemfiles/Gemfile.rails-5.0.x - test/i18n/lol.yml - test/i18n_test.rb - test/libs/affiliate.rb - test/libs/company.rb - test/libs/employee.rb - test/libs/employee_session.rb - test/libs/ldaper.rb - test/libs/project.rb - test/libs/user.rb - test/libs/user_session.rb - test/random_test.rb - test/session_test/activation_test.rb - test/session_test/active_record_trickery_test.rb - test/session_test/brute_force_protection_test.rb - test/session_test/callbacks_test.rb - test/session_test/cookies_test.rb - test/session_test/credentials_test.rb - test/session_test/existence_test.rb - test/session_test/foundation_test.rb - test/session_test/http_auth_test.rb - test/session_test/id_test.rb - test/session_test/klass_test.rb - test/session_test/magic_columns_test.rb - test/session_test/magic_states_test.rb - test/session_test/params_test.rb - test/session_test/password_test.rb - test/session_test/perishability_test.rb - test/session_test/persistence_test.rb - test/session_test/scopes_test.rb - test/session_test/session_test.rb - test/session_test/timeout_test.rb - test/session_test/unauthorized_record_test.rb - test/session_test/validation_test.rb - test/test_helper.rb