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 CHANGED
@@ -1,3 +1,6 @@
1
+ 7/23/2009
2
+ 0.3.8
3
+ - Fixed Gem Plugins Loading
1
4
  7/21/2009
2
5
  0.3.7
3
6
  - A blushing Pelle adds a missing file
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.7
1
+ 0.3.8
data/init.rb CHANGED
@@ -1,7 +1 @@
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
1
+ require File.dirname(__FILE__) + "/rails/init"
@@ -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.7"
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-21}
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.4}
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
@@ -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.7
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-21 00:00:00 -04:00
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.4
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