Sha256: 29892a837b9a0e335f4e6ffaa63746cd7636e4d637043e2001fc2daf8b57902a

Contents?: true

Size: 1.61 KB

Versions: 1

Compression:

Stored size: 1.61 KB

Contents

# -*- encoding: utf-8 -*-
require './lib/rpub/version'

Gem::Specification.new do |s|
  # Metadata
  s.name        = 'rpub'
  s.version     = Rpub::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Arjan van der Gaag']
  s.email       = %q{arjan@arjanvandergaag.nl}
  s.description = %q{an ePub generation library in Ruby}
  s.homepage    = %q{http://avdgaag.github.com/rpub}
  s.summary     = <<-EOS
rPub is a command-line tool that generates a collection of plain text input
files into an eBook in ePub format. It provides several related functions to
make working with ePub files a little easier:

* Generation of table of contents
* Tracking of references to tables or figures
* Validation of output file
* Packaging your eBook in an archive with additional README file
* Very simple version control
EOS

  # Files
  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"]

  # Rdoc
  s.rdoc_options = ['--charset=UTF-8']
  s.extra_rdoc_files = [
     'LICENSE',
     'README.md',
     'HISTORY.md'
  ]

  # Dependencies
  s.add_runtime_dependency 'typogruby'
  s.add_runtime_dependency 'kramdown'
  s.add_runtime_dependency 'rubyzip'
  s.add_runtime_dependency 'builder'
  s.add_development_dependency 'yard'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'guard'
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'rb-fsevent'
  s.add_development_dependency 'growl'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rpub-0.1.0 rpub.gemspec