-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpaseto.gemspec
31 lines (26 loc) · 1.1 KB
/
paseto.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
31
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'paseto/version'
Gem::Specification.new do |spec|
spec.name = 'paseto'
spec.version = Paseto::VERSION
spec.authors = ['Michael Guymon', 'Frank Murphy']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Ruby impl of Paseto'
spec.description = 'Ruby impl of Paseto'
spec.homepage = 'https://github.com/mguymon/paseto.rb'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3.0'
spec.add_dependency 'rbnacl', '>= 7.1.1'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pry', '~> 0.11'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.65.0'
spec.add_development_dependency 'rubocop-rspec', '~> 1.32.0'
end