-
Notifications
You must be signed in to change notification settings - Fork 32
/
namae.gemspec
51 lines (43 loc) · 1.3 KB
/
namae.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'namae/version'
Gem::Specification.new do |s|
s.name = 'namae'
s.version = Namae::Version::STRING.dup
s.homepage = 'https://github.com/berkmancenter/namae'
s.email = ['[email protected]']
s.authors = ['Sylvester Keil']
s.licenses = ['AGPL-3.0', 'BSD-2-Clause']
s.summary =
'Namae (名前) parses personal names and splits them into their component parts.'
s.description = %q{
Namae (名前) is a parser for human names. It recognizes personal names of
various cultural backgrounds and tries to split them into their component
parts (e.g., given and family names, honorifics etc.).
}.gsub(/\s+/, ' ')
s.add_runtime_dependency('racc', '~> 1.7')
s.require_path = 'lib'
s.rdoc_options = %w{
--line-numbers
--inline-source
--title 'Namae'
--main README.md
--exclude lib/namae/parser.rb
}
s.extra_rdoc_files = %w{README.md AGPL}
s.files =
`git ls-files`.split("\n") -
`git ls-files features spec .github`.split("\n") - %w{
.codeclimate.yml
.coveralls.yml
.gitignore
.rspec
.rubocop.yml
.simplecov
Gemfile
Rakefile
cucumber.yml
namae.gemspec
}
end