oauth-plugin 0.3.6 → 0.3.7
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/CHANGELOG +4 -0
- data/VERSION +1 -1
- data/lib/oauth-plugin.rb +1 -0
- data/oauth-plugin.gemspec +2 -1
- metadata +2 -1
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
7/21/2009
|
|
2
|
+
0.3.7
|
|
3
|
+
- A blushing Pelle adds a missing file
|
|
4
|
+
0.3.6
|
|
2
5
|
- Twitter, Agree2 and FireEagle tokens are working in consumer.
|
|
6
|
+
0.3.5
|
|
3
7
|
- made it a gem
|
|
4
8
|
- more thorough tests of OAuth 1.0 consumer
|
|
5
9
|
- Add support for a OAUTH_10_SUPPORT constant to switch on support for OAuth 1.0 in provider
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.7
|
data/lib/oauth-plugin.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# leaving this empty
|
data/oauth-plugin.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{oauth-plugin}
|
|
5
|
-
s.version = "0.3.
|
|
5
|
+
s.version = "0.3.7"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Pelle Braendgaard"]
|
|
@@ -71,6 +71,7 @@ Gem::Specification.new do |s|
|
|
|
71
71
|
"generators/oauth_provider/templates/show.html.haml",
|
|
72
72
|
"init.rb",
|
|
73
73
|
"install.rb",
|
|
74
|
+
"lib/oauth-plugin.rb",
|
|
74
75
|
"lib/oauth/controllers/application_controller_methods.rb",
|
|
75
76
|
"lib/oauth/controllers/consumer_controller.rb",
|
|
76
77
|
"lib/oauth/controllers/provider_controller.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oauth-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pelle Braendgaard
|
|
@@ -89,6 +89,7 @@ files:
|
|
|
89
89
|
- generators/oauth_provider/templates/show.html.haml
|
|
90
90
|
- init.rb
|
|
91
91
|
- install.rb
|
|
92
|
+
- lib/oauth-plugin.rb
|
|
92
93
|
- lib/oauth/controllers/application_controller_methods.rb
|
|
93
94
|
- lib/oauth/controllers/consumer_controller.rb
|
|
94
95
|
- lib/oauth/controllers/provider_controller.rb
|