-
Notifications
You must be signed in to change notification settings - Fork 7
/
atlassian_jwt_authentication.gemspec
30 lines (24 loc) · 1.21 KB
/
atlassian_jwt_authentication.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
$:.push File.expand_path('../lib', __FILE__)
require 'atlassian-jwt-authentication/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'atlassian-jwt-authentication'
s.version = AtlassianJwtAuthentication::VERSION
s.summary = 'DB architecture and controller filters for dealing with Atlassian\'s JWT authentication'
s.description = 'Atlassian JWT Authentication provides support for handling JWT authentication as required by Atlassian when building add-ons: https://developer.atlassian.com/static/connect/docs/latest/concepts/authentication.html'
s.license = 'MIT'
s.author = 'Laura Barladeanu'
s.email = 'laura@meisterlabs.com'
s.homepage = 'https://meisterlabs.com/'
s.required_ruby_version = '>= 2'
s.files = Dir['CHANGELOG', 'README.md', 'MIT-LICENSE', 'lib/**/*']
s.require_path = 'lib'
s.add_dependency('addressable', '>= 2.4.0')
s.add_dependency('faraday', '>= 0.11')
s.add_dependency('jwt', '>= 2.2.1')
s.add_development_dependency('activerecord', '>= 4.1.0')
s.add_development_dependency('bundler')
s.add_development_dependency('generator_spec')
s.add_development_dependency('rake')
s.add_development_dependency('rspec')
end