-
Notifications
You must be signed in to change notification settings - Fork 1
/
docparser.gemspec
31 lines (26 loc) · 1.18 KB
/
docparser.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'docparser/version'
Gem::Specification.new do |spec|
spec.name = 'docparser'
spec.version = DocParser::VERSION
spec.authors = ['Jurriaan Pruis']
spec.email = ['[email protected]']
spec.description = 'DocParser is a Ruby Gem for webscraping'
spec.summary = 'DocParser is a Ruby Gem for webscraping'
spec.homepage = 'https://github.com/jurriaan/docparser'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.extra_rdoc_files = ['README.md', 'LICENSE']
spec.add_runtime_dependency 'axlsx', '~> 2.0.1'
spec.add_runtime_dependency 'nokogiri', '~> 1.10.0'
spec.add_runtime_dependency 'parallel', '~> 1.10'
spec.add_development_dependency 'github-markup'
spec.add_development_dependency 'kramdown', '~> 2.2.1'
spec.add_development_dependency 'yard'
end