forked from invisiblelines/security_identifiers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
security_identifiers.gemspec
29 lines (25 loc) · 1.16 KB
/
security_identifiers.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'security_identifiers/version'
Gem::Specification.new do |s|
s.name = 'security_identifiers'
s.version = SecurityIdentifiers::VERSION
s.authors = ['Kieran Johnson']
s.email = ['[email protected]']
s.summary = 'Security Identifier validation library for Ruby'
s.description = 'Validate ISIN, CUSIP and SEDOL codes'
s.homepage = 'https://github.com/invisiblelines/security_identifiers'
s.license = 'MIT'
s.files = `git ls-files`.split($RS)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake', '~> 12.0', '>= 12.0.0'
s.add_development_dependency 'activemodel', '5.0.2'
s.add_development_dependency 'guard', '2.12.1'
s.add_development_dependency 'guard-rspec', '4.5.0'
s.add_development_dependency 'rspec', '~> 3.5', '>= 3.5.0'
s.add_development_dependency 'rubocop', '0.47.1'
end