pager-restful_open_id_authentication 1.0.20080507
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +63 -0
- data/Rakefile +22 -0
- data/generators/open_id_authenticated/USAGE +1 -0
- data/generators/open_id_authenticated/open_id_authenticated_generator.rb +215 -0
- data/generators/open_id_authenticated/templates/activation.rhtml +3 -0
- data/generators/open_id_authenticated/templates/authenticated_system.rb +120 -0
- data/generators/open_id_authenticated/templates/authenticated_test_helper.rb +113 -0
- data/generators/open_id_authenticated/templates/controller.rb +94 -0
- data/generators/open_id_authenticated/templates/fixtures.yml +17 -0
- data/generators/open_id_authenticated/templates/functional_test.rb +85 -0
- data/generators/open_id_authenticated/templates/helper.rb +2 -0
- data/generators/open_id_authenticated/templates/login.rhtml +20 -0
- data/generators/open_id_authenticated/templates/migration.rb +45 -0
- data/generators/open_id_authenticated/templates/model.rb +93 -0
- data/generators/open_id_authenticated/templates/model_controller.rb +30 -0
- data/generators/open_id_authenticated/templates/model_functional_test.rb +72 -0
- data/generators/open_id_authenticated/templates/model_helper.rb +2 -0
- data/generators/open_id_authenticated/templates/notifier.rb +25 -0
- data/generators/open_id_authenticated/templates/notifier_test.rb +31 -0
- data/generators/open_id_authenticated/templates/observer.rb +11 -0
- data/generators/open_id_authenticated/templates/open_id_form.rhtml +14 -0
- data/generators/open_id_authenticated/templates/signup.rhtml +22 -0
- data/generators/open_id_authenticated/templates/signup_notification.rhtml +8 -0
- data/generators/open_id_authenticated/templates/unit_test.rb +101 -0
- data/install.rb +1 -0
- data/lib/controller_methods.rb +137 -0
- data/lib/open_id_store.rb +69 -0
- data/rails/init.rb +15 -0
- metadata +81 -0
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pager-restful_open_id_authentication
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.20080507
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ReinH
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-05-07 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: avanie@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
files:
|
25
|
+
- generators/open_id_authenticated/open_id_authenticated_generator.rb
|
26
|
+
- generators/open_id_authenticated/templates/activation.rhtml
|
27
|
+
- generators/open_id_authenticated/templates/authenticated_system.rb
|
28
|
+
- generators/open_id_authenticated/templates/authenticated_test_helper.rb
|
29
|
+
- generators/open_id_authenticated/templates/controller.rb
|
30
|
+
- generators/open_id_authenticated/templates/fixtures.yml
|
31
|
+
- generators/open_id_authenticated/templates/functional_test.rb
|
32
|
+
- generators/open_id_authenticated/templates/helper.rb
|
33
|
+
- generators/open_id_authenticated/templates/login.rhtml
|
34
|
+
- generators/open_id_authenticated/templates/migration.rb
|
35
|
+
- generators/open_id_authenticated/templates/model.rb
|
36
|
+
- generators/open_id_authenticated/templates/model_controller.rb
|
37
|
+
- generators/open_id_authenticated/templates/model_functional_test.rb
|
38
|
+
- generators/open_id_authenticated/templates/model_helper.rb
|
39
|
+
- generators/open_id_authenticated/templates/notifier.rb
|
40
|
+
- generators/open_id_authenticated/templates/notifier_test.rb
|
41
|
+
- generators/open_id_authenticated/templates/observer.rb
|
42
|
+
- generators/open_id_authenticated/templates/open_id_form.rhtml
|
43
|
+
- generators/open_id_authenticated/templates/signup.rhtml
|
44
|
+
- generators/open_id_authenticated/templates/signup_notification.rhtml
|
45
|
+
- generators/open_id_authenticated/templates/unit_test.rb
|
46
|
+
- generators/open_id_authenticated/USAGE
|
47
|
+
- install.rb
|
48
|
+
- lib/controller_methods.rb
|
49
|
+
- lib/open_id_store.rb
|
50
|
+
- rails/init.rb
|
51
|
+
- Rakefile
|
52
|
+
- README
|
53
|
+
has_rdoc: true
|
54
|
+
homepage: http://github.com/pager/restful_open_id_authentication
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options:
|
57
|
+
- --main
|
58
|
+
- README
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
version:
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: "0"
|
72
|
+
version:
|
73
|
+
requirements: []
|
74
|
+
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 1.0.1
|
77
|
+
signing_key:
|
78
|
+
specification_version: 2
|
79
|
+
summary: Gemified restful_open_id_authentication plugin
|
80
|
+
test_files: []
|
81
|
+
|