-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathjwe.gemspec
29 lines (23 loc) · 910 Bytes
/
jwe.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
# frozen_string_literal: true
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jwe/version'
Gem::Specification.new do |s|
s.name = 'jwe'
s.version = JWE::VERSION
s.summary = 'JSON Web Encryption implementation in Ruby'
s.description = 'A Ruby implementation of the RFC 7516 JSON Web Encryption (JWE) standard'
s.authors = ['Francesco Boffa']
s.email = '[email protected]'
s.homepage = 'https://github.com/jwt/ruby-jwe'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.require_paths = %w[lib]
s.required_ruby_version = '>= 2.5.0'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/jwt/ruby-jwe/issues',
'changelog_uri' => "https://github.com/jwt/ruby-jwe/blob/v#{JWE::VERSION}/CHANGELOG.md",
'rubygems_mfa_required' => 'true'
}
s.add_dependency 'base64'
end