File: omniauth-authentiq.gemspec

package info (click to toggle)
ruby-omniauth-authentiq 0.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 104 kB
  • sloc: ruby: 200; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/authentiq/version'

Gem::Specification.new do |spec|
  spec.name          = "omniauth-authentiq"
  spec.version       = OmniAuth::Authentiq::VERSION
  spec.authors       = ["Alexandros Keramidas"]
  spec.email         = ["alex@authentiq.com", "support@authentiq.com"]

  spec.summary       = %q{Authentiq strategy for OmniAuth}
  spec.description   = %q{Strategy to enable passwordless authentication in OmniAuth via Authentiq.}
  spec.homepage      = "https://github.com/AuthentiqID/omniauth-authentiq"
  spec.licenses      = %w(MIT)

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency 'jwt', '>= 1.5'
  spec.add_runtime_dependency 'omniauth-oauth2', '>= 1.5'
end