-
Notifications
You must be signed in to change notification settings - Fork 6
/
omniauth-pam.gemspec
28 lines (23 loc) · 992 Bytes
/
omniauth-pam.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
$:.push File.expand_path("lib", __dir__)
require "omniauth-pam/version"
Gem::Specification.new do |s|
s.name = "omniauth-pam"
s.version = OmniAuth::PAM::VERSION
s.authors = ["Nick Charlton"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/nickcharlton/omniauth-pam"
s.license = "MIT"
s.summary = "A PAM strategy for OmniAuth."
s.description = "An OmniAuth strategy to allow you to authenticate " \
"against Pluggable Authentication Modules (PAM)."
s.files = `git ls-files`.split($RS)
s.executables = s.files.grep(/^exe/) { |f| File.basename(f) }
s.test_files = s.files.grep(/^(test|spec|features)/)
s.require_paths = ["lib"]
s.add_runtime_dependency 'omniauth', '~> 1.5'
s.add_runtime_dependency 'rpam2', '~> 4.0'
s.add_development_dependency "pry"
s.add_development_dependency "rack-test"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
end