# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "booky/version" Gem::Specification.new do |s| s.name = "booky" s.version = Booky::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Thomas Fankhauser"] s.email = ["tommylefunk@googlemail.com"] s.homepage = "http://www.southdesign.de" s.summary = %q{Create a pdf book from a textile} s.description = %q{Create a full blown book pdf from a textile file using prawn} s.rubyforge_project = "booky" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_dependency "RedCloth", "~> 4.2.8" s.add_dependency "redcloth-formatters-ast", "~> 0.0.3" s.add_dependency "colorize", "~> 0.5.8" s.add_dependency "prawn", "~> 1.0.0.rc1" s.add_dependency "coderay", "~> 1.0.6" s.add_dependency "spreadsheet", "~> 0.7.2" s.add_dependency "json", "~> 1.7.3" end