forked from blindsidenetworks/omniauth-bn-office365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-bn-office365.gemspec
26 lines (20 loc) · 1.1 KB
/
omniauth-bn-office365.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require File.expand_path('../lib/omniauth/omniauth-bn-office365/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "omniauth-bn-office365"
gem.version = OmniAuth::BN::OFFICE365::VERSION
gem.authors = ["shawn-higgins1"]
gem.email = ["[email protected]"]
gem.summary = "An omniauth provider for Azure Active Directory"
gem.description = "A ruby gem for using omniauth to authenticate Azure Active Directory users"
gem.homepage = "https://github.com/blindsidenetworks/omniauth-bn-office365"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
gem.bindir = "exe"
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_development_dependency "bundler", "~> 2.0"
gem.add_runtime_dependency 'omniauth', '~> 2.1', '>= 2.1.0'
gem.add_runtime_dependency 'omniauth-oauth2', '1.7.2'
end