Sha256: e7e9fc951e64b93ea09f77e596e00ac2bcae1cb665fbf66da6327c32380f43c9
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "eeepub_ext" s.version = "0.8.4" s.platform = Gem::Platform::RUBY s.authors = ["jugyo"] s.email = ["agilecreativity@gmail.com"] # NOTE: the original location of the gem # s.homepage = "http://github.com/jugyo/eeepub" # NOTE: the current location of the modified gem s.homepage = "https://github.com/agilecreativity/eeepub" s.summary = %q{ePub generator - with rubyzip bug fix (unofficial fork version)} s.description = %q{EeePub is a Ruby ePub generator. This code is baded on the original eeepub version 0.8.1. I added the bug fix to rubyzip to make it work with my own gem (source2epub). This gem will be deprecated as soon as the original author (jugyo) merge the pull request from the community with this change and many others fixes.} s.required_ruby_version = ">= 2.0.0" 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 "builder", "~> 3.2" s.add_dependency "rubyzip", "~> 1.2" s.add_development_dependency "rspec", "~> 3.1" s.add_development_dependency "nokogiri", "~> 1.6" s.add_development_dependency "rr", "~> 1.1" s.add_development_dependency "simplecov", "~> 0.9" s.add_development_dependency "pry", "~> 0.10" s.add_development_dependency "pry-byebug", '~> 3.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eeepub_ext-0.8.4 | eeepub.gemspec |