Sha256: 3d69997178c550cd8b8e0478c88f0ed2b72944117c5a0accc69e5809dd83b2b5

Contents?: true

Size: 948 Bytes

Versions: 1

Compression:

Stored size: 948 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)

$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'companies_house_hub/version'

Gem::Specification.new do |spec|
  spec.name          = 'companies_house_hub'
  spec.version       = CompaniesHouseHub::VERSION
  spec.authors       = ['Ricardo Otero']
  spec.email         = ['oterosantos@gmail.com']
  spec.summary       = 'A REST client for the UK Companies House API'
  spec.description   = 'A REST client for the UK Companies House API, including authentication'
  spec.homepage      = 'https://github.com/rikas/companies_house_hub'
  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 = %w[lib]

  spec.add_dependency 'faraday', '~> 2.7'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
companies_house_hub-0.1.12 companies_house_hub.gemspec