-
Notifications
You must be signed in to change notification settings - Fork 1
/
omniauth-seb-elink.gemspec
31 lines (26 loc) · 1.11 KB
/
omniauth-seb-elink.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/seb/version'
Gem::Specification.new do |gem|
gem.name = 'omniauth-seb-elink'
gem.version = Omniauth::Seb::VERSION
gem.authors = ['Mitigate']
gem.email = ['[email protected]']
gem.description = %q{OmniAuth strategy for SEB e-link}
gem.summary = %q{OmniAuth strategy for SEB e-link}
gem.homepage = 'https://github.com/mitigate-dev/omniauth-seb-elink'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.7'
gem.add_runtime_dependency 'omniauth', '~> 2.1'
gem.add_runtime_dependency 'i18n'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rack-session'
end