oauth-plugin 0.3.7 → 0.3.8
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 +3 -0
- data/VERSION +1 -1
- data/init.rb +1 -7
- data/oauth-plugin.gemspec +4 -3
- data/rails/init.rb +7 -0
- metadata +4 -3
data/CHANGELOG
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.8
|
data/init.rb
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
require 'oauth/signature/hmac/sha1'
|
|
3
|
-
require 'oauth/request_proxy/action_controller_request'
|
|
4
|
-
require 'oauth/server'
|
|
5
|
-
require 'oauth/controllers/application_controller_methods'
|
|
6
|
-
|
|
7
|
-
ActionController::Base.send :include, OAuth::Controllers::ApplicationControllerMethods
|
|
1
|
+
require File.dirname(__FILE__) + "/rails/init"
|
data/oauth-plugin.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
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.8"
|
|
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"]
|
|
9
|
-
s.date = %q{2009-07-
|
|
9
|
+
s.date = %q{2009-07-23}
|
|
10
10
|
s.description = %q{Rails plugin for implementing an OAuth Provider or Consumer}
|
|
11
11
|
s.email = %q{oauth-ruby@googlegroups.com}
|
|
12
12
|
s.extra_rdoc_files = [
|
|
@@ -81,6 +81,7 @@ Gem::Specification.new do |s|
|
|
|
81
81
|
"lib/oauth/models/consumers/services/twitter_token.rb",
|
|
82
82
|
"lib/oauth/models/consumers/token.rb",
|
|
83
83
|
"oauth-plugin.gemspec",
|
|
84
|
+
"rails/init.rb",
|
|
84
85
|
"tasks/oauth_tasks.rake",
|
|
85
86
|
"uninstall.rb"
|
|
86
87
|
]
|
|
@@ -88,7 +89,7 @@ Gem::Specification.new do |s|
|
|
|
88
89
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
89
90
|
s.require_paths = ["lib"]
|
|
90
91
|
s.rubyforge_project = %q{oauth}
|
|
91
|
-
s.rubygems_version = %q{1.3.
|
|
92
|
+
s.rubygems_version = %q{1.3.5}
|
|
92
93
|
s.summary = %q{Ruby on Rails Plugin for OAuth Provider and Consumer}
|
|
93
94
|
|
|
94
95
|
if s.respond_to? :specification_version then
|
data/rails/init.rb
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
gem 'oauth', '>=0.3.5'
|
|
2
|
+
require 'oauth/signature/hmac/sha1'
|
|
3
|
+
require 'oauth/request_proxy/action_controller_request'
|
|
4
|
+
require 'oauth/server'
|
|
5
|
+
require 'oauth/controllers/application_controller_methods'
|
|
6
|
+
|
|
7
|
+
ActionController::Base.send :include, OAuth::Controllers::ApplicationControllerMethods
|
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.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pelle Braendgaard
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-07-
|
|
12
|
+
date: 2009-07-23 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -99,6 +99,7 @@ files:
|
|
|
99
99
|
- lib/oauth/models/consumers/services/twitter_token.rb
|
|
100
100
|
- lib/oauth/models/consumers/token.rb
|
|
101
101
|
- oauth-plugin.gemspec
|
|
102
|
+
- rails/init.rb
|
|
102
103
|
- tasks/oauth_tasks.rake
|
|
103
104
|
- uninstall.rb
|
|
104
105
|
has_rdoc: true
|
|
@@ -125,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
126
|
requirements: []
|
|
126
127
|
|
|
127
128
|
rubyforge_project: oauth
|
|
128
|
-
rubygems_version: 1.3.
|
|
129
|
+
rubygems_version: 1.3.5
|
|
129
130
|
signing_key:
|
|
130
131
|
specification_version: 3
|
|
131
132
|
summary: Ruby on Rails Plugin for OAuth Provider and Consumer
|