forked from thinkthroughmath/omniauth-openid-reconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-openid-reconnect.gemspec
36 lines (33 loc) · 1.87 KB
/
omniauth-openid-reconnect.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/openid_connect/version'
Gem::Specification.new do |spec|
spec.name = "omniauth-openid-reconnect"
spec.version = OmniAuth::OpenIDConnect::VERSION
spec.authors = ["Paul Scarrone","John Bohn"]
spec.email = ["paul.scarrone@gmail.com","jjbohn@gmail.com"]
spec.summary = %q{OpenID Connect Strategy MK2 for OmniAuth}
spec.description = %q{OpenID Connect Strategy MK2 for OmniAuth which is fully compliant with devise and rails and currently maintained. Derived from jjbohn's work which is not actively maintained}
spec.homepage = "https://github.com/thinkthroughmath/omniauth-openid-reconnect"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'activesupport', '>= 0'
spec.add_dependency 'omniauth', '~> 1.1'
spec.add_dependency 'openid_connect', '= 0.7.3'
spec.add_dependency 'addressable', '~> 2.2.8' # Because there is a breaking change in 2.3 with the way rails params arrays are handled
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'minitest', '~> 5.4'
spec.add_development_dependency 'mocha', '~> 1.1'
spec.add_development_dependency 'guard', '~> 2.6'
spec.add_development_dependency 'guard-minitest', '~> 2.3'
spec.add_development_dependency 'guard-bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 10.3'
spec.add_development_dependency 'simplecov', '~> 0.9'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'coveralls', '~> 0.7'
spec.add_development_dependency 'faker', '~> 1.4'
end