Sha256: d91bd74a73cc3422d785130220bfe8beac6e95c5f0b43e243751d5adc6f50f4a

Contents?: true

Size: 1002 Bytes

Versions: 1

Compression:

Stored size: 1002 Bytes

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "gutenberg_rdf/version"

Gem::Specification.new do |spec|
  spec.name          = "gutenberg_rdf"
  spec.version       = GutenbergRdf::VERSION
  spec.authors       = ["Michael R. Cook"]
  spec.email         = ["git@mrcook.uk"]

  spec.summary       = %q{A Ruby wrapper for the Project Gutenberg RDF catalog files.}
  spec.description   = %q{A Ruby wrapper for the Project Gutenberg RDF catalog files (requires Ruby 2).}
  spec.homepage      = "https://github.com/mrcook/gutenberg_rdf"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.0.0" # so we have UTF-8 by default

  spec.add_development_dependency "rspec", ">= 3.4.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gutenberg_rdf-1.0.0 gutenberg_rdf.gemspec