File: omniauth-multipassword.gemspec

package info (click to toggle)
ruby-omniauth-multipassword 2.0.0~rc1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 160 kB
  • sloc: ruby: 243; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,012 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
25
26
# frozen_string_literal: true

require File.expand_path('lib/omniauth/multipassword/version', __dir__)

Gem::Specification.new do |gem|
  gem.authors       = ['Jan Graichen']
  gem.email         = ['jgraichen@altimos.de']
  gem.description   = 'A OmniAuth strategy to authenticate using different passwort strategies.'
  gem.summary       = 'A OmniAuth strategy to authenticate using different passwort strategies.'
  gem.homepage      = 'https://github.com/jgraichen/omniauth-multipassword'
  gem.license       = 'MIT'

  gem.required_ruby_version = '>= 2.5'
  gem.metadata = {
    'rubygems_mfa_required' => 'true',
  }

  gem.executables   = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = 'omniauth-multipassword'
  gem.require_paths = ['lib']
  gem.version       = Omniauth::Multipassword::VERSION

  gem.add_dependency 'omniauth', '~> 2.0'
end