Sha256: 1ada128fecc519fcf53be3837f5801271ac657833c1c8855f91254120d0d6133

Contents?: true

Size: 1.5 KB

Versions: 2

Compression:

Stored size: 1.5 KB

Contents

# -*- 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.authors     = ['D.a. Thompson']
  s.email       = ['da@blueheadpublishing.com']
  s.homepage    = "http://rubygems.org/gems/bookshop"
  s.summary     = "A publishing framework for html-to-(e)book toolchain happiness and sustainable productivity."
  s.description = "bookShop is a publishing framework for html-to-(e)book toolchain happiness and sustainable productivity. 
                    The framework is optimized to help developers quickly ramp-up, allowing them to more rapidly 
                    jump in and develop their html-to-(e)book (print-pdf, epub, mobi, etc.) 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.add_dependency "thor", ">= 0.14.6"
  s.add_dependency "nokogiri"
  s.add_development_dependency "bundler", ">= 1.0.0"
  s.add_development_dependency "rspec"

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
  
  s.post_install_message = Bookshop::POST_INSTALL
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bookshop-0.0.15 bookshop.gemspec
bookshop-0.0.14 bookshop.gemspec