-
Notifications
You must be signed in to change notification settings - Fork 0
/
atlassian-jwt.gemspec
27 lines (21 loc) · 1.16 KB
/
atlassian-jwt.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'atlassian/jwt/version'
Gem::Specification.new do |spec|
spec.name = 'atlassian-jwt'
spec.version = Atlassian::Jwt::VERSION
spec.authors = ['Spike Ilacqua', 'Seb Ruiz', 'Ngoc Dao']
spec.summary = %q{Encode and decode JWT tokens for use with the Atlassian Connect REST APIs.}
spec.description = %q{This gem simplifies generating the claims needed to authenticate with the Atlassian Connect REST APIs.}
spec.homepage = 'https://bitbucket.org/atlassian/atlassian-jwt-ruby'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'jwt', '~> 2.2.0'
spec.add_development_dependency 'json', '~> 2.2.0'
spec.add_development_dependency 'rake', '~> 12.3.2'
spec.add_development_dependency 'rspec', '~> 3.8.0'
end