/restful-authentication.gemspec

https://github.com/naven87/restful-authentication · Unknown · 33 lines · 29 code · 4 blank · 0 comment · 0 complexity · f1030c2d205c6c0772e16d5bf49abb5f MD5 · raw file

  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = %q{restful-authentication}
  4. s.version = "1.1.1"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["RailsJedi", "Rick Olson"]
  7. s.date = %q{2008-07-04}
  8. s.description = %q{This widely-used plugin provides a foundation for securely managing user.}
  9. s.email = %q{railsjedi@gmail.com}
  10. s.extra_rdoc_files = ["README.textile"]
  11. s.files = ["CHANGELOG", "README.textile", "Rakefile", "TODO", "generators/authenticated/authenticated_generator.rb", "generators/authenticated/lib/insert_routes.rb", "generators/authenticated/templates/_model_partial.html.erb", "generators/authenticated/templates/activation.erb", "generators/authenticated/templates/authenticated_system.rb", "generators/authenticated/templates/authenticated_test_helper.rb", "generators/authenticated/templates/controller.rb", "generators/authenticated/templates/helper.rb", "generators/authenticated/templates/login.html.erb", "generators/authenticated/templates/mailer.rb", "generators/authenticated/templates/migration.rb", "generators/authenticated/templates/model.rb", "generators/authenticated/templates/model_controller.rb", "generators/authenticated/templates/model_helper.rb", "generators/authenticated/templates/model_helper_spec.rb", "generators/authenticated/templates/observer.rb", "generators/authenticated/templates/signup.html.erb", "generators/authenticated/templates/signup_notification.erb", "generators/authenticated/templates/site_keys.rb", "generators/authenticated/templates/spec/controllers/access_control_spec.rb", "generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb", "generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb", "generators/authenticated/templates/spec/controllers/users_controller_spec.rb", "generators/authenticated/templates/spec/fixtures/users.yml", "generators/authenticated/templates/spec/helpers/users_helper_spec.rb", "generators/authenticated/templates/spec/models/user_spec.rb", "generators/authenticated/templates/stories/rest_auth_stories.rb", "generators/authenticated/templates/stories/rest_auth_stories_helper.rb", "generators/authenticated/templates/stories/steps/ra_navigation_steps.rb", "generators/authenticated/templates/stories/steps/ra_resource_steps.rb", "generators/authenticated/templates/stories/steps/ra_response_steps.rb", "generators/authenticated/templates/stories/steps/user_steps.rb", "generators/authenticated/templates/stories/users/accounts.story", "generators/authenticated/templates/stories/users/sessions.story", "generators/authenticated/templates/test/functional_test.rb", "generators/authenticated/templates/test/mailer_test.rb", "generators/authenticated/templates/test/model_functional_test.rb", "generators/authenticated/templates/test/unit_test.rb", "generators/authenticated/USAGE", "init.rb", "lib/authentication/by_cookie_token.rb", "lib/authentication/by_password.rb", "lib/authentication.rb", "lib/authorization/aasm_roles.rb", "lib/authorization/stateful_roles.rb", "lib/authorization.rb", "lib/trustification/email_validation.rb", "lib/trustification.rb", "rails/init.rb"]
  12. s.has_rdoc = true
  13. s.homepage = %q{http://github.com/technoweenie/restful-authentication}
  14. s.rdoc_options = ["--main", "README.textile"]
  15. s.require_paths = ["lib"]
  16. s.rubygems_version = %q{1.3.0}
  17. s.summary = %q{Generates code for user login and authentication}
  18. if s.respond_to? :specification_version then
  19. current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
  20. s.specification_version = 2
  21. if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
  22. s.add_runtime_dependency(%q<rails>, ["~> 2.1.0"])
  23. else
  24. s.add_dependency(%q<rails>, ["~> 2.1.0"])
  25. end
  26. else
  27. s.add_dependency(%q<rails>, ["~> 2.1.0"])
  28. end
  29. end