Sha256: 9edc92bbfca940f64ffd8c8e33bd2912f6055e68e07d8bf4a315ca8d71fa8cce

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'hermes-scraper'
  spec.version       = Hermes::Scraper::VERSION
  spec.authors       = ['Luke Farrar']
  spec.email         = ['luke.farrar@thebookpeople.co.uk']
  spec.license       = 'GPL-3.0'
  spec.summary       = 'Scrapes tracking info from the HTML on Hermes website.'
  spec.description   = 'Retrieves parcel delivery information from the Hermes website for a given tracking code.'
  spec.homepage      = 'https://github.com/TheBookPeople/hermes-scraper'

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
  else
    raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
  end

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

  spec.add_development_dependency 'bundler', '~> 1.12'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'mechanize', '~> 2.7', '>= 2.7.4'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hermes-scraper-0.0.5 hermes-scraper.gemspec