authlogic-oauth 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.3 released 2009-6-27
2
+
3
+ * Bug fix
4
+
1
5
  == 1.0.2 released 2009-6-27
2
6
 
3
7
  * Using oauth's callback_url parameter to control where the oauth server returns the user to the application.
@@ -41,7 +41,7 @@ module AuthlogicOauth
41
41
 
42
42
  MAJOR = 1
43
43
  MINOR = 0
44
- TINY = 2
44
+ TINY = 3
45
45
 
46
46
  # The current version as a Version instance
47
47
  CURRENT = new(MAJOR, MINOR, TINY)
data/rails/init.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "authlogic_oauth"
2
+ require "oauth_callback_filter"
2
3
 
3
4
  # Throw callback rack app into the middleware stack
4
5
  ActionController::Dispatcher.middleware = ActionController::MiddlewareStack.new do |m|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlogic-oauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Allison
@@ -64,6 +64,8 @@ files:
64
64
  - test/test_helper.rb
65
65
  has_rdoc: true
66
66
  homepage: http://github.com/jrallison/authlogic_oauth
67
+ licenses: []
68
+
67
69
  post_install_message:
68
70
  rdoc_options:
69
71
  - --main
@@ -85,9 +87,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
87
  requirements: []
86
88
 
87
89
  rubyforge_project: authlogic-oauth
88
- rubygems_version: 1.3.1
90
+ rubygems_version: 1.3.2
89
91
  signing_key:
90
- specification_version: 2
92
+ specification_version: 3
91
93
  summary: An authlogic extension for authenticating via OAuth. (I.E. Twitter login)
92
94
  test_files:
93
95
  - test/acts_as_authentic_test.rb