forked from jwt/ruby-jwe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjwe.gemspec
24 lines (20 loc) · 809 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
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 = 'http://github.com/aomega08/jwe'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.require_paths = %w[lib]
s.required_ruby_version = '>= 2.0.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'codeclimate-test-reporter'
end