-
Notifications
You must be signed in to change notification settings - Fork 67
/
omniauth-auth0.gemspec
30 lines (23 loc) · 1.2 KB
/
omniauth-auth0.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'omniauth-auth0/version'
Gem::Specification.new do |s|
s.name = 'omniauth-auth0'
s.version = OmniAuth::Auth0::VERSION
s.authors = ['Auth0']
s.email = ['info@auth0.com']
s.homepage = 'https://github.com/auth0/omniauth-auth0'
s.summary = 'OmniAuth OAuth2 strategy for the Auth0 platform.'
s.description = %q{Auth0 is an authentication broker that supports social identity providers as well as enterprise identity providers such as Active Directory, LDAP, Google Apps, Salesforce.
OmniAuth is a library that standardizes multi-provider authentication for web applications. It was created to be powerful, flexible, and do as little as possible.
omniauth-auth0 is the OmniAuth strategy for Auth0.
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency 'omniauth', '~> 2'
s.add_runtime_dependency 'omniauth-oauth2', '~> 1'
s.add_development_dependency 'bundler'
s.license = 'MIT'
end