oauth-plugin 0.4.0.pre1 → 0.4.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,4 +1,5 @@
1
- 0.4.0
1
+ 0.4.0
2
+ - Fixed bug with AR ORM Generator [theirix]
2
3
  - mongoid support in rails 3 [Alexander Semyonov]
3
4
  - OAUTH 2.0 authorization_code and password grant types
4
5
  - Supports OAuth 2.0 draft 10 (Note this is incompatible with previous drafts)
data/README.rdoc CHANGED
@@ -20,15 +20,25 @@ http://mojodna.net/2009/05/20/an-idiots-guide-to-oauth-10a.html
20
20
 
21
21
  == Requirements
22
22
 
23
- You need to install the oauth gem (0.4.1) which is the core OAuth ruby library. It will NOT work on any previous version of the gem.
23
+ You need to install the oauth gem (0.4.4) which is the core OAuth ruby library. It will likely NOT work on any previous version of the gem.
24
24
 
25
- sudo gem install oauth
25
+ gem install oauth
26
26
 
27
- == Installation
27
+ == Installation (Rails 3.0)
28
+
29
+ Add the plugin to your Gemfile:
30
+
31
+ gem "oauth-plugin", ">=0.4.0.pre1"
32
+
33
+ And install it:
34
+
35
+ bundle install
36
+
37
+ == Installation (Rails 2.x)
28
38
 
29
39
  The plugin can now be installed as an gem from github, which is the easiest way to keep it up to date.
30
40
 
31
- sudo gem install oauth-plugin
41
+ gem install oauth-plugin --pre
32
42
 
33
43
  You should add the following in the gem dependency section of environment.rb
34
44
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0.pre1
1
+ 0.4.0.pre2
@@ -2,7 +2,7 @@ require 'rails/generators/active_record'
2
2
 
3
3
  module ActiveRecord
4
4
  module Generators
5
- class OauthProviderGenerator < Rails::Generators::Base
5
+ class OauthConsumerGenerator < Rails::Generators::Base
6
6
  include Rails::Generators::Migration
7
7
 
8
8
  source_root File.expand_path('../oauth_consumer_templates', __FILE__)
data/oauth-plugin.gemspec CHANGED
@@ -1,185 +1,183 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{oauth-plugin}
8
- s.version = "0.4.0.pre1"
8
+ s.version = "0.4.0.pre2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Pelle Braendgaard"]
12
- s.date = %q{2010-11-15}
12
+ s.date = %q{2010-12-06}
13
13
  s.description = %q{Rails plugin for implementing an OAuth Provider or Consumer}
14
14
  s.email = %q{oauth-ruby@googlegroups.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README.rdoc"
17
17
  ]
