-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathgimli.gemspec
39 lines (29 loc) · 1.18 KB
/
gimli.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
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include? lib
require "gimli/version"
Gem::Specification.new do |s|
s.name = "gimli"
s.version = Gimli::VERSION
s.authors = "Fredrik Wallgren"
s.email = "fredrik.wallgren@gmail.com"
s.homepage = "https://github.com/walle/gimli"
s.summary = "Utility for converting markup files to pdf files."
s.description = "Utility for converting markup files to pdf files. Useful for reports etc."
s.rubyforge_project = s.name
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE]
s.add_dependency 'github-markup', '~> 1.3'
s.add_dependency 'redcarpet', '~> 3.2'
s.add_dependency 'RedCloth', '~> 4.2.7'
s.add_dependency 'coderay', '~> 1.1'
s.add_dependency 'nokogiri', '~> 1.8.0'
s.add_dependency 'wkhtmltopdf-binary', '~> 0.12.3'
s.add_dependency 'optiflag', '~> 0.7'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rr'
s.add_development_dependency 'bundler'
s.files = Dir.glob("{bin,ext,lib,spec,config}/**/*") + ['LICENSE', 'README.md', 'CHANGELOG.md']
s.executables = ['gimli']
s.require_paths = ['lib']
end