google-authsub 0.0.4 → 0.1.0
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/.gitignore +2 -0
- data/MIT-LICENSE +1 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/google-authsub.gemspec +4 -6
- data/spec/googleauthsub_spec.rb +1 -1
- metadata +4 -6
- data/google-authsub-0.0.2.gem +0 -0
- data/google-authsub-0.0.3.gem +0 -0
data/.gitignore
CHANGED
data/MIT-LICENSE
CHANGED
data/Rakefile
CHANGED
|
@@ -7,8 +7,8 @@ begin
|
|
|
7
7
|
gemspec.name = "google-authsub"
|
|
8
8
|
gemspec.summary = "A ruby implementation of Google Authentication for Web Applications API"
|
|
9
9
|
gemspec.description = "GoogleAuthSub provides the Google Authentications for Web Applications API."
|
|
10
|
-
gemspec.email = "
|
|
11
|
-
gemspec.homepage = "http://github.com/
|
|
10
|
+
gemspec.email = "jstorimer@gmail.com"
|
|
11
|
+
gemspec.homepage = "http://github.com/jstorimer/google-authsub"
|
|
12
12
|
gemspec.authors = ["Stuart Coyle", "Jesse Storimer"]
|
|
13
13
|
end
|
|
14
14
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|
data/google-authsub.gemspec
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{google-authsub}
|
|
8
|
-
s.version = "0.0
|
|
8
|
+
s.version = "0.1.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Stuart Coyle", "Jesse Storimer"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-25}
|
|
13
13
|
s.description = %q{GoogleAuthSub provides the Google Authentications for Web Applications API.}
|
|
14
|
-
s.email = %q{
|
|
14
|
+
s.email = %q{jstorimer@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README"
|
|
17
17
|
]
|
|
@@ -65,8 +65,6 @@ Gem::Specification.new do |s|
|
|
|
65
65
|
"doc/fr_method_index.html",
|
|
66
66
|
"doc/index.html",
|
|
67
67
|
"doc/rdoc-style.css",
|
|
68
|
-
"google-authsub-0.0.2.gem",
|
|
69
|
-
"google-authsub-0.0.3.gem",
|
|
70
68
|
"google-authsub.gemspec",
|
|
71
69
|
"lib/googleauthsub.rb",
|
|
72
70
|
"live test/authsub_test.html",
|
|
@@ -85,7 +83,7 @@ Gem::Specification.new do |s|
|
|
|
85
83
|
"spec/spec_helper.rb",
|
|
86
84
|
"spec/spec_opts"
|
|
87
85
|
]
|
|
88
|
-
s.homepage = %q{http://github.com/
|
|
86
|
+
s.homepage = %q{http://github.com/jstorimer/google-authsub}
|
|
89
87
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
90
88
|
s.require_paths = ["lib"]
|
|
91
89
|
s.rubygems_version = %q{1.3.5}
|
data/spec/googleauthsub_spec.rb
CHANGED
|
@@ -157,7 +157,7 @@ describe GoogleAuthSub do
|
|
|
157
157
|
|
|
158
158
|
# data = http-method SP http-request-URL SP timestamp SP nonce
|
|
159
159
|
it "should have a proper data parameter" do
|
|
160
|
-
@authsub.auth_header(Net::HTTP::Get.new(@data_request_url), @data_request_url).should include("data=\"GET #{@data_request_url}
|
|
160
|
+
@authsub.auth_header(Net::HTTP::Get.new(@data_request_url), @data_request_url).should include("data=\"GET #{@data_request_url} 1204996501 100000000000000\"")
|
|
161
161
|
end
|
|
162
162
|
|
|
163
163
|
it "should generate the correct signature" do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-authsub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stuart Coyle
|
|
@@ -10,12 +10,12 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-01-
|
|
13
|
+
date: 2010-01-25 00:00:00 -05:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
16
|
|
|
17
17
|
description: GoogleAuthSub provides the Google Authentications for Web Applications API.
|
|
18
|
-
email:
|
|
18
|
+
email: jstorimer@gmail.com
|
|
19
19
|
executables: []
|
|
20
20
|
|
|
21
21
|
extensions: []
|
|
@@ -72,8 +72,6 @@ files:
|
|
|
72
72
|
- doc/fr_method_index.html
|
|
73
73
|
- doc/index.html
|
|
74
74
|
- doc/rdoc-style.css
|
|
75
|
-
- google-authsub-0.0.2.gem
|
|
76
|
-
- google-authsub-0.0.3.gem
|
|
77
75
|
- google-authsub.gemspec
|
|
78
76
|
- lib/googleauthsub.rb
|
|
79
77
|
- live test/authsub_test.html
|
|
@@ -92,7 +90,7 @@ files:
|
|
|
92
90
|
- spec/spec_helper.rb
|
|
93
91
|
- spec/spec_opts
|
|
94
92
|
has_rdoc: true
|
|
95
|
-
homepage: http://github.com/
|
|
93
|
+
homepage: http://github.com/jstorimer/google-authsub
|
|
96
94
|
licenses: []
|
|
97
95
|
|
|
98
96
|
post_install_message:
|
data/google-authsub-0.0.2.gem
DELETED
|
Binary file
|
data/google-authsub-0.0.3.gem
DELETED
|
Binary file
|