-
Notifications
You must be signed in to change notification settings - Fork 63
/
libreconv.gemspec
31 lines (26 loc) · 1.15 KB
/
libreconv.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
# encoding: UTF-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'libreconv/version'
Gem::Specification.new do |spec|
spec.name = 'libreconv'
spec.version = Libreconv::VERSION
spec.authors = ['Richard Nyström', 'Nathan Broadbent']
spec.email = ['[email protected]']
spec.description = 'Convert office documents to PDF using LibreOffice.'
spec.summary = 'Convert office documents to PDF.'
spec.homepage = 'https://github.com/FormAPI/libreconv'
spec.license = 'MIT'
spec.files = Dir.chdir(File.expand_path('../', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '>= 0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rspec'
spec.add_development_dependency 'webmock'
end