Sha256: 88d1c30295b93ceaec16c5651c91e8f77da3ca3eebc6e2ecbeca76c5d423db2e
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
# -*- mode: ruby; coding: utf-8 -*- # # Copyright (C) 2013 Kouhei Sutou <kou@clear-code.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA clean_white_space = lambda do |entry| entry.gsub(/(\A\n+|\n+\z)/, '') + "\n" end Gem::Specification.new do |spec| spec.name = "chupa-text-decomposer-pdf" spec.version = "1.0.2" spec.homepage = "https://github.com/ranguba/chupa-text-decomposer-pdf" spec.authors = ["Kouhei Sutou"] spec.email = ["kou@clear-code.com"] readme = File.read("README.md", :encoding => "UTF-8") entries = readme.split(/^\#\#\s(.*)$/) description = clean_white_space.call(entries[entries.index("Description") + 1]) spec.summary = description.split(/\n\n+/, 2).first spec.description = description spec.license = "LGPLv2.1 or later" spec.files = ["#{spec.name}.gemspec"] spec.files += ["README.md", "LICENSE.txt", "Rakefile", "Gemfile"] spec.files += [".yardopts"] spec.files += Dir.glob("lib/**/*.rb") spec.files += Dir.glob("doc/text/*") spec.files += Dir.glob("test/**/*") spec.add_runtime_dependency("chupa-text") spec.add_runtime_dependency("poppler") spec.add_development_dependency("bundler") spec.add_development_dependency("rake") spec.add_development_dependency("test-unit") spec.add_development_dependency("packnga") spec.add_development_dependency("redcarpet") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chupa-text-decomposer-pdf-1.0.2 | chupa-text-decomposer-pdf.gemspec |