18
18
  s.files = [
19
- ".gitignore",
20
- "CHANGELOG",
21
- "MIT-LICENSE",
22
- "README.rdoc",
23
- "Rakefile",
24
- "VERSION",
25
- "generators/oauth_consumer/USAGE",
26
- "generators/oauth_consumer/oauth_consumer_generator.rb",
27
- "generators/oauth_consumer/templates/consumer_token.rb",
28
- "generators/oauth_consumer/templates/controller.rb",
29
- "generators/oauth_consumer/templates/index.html.erb",
30
- "generators/oauth_consumer/templates/index.html.haml",
31
- "generators/oauth_consumer/templates/migration.rb",
32
- "generators/oauth_consumer/templates/oauth_config.rb",
33
- "generators/oauth_consumer/templates/show.html.erb",
34
- "generators/oauth_consumer/templates/show.html.haml",
35
- "generators/oauth_provider/USAGE",
36
- "generators/oauth_provider/lib/insert_routes.rb",
37
- "generators/oauth_provider/oauth_provider_generator.rb",
38
- "generators/oauth_provider/templates/_form.html.erb",
39
- "generators/oauth_provider/templates/_form.html.haml",
40
- "generators/oauth_provider/templates/access_token.rb",
41
- "generators/oauth_provider/templates/authorize.html.erb",
42
- "generators/oauth_provider/templates/authorize.html.haml",
43
- "generators/oauth_provider/templates/authorize_failure.html.erb",
44
- "generators/oauth_provider/templates/authorize_failure.html.haml",
45
- "generators/oauth_provider/templates/authorize_success.html.erb",
46
- "generators/oauth_provider/templates/authorize_success.html.haml",
47
- "generators/oauth_provider/templates/client_application.rb",
48
- "generators/oauth_provider/templates/client_application_spec.rb",
49
- "generators/oauth_provider/templates/client_application_test.rb",
50
- "generators/oauth_provider/templates/client_applications.yml",
51
- "generators/oauth_provider/templates/clients_controller.rb",
52
- "generators/oauth_provider/templates/clients_controller_spec.rb",
53
- "generators/oauth_provider/templates/clients_controller_test.rb",
54
- "generators/oauth_provider/templates/controller.rb",
55
- "generators/oauth_provider/templates/controller_spec.rb",
56
- "generators/oauth_provider/templates/controller_spec_helper.rb",
57
- "generators/oauth_provider/templates/controller_test.rb",
58
- "generators/oauth_provider/templates/controller_test_helper.rb",
59
- "generators/oauth_provider/templates/edit.html.erb",
60
- "generators/oauth_provider/templates/edit.html.haml",
61
- "generators/oauth_provider/templates/index.html.erb",
62
- "generators/oauth_provider/templates/index.html.haml",
63
- "generators/oauth_provider/templates/migration.rb",
64
- "generators/oauth_provider/templates/new.html.erb",
65
- "generators/oauth_provider/templates/new.html.haml",
66
- "generators/oauth_provider/templates/oauth2_authorize.html.erb",
67
- "generators/oauth_provider/templates/oauth2_authorize.html.haml",
68
- "generators/oauth_provider/templates/oauth2_token.rb",
69
- "generators/oauth_provider/templates/oauth2_token_spec.rb",
70
- "generators/oauth_provider/templates/oauth2_verifier.rb",
71
- "generators/oauth_provider/templates/oauth2_verifier_spec.rb",
72
- "generators/oauth_provider/templates/oauth_nonce.rb",
73
- "generators/oauth_provider/templates/oauth_nonce_spec.rb",
74
- "generators/oauth_provider/templates/oauth_nonce_test.rb",
75
- "generators/oauth_provider/templates/oauth_nonces.yml",
76
- "generators/oauth_provider/templates/oauth_token.rb",
77
- "generators/oauth_provider/templates/oauth_token_spec.rb",
78
- "generators/oauth_provider/templates/oauth_token_test.rb",
79
- "generators/oauth_provider/templates/oauth_tokens.yml",
80
- "generators/oauth_provider/templates/request_token.rb",
81
- "generators/oauth_provider/templates/show.html.erb",
82
- "generators/oauth_provider/templates/show.html.haml",
83
- "init.rb",
84
- "install.rb",
85
- "lib/generators/active_record/oauth_consumer_generator.rb",
86
- "lib/generators/active_record/oauth_consumer_templates/consumer_token.rb",
87
- "lib/generators/active_record/oauth_consumer_templates/migration.rb",
88
- "lib/generators/active_record/oauth_provider_generator.rb",
89
- "lib/generators/active_record/oauth_provider_templates/access_token.rb",
90
- "lib/generators/active_record/oauth_provider_templates/client_application.rb",
91
- "lib/generators/active_record/oauth_provider_templates/migration.rb",
92
- "lib/generators/active_record/oauth_provider_templates/oauth2_token.rb",
93
- "lib/generators/active_record/oauth_provider_templates/oauth2_verifier.rb",
94
- "lib/generators/active_record/oauth_provider_templates/oauth_nonce.rb",
95
- "lib/generators/active_record/oauth_provider_templates/oauth_token.rb",
96
- "lib/generators/active_record/oauth_provider_templates/request_token.rb",
97
- "lib/generators/erb/oauth_consumer_generator.rb",
98
- "lib/generators/erb/oauth_consumer_templates/index.html.erb",
99
- "lib/generators/erb/oauth_consumer_templates/show.html.erb",
100
- "lib/generators/erb/oauth_provider_generator.rb",
101
- "lib/generators/erb/oauth_provider_templates/_form.html.erb",
102
- "lib/generators/erb/oauth_provider_templates/authorize.html.erb",
103
- "lib/generators/erb/oauth_provider_templates/authorize_failure.html.erb",
104
- "lib/generators/erb/oauth_provider_templates/authorize_success.html.erb",
105
- "lib/generators/erb/oauth_provider_templates/edit.html.erb",
106
- "lib/generators/erb/oauth_provider_templates/index.html.erb",
107
- "lib/generators/erb/oauth_provider_templates/new.html.erb",
108
- "lib/generators/erb/oauth_provider_templates/oauth2_authorize.html.erb",
109
- "lib/generators/erb/oauth_provider_templates/show.html.erb",
110
- "lib/generators/haml/oauth_consumer_generator.rb",
111
- "lib/generators/haml/oauth_consumer_templates/index.html.haml",
112
- "lib/generators/haml/oauth_consumer_templates/show.html.haml",
113
- "lib/generators/haml/oauth_provider_generator.rb",
114
- "lib/generators/haml/oauth_provider_templates/_form.html.haml",
115
- "lib/generators/haml/oauth_provider_templates/authorize.html.haml",
116
- "lib/generators/haml/oauth_provider_templates/authorize_failure.html.haml",
117
- "lib/generators/haml/oauth_provider_templates/authorize_success.html.haml",
118
- "lib/generators/haml/oauth_provider_templates/edit.html.haml",
119
- "lib/generators/haml/oauth_provider_templates/index.html.haml",
120
- "lib/generators/haml/oauth_provider_templates/new.html.haml",
121
- "lib/generators/haml/oauth_provider_templates/oauth2_authorize.html.haml",
122
- "lib/generators/haml/oauth_provider_templates/show.html.haml",
123
- "lib/generators/mongoid/oauth_consumer_generator.rb",
124
- "lib/generators/mongoid/oauth_consumer_templates/consumer_token.rb",
125
- "lib/generators/mongoid/oauth_provider_generator.rb",
126
- "lib/generators/mongoid/oauth_provider_templates/access_token.rb",
127
- "lib/generators/mongoid/oauth_provider_templates/client_application.rb",
128
- "lib/generators/mongoid/oauth_provider_templates/oauth2_token.rb",
129
- "lib/generators/mongoid/oauth_provider_templates/oauth2_verifier.rb",
130
- "lib/generators/mongoid/oauth_provider_templates/oauth_nonce.rb",
131
- "lib/generators/mongoid/oauth_provider_templates/oauth_token.rb",
132
- "lib/generators/mongoid/oauth_provider_templates/request_token.rb",
133
- "lib/generators/oauth_consumer/USAGE",
134
- "lib/generators/oauth_consumer/oauth_consumer_generator.rb",
135
- "lib/generators/oauth_consumer/templates/controller.rb",
136
- "lib/generators/oauth_consumer/templates/oauth_config.rb",
137
- "lib/generators/oauth_inflections.rb",
138
- "lib/generators/oauth_plugin.rb",
139
- "lib/generators/oauth_provider/USAGE",
140
- "lib/generators/oauth_provider/oauth_provider_generator.rb",
141
- "lib/generators/oauth_provider/templates/clients_controller.rb",
142
- "lib/generators/oauth_provider/templates/controller.rb",
143
- "lib/generators/rspec/oauth_provider_generator.rb",
144
- "lib/generators/rspec/templates/client_application_spec.rb",
145
- "lib/generators/rspec/templates/client_applications.yml",
146
- "lib/generators/rspec/templates/clients_controller_spec.rb",
147
- "lib/generators/rspec/templates/controller_spec.rb",
148
- "lib/generators/rspec/templates/controller_spec_helper.rb",
149
- "lib/generators/rspec/templates/oauth2_token_spec.rb",
150
- "lib/generators/rspec/templates/oauth2_verifier_spec.rb",
151
- "lib/generators/rspec/templates/oauth_nonce_spec.rb",
152
- "lib/generators/rspec/templates/oauth_nonces.yml",
153
- "lib/generators/rspec/templates/oauth_token_spec.rb",
154
- "lib/generators/rspec/templates/oauth_tokens.yml",
155
- "lib/generators/test_unit/oauth_provider_generator.rb",
156
- "lib/generators/test_unit/templates/client_application_test.rb",
157
- "lib/generators/test_unit/templates/client_applications.yml",
158
- "lib/generators/test_unit/templates/clients_controller_test.rb",
159
- "lib/generators/test_unit/templates/controller_test.rb",
160
- "lib/generators/test_unit/templates/controller_test_helper.rb",
161
- "lib/generators/test_unit/templates/oauth_nonce_test.rb",
162
- "lib/generators/test_unit/templates/oauth_nonces.yml",
163
- "lib/generators/test_unit/templates/oauth_token_test.rb",
164
- "lib/generators/test_unit/templates/oauth_tokens.yml",
165
- "lib/oauth-plugin.rb",
166
- "lib/oauth/controllers/application_controller_methods.rb",
167
- "lib/oauth/controllers/consumer_controller.rb",
168
- "lib/oauth/controllers/provider_controller.rb",
169
- "lib/oauth/models/consumers/service_loader.rb",
170
- "lib/oauth/models/consumers/services/agree2_token.rb",
171
- "lib/oauth/models/consumers/services/fireeagle_token.rb",
172
- "lib/oauth/models/consumers/services/google_token.rb",
173
- "lib/oauth/models/consumers/services/twitter_token.rb",
174
- "lib/oauth/models/consumers/simple_client.rb",
175
- "lib/oauth/models/consumers/token.rb",
176
- "oauth-plugin.gemspec",
177
- "rails/init.rb",
178
- "tasks/oauth_tasks.rake",
179
- "uninstall.rb"
19
+ "CHANGELOG",
20
+ "MIT-LICENSE",
21
+ "README.rdoc",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "generators/oauth_consumer/USAGE",
25
+ "generators/oauth_consumer/oauth_consumer_generator.rb",
26
+ "generators/oauth_consumer/templates/consumer_token.rb",
27
+ "generators/oauth_consumer/templates/controller.rb",
28
+ "generators/oauth_consumer/templates/index.html.erb",
29
+ "generators/oauth_consumer/templates/index.html.haml",
30
+ "generators/oauth_consumer/templates/migration.rb",
31
+ "generators/oauth_consumer/templates/oauth_config.rb",
32
+ "generators/oauth_consumer/templates/show.html.erb",
33
+ "generators/oauth_consumer/templates/show.html.haml",
34
+ "generators/oauth_provider/USAGE",
35
+ "generators/oauth_provider/lib/insert_routes.rb",
36
+ "generators/oauth_provider/oauth_provider_generator.rb",
37
+ "generators/oauth_provider/templates/_form.html.erb",
38
+ "generators/oauth_provider/templates/_form.html.haml",
39
+ "generators/oauth_provider/templates/access_token.rb",
40
+ "generators/oauth_provider/templates/authorize.html.erb",
41
+ "generators/oauth_provider/templates/authorize.html.haml",
42
+ "generators/oauth_provider/templates/authorize_failure.html.erb",
43
+ "generators/oauth_provider/templates/authorize_failure.html.haml",
44
+ "generators/oauth_provider/templates/authorize_success.html.erb",
45
+ "generators/oauth_provider/templates/authorize_success.html.haml",
46
+ "generators/oauth_provider/templates/client_application.rb",
47
+ "generators/oauth_provider/templates/client_application_spec.rb",
48
+ "generators/oauth_provider/templates/client_application_test.rb",
49
+ "generators/oauth_provider/templates/client_applications.yml",
50
+ "generators/oauth_provider/templates/clients_controller.rb",
51
+ "generators/oauth_provider/templates/clients_controller_spec.rb",
52
+ "generators/oauth_provider/templates/clients_controller_test.rb",
53
+ "generators/oauth_provider/templates/controller.rb",
54
+ "generators/oauth_provider/templates/controller_spec.rb",
55
+ "generators/oauth_provider/templates/controller_spec_helper.rb",
56
+ "generators/oauth_provider/templates/controller_test.rb",
57
+ "generators/oauth_provider/templates/controller_test_helper.rb",
58
+ "generators/oauth_provider/templates/edit.html.erb",
59
+ "generators/oauth_provider/templates/edit.html.haml",
60
+ "generators/oauth_provider/templates/index.html.erb",
61
+ "generators/oauth_provider/templates/index.html.haml",
62
+ "generators/oauth_provider/templates/migration.rb",
63
+ "generators/oauth_provider/templates/new.html.erb",
64
+ "generators/oauth_provider/templates/new.html.haml",
65
+ "generators/oauth_provider/templates/oauth2_authorize.html.erb",
66
+ "generators/oauth_provider/templates/oauth2_authorize.html.haml",
67
+ "generators/oauth_provider/templates/oauth2_token.rb",
68
+ "generators/oauth_provider/templates/oauth2_token_spec.rb",
69
+ "generators/oauth_provider/templates/oauth2_verifier.rb",
70
+ "generators/oauth_provider/templates/oauth2_verifier_spec.rb",
71
+ "generators/oauth_provider/templates/oauth_nonce.rb",
72
+ "generators/oauth_provider/templates/oauth_nonce_spec.rb",
73
+ "generators/oauth_provider/templates/oauth_nonce_test.rb",
74
+ "generators/oauth_provider/templates/oauth_nonces.yml",
75
+ "generators/oauth_provider/templates/oauth_token.rb",
76
+ "generators/oauth_provider/templates/oauth_token_spec.rb",
77
+ "generators/oauth_provider/templates/oauth_token_test.rb",
78
+ "generators/oauth_provider/templates/oauth_tokens.yml",
79
+ "generators/oauth_provider/templates/request_token.rb",
80
+ "generators/oauth_provider/templates/show.html.erb",
81
+ "generators/oauth_provider/templates/show.html.haml",
82
+ "init.rb",
83
+ "install.rb",
84
+ "lib/generators/active_record/oauth_consumer_generator.rb",
85
+ "lib/generators/active_record/oauth_consumer_templates/consumer_token.rb",
86
+ "lib/generators/active_record/oauth_consumer_templates/migration.rb",
87
+ "lib/generators/active_record/oauth_provider_generator.rb",
88
+ "lib/generators/active_record/oauth_provider_templates/access_token.rb",
89
+ "lib/generators/active_record/oauth_provider_templates/client_application.rb",
90
+ "lib/generators/active_record/oauth_provider_templates/migration.rb",
91
+ "lib/generators/active_record/oauth_provider_templates/oauth2_token.rb",
92
+ "lib/generators/active_record/oauth_provider_templates/oauth2_verifier.rb",
93
+ "lib/generators/active_record/oauth_provider_templates/oauth_nonce.rb",
94
+ "lib/generators/active_record/oauth_provider_templates/oauth_token.rb",
95
+ "lib/generators/active_record/oauth_provider_templates/request_token.rb",
96
+ "lib/generators/erb/oauth_consumer_generator.rb",
97
+ "lib/generators/erb/oauth_consumer_templates/index.html.erb",
98
+ "lib/generators/erb/oauth_consumer_templates/show.html.erb",
99
+ "lib/generators/erb/oauth_provider_generator.rb",
100
+ "lib/generators/erb/oauth_provider_templates/_form.html.erb",
101
+ "lib/generators/erb/oauth_provider_templates/authorize.html.erb",
102
+ "lib/generators/erb/oauth_provider_templates/authorize_failure.html.erb",
103
+ "lib/generators/erb/oauth_provider_templates/authorize_success.html.erb",
104
+ "lib/generators/erb/oauth_provider_templates/edit.html.erb",
105
+ "lib/generators/erb/oauth_provider_templates/index.html.erb",
106
+ "lib/generators/erb/oauth_provider_templates/new.html.erb",
107
+ "lib/generators/erb/oauth_provider_templates/oauth2_authorize.html.erb",
108
+ "lib/generators/erb/oauth_provider_templates/show.html.erb",
109
+ "lib/generators/haml/oauth_consumer_generator.rb",
110
+ "lib/generators/haml/oauth_consumer_templates/index.html.haml",
111
+ "lib/generators/haml/oauth_consumer_templates/show.html.haml",
112
+ "lib/generators/haml/oauth_provider_generator.rb",
113
+ "lib/generators/haml/oauth_provider_templates/_form.html.haml",
114
+ "lib/generators/haml/oauth_provider_templates/authorize.html.haml",
115
+ "lib/generators/haml/oauth_provider_templates/authorize_failure.html.haml",
116
+ "lib/generators/haml/oauth_provider_templates/authorize_success.html.haml",
117
+ "lib/generators/haml/oauth_provider_templates/edit.html.haml",
118
+ "lib/generators/haml/oauth_provider_templates/index.html.haml",
119
+ "lib/generators/haml/oauth_provider_templates/new.html.haml",
120
+ "lib/generators/haml/oauth_provider_templates/oauth2_authorize.html.haml",
121
+ "lib/generators/haml/oauth_provider_templates/show.html.haml",
122
+ "lib/generators/mongoid/oauth_consumer_generator.rb",
123
+ "lib/generators/mongoid/oauth_consumer_templates/consumer_token.rb",
124
+ "lib/generators/mongoid/oauth_provider_generator.rb",
125
+ "lib/generators/mongoid/oauth_provider_templates/access_token.rb",
126
+ "lib/generators/mongoid/oauth_provider_templates/client_application.rb",
127
+ "lib/generators/mongoid/oauth_provider_templates/oauth2_token.rb",
128
+ "lib/generators/mongoid/oauth_provider_templates/oauth2_verifier.rb",
129
+ "lib/generators/mongoid/oauth_provider_templates/oauth_nonce.rb",
130
+ "lib/generators/mongoid/oauth_provider_templates/oauth_token.rb",
131
+ "lib/generators/mongoid/oauth_provider_templates/request_token.rb",
132
+ "lib/generators/oauth_consumer/USAGE",
133
+ "lib/generators/oauth_consumer/oauth_consumer_generator.rb",
134
+ "lib/generators/oauth_consumer/templates/controller.rb",
135
+ "lib/generators/oauth_consumer/templates/oauth_config.rb",
136
+ "lib/generators/oauth_inflections.rb",
137
+ "lib/generators/oauth_plugin.rb",
138
+ "lib/generators/oauth_provider/USAGE",
139
+ "lib/generators/oauth_provider/oauth_provider_generator.rb",
140
+ "lib/generators/oauth_provider/templates/clients_controller.rb",
141
+ "lib/generators/oauth_provider/templates/controller.rb",
142
+ "lib/generators/rspec/oauth_provider_generator.rb",
143
+ "lib/generators/rspec/templates/client_application_spec.rb",
144
+ "lib/generators/rspec/templates/client_applications.yml",
145
+ "lib/generators/rspec/templates/clients_controller_spec.rb",
146
+ "lib/generators/rspec/templates/controller_spec.rb",
147
+ "lib/generators/rspec/templates/controller_spec_helper.rb",
148
+ "lib/generators/rspec/templates/oauth2_token_spec.rb",
149
+ "lib/generators/rspec/templates/oauth2_verifier_spec.rb",
150
+ "lib/generators/rspec/templates/oauth_nonce_spec.rb",
151
+ "lib/generators/rspec/templates/oauth_nonces.yml",
152
+ "lib/generators/rspec/templates/oauth_token_spec.rb",
153
+ "lib/generators/rspec/templates/oauth_tokens.yml",
154
+ "lib/generators/test_unit/oauth_provider_generator.rb",
155
+ "lib/generators/test_unit/templates/client_application_test.rb",
156
+ "lib/generators/test_unit/templates/client_applications.yml",
157
+ "lib/generators/test_unit/templates/clients_controller_test.rb",
158
+ "lib/generators/test_unit/templates/controller_test.rb",
159
+ "lib/generators/test_unit/templates/controller_test_helper.rb",
160
+ "lib/generators/test_unit/templates/oauth_nonce_test.rb",
161
+ "lib/generators/test_unit/templates/oauth_nonces.yml",
162
+ "lib/generators/test_unit/templates/oauth_token_test.rb",
163
+ "lib/generators/test_unit/templates/oauth_tokens.yml",
164
+ "lib/oauth-plugin.rb",
165
+ "lib/oauth/controllers/application_controller_methods.rb",
166
+ "lib/oauth/controllers/consumer_controller.rb",
167
+ "lib/oauth/controllers/provider_controller.rb",
168
+ "lib/oauth/models/consumers/service_loader.rb",
169
+ "lib/oauth/models/consumers/services/agree2_token.rb",
170
+ "lib/oauth/models/consumers/services/fireeagle_token.rb",
171
+ "lib/oauth/models/consumers/services/google_token.rb",
172
+ "lib/oauth/models/consumers/services/twitter_token.rb",
173
+ "lib/oauth/models/consumers/simple_client.rb",
174
+ "lib/oauth/models/consumers/token.rb",
175
+ "oauth-plugin.gemspec",
176
+ "rails/init.rb",
177
+ "tasks/oauth_tasks.rake",
178
+ "uninstall.rb"
180
179
  ]
