forked from castle/ruby-u2f
-
Notifications
You must be signed in to change notification settings - Fork 1
/
u2f.gemspec
25 lines (21 loc) · 946 Bytes
/
u2f.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
$:.push File.expand_path("../lib", __FILE__)
require 'version'
Gem::Specification.new do |s|
s.name = 'u2f'
s.version = U2F::VERSION
s.summary = 'U2F library'
s.description = 'Library for handling registration and authentication of U2F devices'
s.authors = ['Johan Brissmyr', 'Sebastian Wallin']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/castle/ruby-u2f'
s.license = 'MIT'
s.required_ruby_version = '>= 2.0.0'
s.files = Dir['{lib}/**/*'] + ['README.md', 'LICENSE']
s.test_files = Dir['spec/**/*']
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'json_expressions', '~> 0.8.3'
s.add_development_dependency 'rubocop', '~> 0.27.1'
s.add_development_dependency 'coveralls', '~> 0.8.10'
s.add_development_dependency 'simplecov', '~> 0.11.1'
end