-
Notifications
You must be signed in to change notification settings - Fork 23
/
bookshop.gemspec
executable file
·39 lines (33 loc) · 1.69 KB
/
bookshop.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
39
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/bookshop/version", __FILE__)
require File.expand_path("../lib/bookshop/post_install", __FILE__)
Gem::Specification.new do |s|
s.name = 'bookshop'
s.version = Bookshop::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Dave Thompson'
s.email = 'dave@blueheadpublishing.com'
s.homepage = 'http://blueheadpublishing.com/products/bookshop/'
s.summary = 'An agile book publishing framework for building pdf and (e)books based on HTML5, CSS, and JavaScript.'
s.description = 'bookshop is an agile book publishing framework for building pdf and (e)books using HTML5,
CSS, and JavaScript. The framework is optimized to help publishers, editors, and authors
quickly ramp-up, allowing them to jump in and develop their html-to-pdf/(e)book flows by
favoring convention over configuration, setting them up with best-practices, standards
and tools from the start.'
s.license = 'MIT'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'bookshop'
s.has_rdoc = true
s.files = Dir['CHANGELOG.md', 'README.rdoc', 'bin/**/*', 'lib/**/{*,.[a-z]*}']
s.require_path = 'lib'
s.bindir = 'bin/'
s.executables = ['bookshop', 'epubcheck', 'kindlegen', 'zip.exe']
s.add_dependency 'thor', '>= 0.14.6'
s.add_development_dependency 'bundler', '>= 1.0.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'aruba'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'mocha'
s.post_install_message = Bookshop::POST_INSTALL
end