181
180
  s.homepage = %q{http://github.com/pelle/oauth-plugin}
182
- s.rdoc_options = ["--charset=UTF-8"]
183
181
  s.require_paths = ["lib"]
184
182
  s.rubyforge_project = %q{oauth}
185
183
  s.rubygems_version = %q{1.3.7}
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oauth-plugin
3
3
  version: !ruby/object:Gem::Version
4
- hash: -1876988224
5
4
  prerelease: true
6
5
  segments:
7
6
  - 0
8
7
  - 4
9
8
  - 0
10
- - pre1
11
- version: 0.4.0.pre1
9
+ - pre2
10
+ version: 0.4.0.pre2
12
11
  platform: ruby
13
12
  authors:
14
13
  - Pelle Braendgaard
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2010-11-15 00:00:00 -05:00
18
+ date: 2010-12-06 00:00:00 -05:00
20
19
  default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
@@ -27,7 +26,6 @@ dependencies:
27
26
  requirements:
28
27
  - - ">="
29
28
  - !ruby/object:Gem::Version
30
- hash: 7
31
29
  segments:
32
30
  - 0
33
31
  - 4
@@ -44,7 +42,6 @@ extensions: []
44
42
  extra_rdoc_files:
45
43
  - README.rdoc
46
44
  files:
47
- - .gitignore
48
45
  - CHANGELOG
49
46
  - MIT-LICENSE
50
47
  - README.rdoc
@@ -210,8 +207,8 @@ homepage: http://github.com/pelle/oauth-plugin
210
207
  licenses: []
211
208
 
212
209
  post_install_message:
213
- rdoc_options:
214
- - --charset=UTF-8
210
+ rdoc_options: []
211
+
215
212
  require_paths:
216
213
  - lib
217
214
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -219,7 +216,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
216
  requirements:
220
217
  - - ">="
221
218
  - !ruby/object:Gem::Version
222
- hash: 3
223
219
  segments:
224
220
  - 0
225
221
  version: "0"
@@ -228,7 +224,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
224
  requirements:
229
225
  - - ">"
230
226
  - !ruby/object:Gem::Version
231
- hash: 25
232
227
  segments:
233
228
  - 1
234
229
  - 3
data/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- doc
2
- pkg
3
- *.log
4
- .DS_Store
5
- .svn