pelle-open_id_authentication 0.1.0 → 0.1.1
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/VERSION +1 -0
- data/open_id_authentication.gemspec +68 -0
- data/rails/init.rb +2 -0
- metadata +5 -2
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{open_id_authentication}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["David Heinemeier Hansson"]
|
|
12
|
+
s.date = %q{2009-09-27}
|
|
13
|
+
s.email = %q{david@loudthinking.com}
|
|
14
|
+
s.extra_rdoc_files = [
|
|
15
|
+
"CHANGELOG",
|
|
16
|
+
"MIT-LICENSE",
|
|
17
|
+
"README"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
"CHANGELOG",
|
|
21
|
+
"MIT-LICENSE",
|
|
22
|
+
"README",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb",
|
|
26
|
+
"generators/open_id_authentication_tables/templates/migration.rb",
|
|
27
|
+
"generators/upgrade_open_id_authentication_tables/templates/migration.rb",
|
|
28
|
+
"generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb",
|
|
29
|
+
"init.rb",
|
|
30
|
+
"lib/open_id_authentication.rb",
|
|
31
|
+
"lib/open_id_authentication/association.rb",
|
|
32
|
+
"lib/open_id_authentication/db_store.rb",
|
|
33
|
+
"lib/open_id_authentication/nonce.rb",
|
|
34
|
+
"lib/open_id_authentication/request.rb",
|
|
35
|
+
"lib/open_id_authentication/timeout_fixes.rb",
|
|
36
|
+
"open_id_authentication.gemspec",
|
|
37
|
+
"rails/init.rb",
|
|
38
|
+
"tasks/open_id_authentication_tasks.rake",
|
|
39
|
+
"test/normalize_test.rb",
|
|
40
|
+
"test/open_id_authentication_test.rb",
|
|
41
|
+
"test/status_test.rb",
|
|
42
|
+
"test/test_helper.rb"
|
|
43
|
+
]
|
|
44
|
+
s.homepage = %q{http://www.rubyonrails.org}
|
|
45
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
46
|
+
s.require_paths = ["lib"]
|
|
47
|
+
s.rubygems_version = %q{1.3.5}
|
|
48
|
+
s.summary = %q{Provides a thin wrapper around the excellent ruby-openid gem from JanRan.}
|
|
49
|
+
s.test_files = [
|
|
50
|
+
"test/normalize_test.rb",
|
|
51
|
+
"test/open_id_authentication_test.rb",
|
|
52
|
+
"test/status_test.rb",
|
|
53
|
+
"test/test_helper.rb"
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
if s.respond_to? :specification_version then
|
|
57
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
58
|
+
s.specification_version = 3
|
|
59
|
+
|
|
60
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
61
|
+
s.add_runtime_dependency(%q<pelle-ruby-openid>, [">= 2.1.8"])
|
|
62
|
+
else
|
|
63
|
+
s.add_dependency(%q<pelle-ruby-openid>, [">= 2.1.8"])
|
|
64
|
+
end
|
|
65
|
+
else
|
|
66
|
+
s.add_dependency(%q<pelle-ruby-openid>, [">= 2.1.8"])
|
|
67
|
+
end
|
|
68
|
+
end
|
data/rails/init.rb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pelle-open_id_authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -34,8 +34,10 @@ extra_rdoc_files:
|
|
|
34
34
|
- README
|
|
35
35
|
files:
|
|
36
36
|
- CHANGELOG
|
|
37
|
+
- MIT-LICENSE
|
|
37
38
|
- README
|
|
38
39
|
- Rakefile
|
|
40
|
+
- VERSION
|
|
39
41
|
- generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb
|
|
40
42
|
- generators/open_id_authentication_tables/templates/migration.rb
|
|
41
43
|
- generators/upgrade_open_id_authentication_tables/templates/migration.rb
|
|
@@ -47,12 +49,13 @@ files:
|
|
|
47
49
|
- lib/open_id_authentication/nonce.rb
|
|
48
50
|
- lib/open_id_authentication/request.rb
|
|
49
51
|
- lib/open_id_authentication/timeout_fixes.rb
|
|
52
|
+
- open_id_authentication.gemspec
|
|
53
|
+
- rails/init.rb
|
|
50
54
|
- tasks/open_id_authentication_tasks.rake
|
|
51
55
|
- test/normalize_test.rb
|
|
52
56
|
- test/open_id_authentication_test.rb
|
|
53
57
|
- test/status_test.rb
|
|
54
58
|
- test/test_helper.rb
|
|
55
|
-
- MIT-LICENSE
|
|
56
59
|
has_rdoc: false
|
|
57
60
|
homepage: http://www.rubyonrails.org
|
|
58
61
|
licenses:
|