forked from algolia/html-extractor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
algolia_html_extractor.gemspec
38 lines (33 loc) · 1.27 KB
/
algolia_html_extractor.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 File.join(File.dirname(__FILE__), 'lib', 'version')
Gem::Specification.new do |gem|
# Required attributes
gem.name = 'algolia_html_extractor'
gem.summary = 'Convert HTML content into Algolia records'
gem.version = AlgoliaHTMLExtractorVersion.to_s
# Recommended attributes
gem.authors = ['Tim Carry']
gem.description = 'Take any arbitrary HTML as input and extract its '\
'content as a list of records, including contents and hierarchy.'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/algolia/html-extractor'
gem.licenses = ['MIT']
# Dependencies
gem.add_runtime_dependency 'json', '~> 2.0'
gem.add_runtime_dependency 'nokogiri', '>= 1.13.2'
gem.add_development_dependency 'coveralls', '~> 0.8.21'
gem.add_development_dependency 'flay', '~> 2.6'
gem.add_development_dependency 'flog', '~> 4.3'
gem.add_development_dependency 'guard', '~> 2.14'
gem.add_development_dependency 'guard-rake', '~> 1.0'
gem.add_development_dependency 'guard-rspec', '~> 4.6'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rubocop', '~> 0.51'
gem.add_development_dependency 'simplecov', '~> 0.14.1'
# Files
gem.files = Dir[
'lib/*.rb',
'README.md',
'CONTRIBUTING.md',
'LICENSE.txt',
]
end