-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathibrain-auth.gemspec
More file actions
39 lines (33 loc) · 1.28 KB
/
ibrain-auth.gemspec
File metadata and controls
39 lines (33 loc) · 1.28 KB
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
32
33
34
35
36
37
38
39
# frozen_string_literal: true
require_relative 'lib/ibrain/auth/version'
Gem::Specification.new do |spec|
spec.name = 'ibrain-auth'
spec.version = Ibrain::Auth::VERSION
spec.authors = ['Tai Nguyen Van']
spec.email = ['john@techfox.io']
spec.homepage = 'https://techfox.io'
spec.summary = 'Its Auth is an sso authen gem for Ruby on Rails.'
spec.description = spec.summary
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/john-techfox/ibrain-auth.git'
spec.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
spec.add_dependency 'devise'
spec.add_dependency 'devise-encryptable'
spec.add_dependency 'devise-i18n'
spec.add_dependency 'devise-jwt'
spec.add_dependency 'ibrain-core'
spec.add_dependency 'rails'
spec.add_dependency 'warden-jwt_auth', '0.6.0'
# Use Omniauth SSO
spec.add_dependency 'omniauth'
spec.add_dependency 'omniauth-apple'
spec.add_dependency 'omniauth-facebook'
spec.add_dependency 'omniauth-google-oauth2'
spec.add_dependency 'omniauth-line'
spec.add_dependency 'omniauth-rails_csrf_protection'
spec.add_dependency 'omniauth-twitter'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
end