gds-sso 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gds-sso
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.5.3
5
+ version: 0.5.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Matt Patterson
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2012-04-26 00:00:00 Z
14
+ date: 2012-05-11 00:00:00 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -152,10 +152,32 @@ dependencies:
152
152
  requirements:
153
153
  - - ~>
154
154
  - !ruby/object:Gem::Version
155
- version: 0.3.1
155
+ version: 0.3.2
156
156
  type: :development
157
157
  prerelease: false
158
158
  version_requirements: *id013
159
+ - !ruby/object:Gem::Dependency
160
+ name: gem_publisher
161
+ requirement: &id014 !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ~>
165
+ - !ruby/object:Gem::Version
166
+ version: 1.0.0
167
+ type: :development
168
+ prerelease: false
169
+ version_requirements: *id014
170
+ - !ruby/object:Gem::Dependency
171
+ name: thor
172
+ requirement: &id015 !ruby/object:Gem::Requirement
173
+ none: false
174
+ requirements:
175
+ - - "="
176
+ - !ruby/object:Gem::Version
177
+ version: 0.14.6
178
+ type: :development
179
+ prerelease: false
180
+ version_requirements: *id015
159
181
  description: Client for GDS' OAuth 2-based SSO
160
182
  email:
161
183
  - matt@constituentparts.com
@@ -167,43 +189,43 @@ extensions: []
167
189
  extra_rdoc_files: []
168
190
 
169
191
  files:
170
- - app/controllers/authentications_controller.rb
171
192
  - app/views/authentications/failure.html.erb
193
+ - app/controllers/authentications_controller.rb
172
194
  - config/routes.rb
173
- - lib/gds-sso/api_access.rb
174
- - lib/gds-sso/config.rb
195
+ - lib/gds-sso.rb
175
196
  - lib/gds-sso/controller_methods.rb
176
197
  - lib/gds-sso/failure_app.rb
177
- - lib/gds-sso/omniauth_strategy.rb
198
+ - lib/gds-sso/config.rb
178
199
  - lib/gds-sso/user.rb
179
- - lib/gds-sso/version.rb
180
200
  - lib/gds-sso/warden_config.rb
181
- - lib/gds-sso.rb
201
+ - lib/gds-sso/api_access.rb
202
+ - lib/gds-sso/omniauth_strategy.rb
203
+ - lib/gds-sso/version.rb
182
204
  - README.md
183
205
  - Gemfile
184
206
  - Rakefile
185
- - test/gds_sso_strategy_test.rb
186
- - test/omniauth_strategy_test.rb
187
207
  - test/test_helper.rb
208
+ - test/omniauth_strategy_test.rb
209
+ - test/gds_sso_strategy_test.rb
188
210
  - test/user_test.rb
189
- - spec/fixtures/integration/sign-on-o-tron.sql
190
- - spec/fixtures/integration/sign-on-o-tron_database.yml
191
- - spec/fixtures/integration/signonotron2.sql
192
- - spec/fixtures/integration/signonotron2_database.yml
193
- - spec/internal/app/controllers/application_controller.rb
211
+ - spec/requests/end_to_end_spec.rb
212
+ - spec/requests/authentication_soot2.rb
213
+ - spec/internal/log/test.log
214
+ - spec/internal/public/favicon.ico
194
215
  - spec/internal/app/controllers/example_controller.rb
216
+ - spec/internal/app/controllers/application_controller.rb
195
217
  - spec/internal/app/models/user.rb
196
- - spec/internal/config/database.yml
197
- - spec/internal/config/initializers/gds-sso.rb
198
218
  - spec/internal/config/routes.rb
219
+ - spec/internal/config/initializers/gds-sso.rb
220
+ - spec/internal/config/database.yml
199
221
  - spec/internal/db/schema.rb
200
- - spec/internal/log/test.log
201
- - spec/internal/public/favicon.ico
202
- - spec/requests/authentication_soot2.rb
203
- - spec/requests/end_to_end_spec.rb
204
- - spec/spec_helper.rb
205
222
  - spec/support/signonotron2_integration_helpers.rb
223
+ - spec/fixtures/integration/sign-on-o-tron_database.yml
224
+ - spec/fixtures/integration/sign-on-o-tron.sql
225
+ - spec/fixtures/integration/signonotron2.sql
226
+ - spec/fixtures/integration/signonotron2_database.yml
206
227
  - spec/tasks/signonotron_tasks.rake
228
+ - spec/spec_helper.rb
207
229
  homepage: https://github.com/alphagov/gds-sso
208
230
  licenses: []
209
231
 
@@ -217,7 +239,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
217
239
  requirements:
218
240
  - - ">="
219
241
  - !ruby/object:Gem::Version
220
- hash: -2627943247196164465
242
+ hash: -4356684067939052907
221
243
  segments:
222
244
  - 0
223
245
  version: "0"
@@ -226,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
248
  requirements:
227
249
  - - ">="
228
250
  - !ruby/object:Gem::Version
229
- hash: -2627943247196164465
251
+ hash: -4356684067939052907
230
252
  segments:
231
253
  - 0
232
254
  version: "0"
@@ -238,25 +260,25 @@ signing_key:
238
260
  specification_version: 3
239
261
  summary: Client for GDS' OAuth 2-based SSO
240
262
  test_files:
241
- - test/gds_sso_strategy_test.rb
242
- - test/omniauth_strategy_test.rb
243
263
  - test/test_helper.rb
264
+ - test/omniauth_strategy_test.rb
265
+ - test/gds_sso_strategy_test.rb
244
266
  - test/user_test.rb
245
- - spec/fixtures/integration/sign-on-o-tron.sql
246
- - spec/fixtures/integration/sign-on-o-tron_database.yml
247
- - spec/fixtures/integration/signonotron2.sql
248
- - spec/fixtures/integration/signonotron2_database.yml
249
- - spec/internal/app/controllers/application_controller.rb
267
+ - spec/requests/end_to_end_spec.rb
268
+ - spec/requests/authentication_soot2.rb
269
+ - spec/internal/log/test.log
270
+ - spec/internal/public/favicon.ico
250
271
  - spec/internal/app/controllers/example_controller.rb
272
+ - spec/internal/app/controllers/application_controller.rb
251
273
  - spec/internal/app/models/user.rb
252
- - spec/internal/config/database.yml
253
- - spec/internal/config/initializers/gds-sso.rb
254
274
  - spec/internal/config/routes.rb
275
+ - spec/internal/config/initializers/gds-sso.rb
276
+ - spec/internal/config/database.yml
255
277
  - spec/internal/db/schema.rb
256
- - spec/internal/log/test.log
257
- - spec/internal/public/favicon.ico
258
- - spec/requests/authentication_soot2.rb
259
- - spec/requests/end_to_end_spec.rb
260
- - spec/spec_helper.rb
261
278
  - spec/support/signonotron2_integration_helpers.rb
279
+ - spec/fixtures/integration/sign-on-o-tron_database.yml
280
+ - spec/fixtures/integration/sign-on-o-tron.sql
281
+ - spec/fixtures/integration/signonotron2.sql
282
+ - spec/fixtures/integration/signonotron2_database.yml
262
283
  - spec/tasks/signonotron_tasks.rake
284
+ - spec/spec_helper.rb