-
Notifications
You must be signed in to change notification settings - Fork 4
/
bookie.gemspec
25 lines (21 loc) · 972 Bytes
/
bookie.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
require "#{File.dirname(__FILE__)}/lib/bookie/version"
Gem::Specification.new do |s|
s.name = "bookie"
s.version = Bookie::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Gregory Brown"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/sandal/bookie"
s.summary = "Experiment in pure ruby ebook generation tooling"
s.description = "Eventually this may be a markdown to PDF, ePUB, MOBI "+
"processor. For now it's just something I'm playing "+
"around with, so use at your own risk"
s.add_dependency('prawn', '~> 0.12.0')
s.add_dependency('eeepub', '~> 0.7.1')
s.add_dependency('redcarpet', '~> 2.0.0b5')
s.files = Dir.glob("{lib,test,examples,doc,data}/**/*") + %w(GPLv3 README.md CHANGELOG.md)
s.require_path = 'lib'
s.required_ruby_version = ">= 1.9.2"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "bookie"
end