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
|
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "omniauth-ultraauth/version"
Gem::Specification.new do |spec|
spec.name = "omniauth-ultraauth"
spec.version = OmniAuth::UltraAuth::VERSION
spec.authors = ["Kartikey Tanna"]
spec.email = ["tannakartikey@gmail.com"]
spec.summary = %q{Omniauth strategy for UltraAuth.}
spec.description = %q{Eliminate customer phishing / hijacking and increase user satisfaction with password-less authentication.}
spec.homepage = "https://ultraauth.com"
spec.license = "MIT"
spec.files = Dir.glob("**/*").select {|v| v !~ /^debian/}
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "gitlab-omniauth-openid-connect", ">= 0.8.0"
spec.add_development_dependency "bundler", "~> 1.17"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end
|