-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpdf2html.gemspec
More file actions
28 lines (23 loc) · 949 Bytes
/
Copy pathpdf2html.gemspec
File metadata and controls
28 lines (23 loc) · 949 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
28
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pdf2html/version'
Gem::Specification.new do |s|
s.name = 'pdf2html'
s.version = Pdf2Html::VERSION.dup
s.platform = Gem::Platform::RUBY
s.author = 'Aleksandr Schigol'
s.email = 'aleksandr@schigol.com'
s.description = 'Ruby wrapper for the awesome pdf2htmlex'
s.summary = 'Much pdf2htmlex love'
s.homepage = 'https://github.com/4oZ/pdf2html'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_runtime_dependency 'cocaine', ['= 0.5.3']
s.add_development_dependency 'bundler', '>= 1.3'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
end