Sha256: 6050919e988fee349d815a1f00104e0027847e137c7c978987f35c8a2d324a5e

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'patentscope/version'

Gem::Specification.new do |spec|
  spec.name          = "patentscope"
  spec.version       = Patentscope::VERSION
  spec.licenses      = "MIT"
  spec.authors       = ["Chong-Yee Khoo"]
  spec.email         = ["mail@cykhoo.com"]

  spec.summary       = %q{Ruby interface with WIPO PATENTSCOPE Web Service}
  spec.description   = %q{Ruby interface to the PATENTSCOPE Web Service provided by the World Intellectual Property Organisation. Requires a subscription to the Patentscope Web Service}
  spec.homepage      = "http://www.cantab-ip.com"

  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.add_development_dependency 'dotenv', '~> 2.2'
  spec.add_development_dependency 'rake', '~> 12.2'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'vcr', '~> 3.0'
  spec.add_development_dependency 'webmock', '~> 3.1'

  spec.add_runtime_dependency 'nokogiri', '~> 1.8'
  spec.add_runtime_dependency 'unicode_titlecase', '~> 0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
patentscope-0.0.5 patentscope.gemspec
patentscope-0.0.4 patentscope.gemspec