-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlibrary_stdnums.gemspec
More file actions
29 lines (21 loc) · 998 Bytes
/
library_stdnums.gemspec
File metadata and controls
29 lines (21 loc) · 998 Bytes
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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'library_stdnums/version'
Gem::Specification.new do |spec|
spec.name = "library_stdnums"
spec.version = StdNum::VERSION
spec.authors = ["Bill Dueber"]
spec.email = ["none@nowhere.org"]
spec.summary = "A simple set of module functions to normalize, validate, and convert common library standard numbers"
spec.homepage = "https://github.com/billdueber/library_stdnums"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extra_rdoc_files = spec.files.grep(%r{^doc/})
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~>11.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "yard", ">= 0.9.5"
end