tfe-authlogic_openid 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/CHANGELOG.rdoc +25 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Manifest.txt +38 -0
  4. data/README.rdoc +93 -0
  5. data/Rakefile +137 -0
  6. data/init.rb +1 -0
  7. data/lib/authlogic_openid.rb +6 -0
  8. data/lib/authlogic_openid/acts_as_authentic.rb +174 -0
  9. data/lib/authlogic_openid/session.rb +125 -0
  10. data/lib/authlogic_openid/version.rb +51 -0
  11. data/test/acts_as_authentic_test.rb +105 -0
  12. data/test/fixtures/users.yml +9 -0
  13. data/test/libs/open_id_authentication/CHANGELOG +35 -0
  14. data/test/libs/open_id_authentication/README +231 -0
  15. data/test/libs/open_id_authentication/Rakefile +22 -0
  16. data/test/libs/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb +11 -0
  17. data/test/libs/open_id_authentication/generators/open_id_authentication_tables/templates/migration.rb +20 -0
  18. data/test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/migration.rb +26 -0
  19. data/test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb +11 -0
  20. data/test/libs/open_id_authentication/init.rb +18 -0
  21. data/test/libs/open_id_authentication/lib/open_id_authentication.rb +244 -0
  22. data/test/libs/open_id_authentication/lib/open_id_authentication/association.rb +9 -0
  23. data/test/libs/open_id_authentication/lib/open_id_authentication/db_store.rb +55 -0
  24. data/test/libs/open_id_authentication/lib/open_id_authentication/mem_cache_store.rb +73 -0
  25. data/test/libs/open_id_authentication/lib/open_id_authentication/nonce.rb +5 -0
  26. data/test/libs/open_id_authentication/lib/open_id_authentication/request.rb +23 -0
  27. data/test/libs/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb +20 -0
  28. data/test/libs/open_id_authentication/tasks/open_id_authentication_tasks.rake +30 -0
  29. data/test/libs/open_id_authentication/test/mem_cache_store_test.rb +151 -0
  30. data/test/libs/open_id_authentication/test/normalize_test.rb +32 -0
  31. data/test/libs/open_id_authentication/test/open_id_authentication_test.rb +46 -0
  32. data/test/libs/open_id_authentication/test/status_test.rb +14 -0
  33. data/test/libs/open_id_authentication/test/test_helper.rb +17 -0
  34. data/test/libs/rails_trickery.rb +41 -0
  35. data/test/libs/user.rb +3 -0
  36. data/test/libs/user_session.rb +2 -0
  37. data/test/session_test.rb +32 -0
  38. data/test/test_helper.rb +78 -0
  39. metadata +107 -0
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tfe-authlogic_openid
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ben Johnson of Binary Logic
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-08-02 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: bjohnson@binarylogic.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - MIT-LICENSE
24
+ - README.rdoc
25
+ files:
26
+ - CHANGELOG.rdoc
27
+ - init.rb
28
+ - Manifest.txt
29
+ - MIT-LICENSE
30
+ - Rakefile
31
+ - README.rdoc
32
+ - test/acts_as_authentic_test.rb
33
+ - test/fixtures
34
+ - test/fixtures/users.yml
35
+ - test/libs
36
+ - test/libs/open_id_authentication
37
+ - test/libs/open_id_authentication/CHANGELOG
38
+ - test/libs/open_id_authentication/generators
39
+ - test/libs/open_id_authentication/generators/open_id_authentication_tables
40
+ - test/libs/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb
41
+ - test/libs/open_id_authentication/generators/open_id_authentication_tables/templates
42
+ - test/libs/open_id_authentication/generators/open_id_authentication_tables/templates/migration.rb
43
+ - test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables
44
+ - test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates
45
+ - test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/migration.rb
46
+ - test/libs/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb
47
+ - test/libs/open_id_authentication/init.rb
48
+ - test/libs/open_id_authentication/lib
49
+ - test/libs/open_id_authentication/lib/open_id_authentication
50
+ - test/libs/open_id_authentication/lib/open_id_authentication/association.rb
51
+ - test/libs/open_id_authentication/lib/open_id_authentication/db_store.rb
52
+ - test/libs/open_id_authentication/lib/open_id_authentication/mem_cache_store.rb
53
+ - test/libs/open_id_authentication/lib/open_id_authentication/nonce.rb
54
+ - test/libs/open_id_authentication/lib/open_id_authentication/request.rb
55
+ - test/libs/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb
56
+ - test/libs/open_id_authentication/lib/open_id_authentication.rb
57
+ - test/libs/open_id_authentication/Rakefile
58
+ - test/libs/open_id_authentication/README
59
+ - test/libs/open_id_authentication/tasks
60
+ - test/libs/open_id_authentication/tasks/open_id_authentication_tasks.rake
61
+ - test/libs/open_id_authentication/test
62
+ - test/libs/open_id_authentication/test/mem_cache_store_test.rb
63
+ - test/libs/open_id_authentication/test/normalize_test.rb
64
+ - test/libs/open_id_authentication/test/open_id_authentication_test.rb
65
+ - test/libs/open_id_authentication/test/status_test.rb
66
+ - test/libs/open_id_authentication/test/test_helper.rb
67
+ - test/libs/rails_trickery.rb
68
+ - test/libs/user.rb
69
+ - test/libs/user_session.rb
70
+ - test/session_test.rb
71
+ - test/test_helper.rb
72
+ - lib/authlogic_openid
73
+ - lib/authlogic_openid/acts_as_authentic.rb
74
+ - lib/authlogic_openid/session.rb
75
+ - lib/authlogic_openid/version.rb
76
+ - lib/authlogic_openid.rb
77
+ has_rdoc: true
78
+ homepage: http://github.com/binarylogic/authlogic_openid
79
+ licenses:
80
+ post_install_message:
81
+ rdoc_options:
82
+ - --main
83
+ - README.rdoc
84
+ - --charset=UTF-8
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: "0"
92
+ version:
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: "0"
98
+ version:
99
+ requirements: []
100
+
101
+ rubyforge_project: authlogic_openid
102
+ rubygems_version: 1.3.5
103
+ signing_key:
104
+ specification_version: 2
105
+ summary: Authlogic OpenID is an extension of the Authlogic library to add OpenID support.
106
+ test_files: []
107
+