-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinfoboxer.gemspec
38 lines (33 loc) · 988 Bytes
/
infoboxer.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
require './lib/infoboxer/version'
Gem::Specification.new do |s|
s.name = 'infoboxer'
s.version = Infoboxer::VERSION
s.authors = ['Victor Shepelev']
s.email = '[email protected]'
s.homepage = 'https://github.com/molybdenum-99/infoboxer'
s.summary = 'MediaWiki client and parser, targeting information extraction.'
s.description = <<-EOF
Infoboxer is library targeting use of Wikipedia (or any other
MediaWiki-based wiki) as a rich powerful data source.
EOF
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.1.0'
s.files = `git ls-files`.split($RS).reject do |file|
file =~ /^(?:
spec\/.*
|Gemfile
|Rakefile
|\.rspec
|\.gitignore
|\.rubocop.yml
|\.travis.yml
)$/x
end
s.require_paths = ["lib"]
s.bindir = 'bin'
s.executables << 'infoboxer'
s.add_dependency 'htmlentities'
s.add_dependency 'mediawiktory', '= 0.1.3'
s.add_dependency 'addressable'
s.add_dependency 'terminal-table'
end