Sha256: e300f5a5ae021191c2a21d87ae6879ad2e2acdb35c305a8ced7fc757b2c857ea

Contents?: true

Size: 1.98 KB

Versions: 3

Compression:

Stored size: 1.98 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "epub/parser/version"

Gem::Specification.new do |s|
  s.name        = "epub-parser-io"
  s.version     = EPUB::Parser::VERSION
  s.authors     = ["KITAITI Makoto, Brian Glusman"]
  s.email       = ["KitaitiMakoto@gmail.com", "brian@glusman.me"]
  s.homepage    = "https://github.com/bglusman/epub-parser"
  s.summary     = %q{EPUB 3 Parser}
  s.description = %q{Parse EPUB 3 book loosely}
  s.license     = 'MIT'

  # s.rubyforge_project = "epub-parser"

  s.files         = `git ls-files`.split("\n")
                    .push('test/fixtures/book/OPS/ルートファイル.opf')
                    .push('test/fixtures/book/OPS/日本語.xhtml')
                    .push(Dir['docs/*.md'])
  s.files.reject! do |fn|
    ['"test/fixtures/book/OPS/\343\203\253\343\203\274\343\203\210\343\203\225\343\202\241\343\202\244\343\203\253.opf"', '"test/fixtures/book/OPS/\346\227\245\346\234\254\350\252\236.xhtml"'].include? fn
  end
  s.test_files    = s.files & Dir['{test,spec,features}/**/*.{rb,feature}']
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  s.has_rdoc = 'yard'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'pry'
  s.add_development_dependency 'pry-doc'
  s.add_development_dependency 'test-unit'
  s.add_development_dependency 'test-unit-rr'
  s.add_development_dependency 'test-unit-notify'
  s.add_development_dependency 'simplecov'
  s.add_development_dependency 'thin'
  s.add_development_dependency 'yard'
  s.add_development_dependency 'gem-man'
  s.add_development_dependency 'ronn'
  s.add_development_dependency 'epzip'
  s.add_development_dependency 'epubcheck'
  s.add_development_dependency 'epub_validator'
  s.add_development_dependency 'aruba'

  s.add_runtime_dependency 'enumerabler'
  s.add_runtime_dependency 'zipruby'
  s.add_runtime_dependency 'nokogiri', '~> 1.6'
  s.add_runtime_dependency 'addressable', '>= 2.3.5'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
epub-parser-io-0.1.6b epub-parser.gemspec
epub-parser-io-0.1.6a epub-parser.gemspec
epub-parser-io-0.1.6 epub-parser.gemspec