forked from adjust/shrimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shrimp.gemspec
27 lines (25 loc) · 1.1 KB
/
shrimp.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'shrimp/version'
Gem::Specification.new do |gem|
gem.name = "shrimp"
gem.version = Shrimp::VERSION
gem.authors = ["Manuel Kniep"]
gem.email = %w([email protected])
gem.description = %q{html to pdf with phantomjs}
gem.summary = %q{a phantomjs based pdf renderer}
gem.homepage = "http://github.com/adeven/shrimp"
gem.files = `git ls-files`.split($/)
gem.files.reject! { |fn| fn.include? "script" }
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = %w(lib)
gem.requirements << 'phantomjs, v1.6 or greater'
gem.add_runtime_dependency "json"
# Developmnet Dependencies
gem.add_development_dependency(%q<rake>, [">=0.9.2"])
gem.add_development_dependency(%q<rspec>, [">= 2.2.0"])
gem.add_development_dependency(%q<rack-test>, [">= 0.5.6"])
gem.add_development_dependency(%q<rack>, ["= 1.4.1"])
end