Sha256: e7c1b2c5c54128895c13bdf12f1d0d1037f5af025d492eefbace6fbe83f0246f

Contents?: true

Size: 1006 Bytes

Versions: 2

Compression:

Stored size: 1006 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'credit_gateway/version'

Gem::Specification.new do |spec|
  spec.name          = 'credit_gateway'
  spec.version       = CreditGateway::VERSION
  spec.authors       = ['Finpoint']
  spec.email         = ['nenad@finpoint.co.uk']

  spec.summary       = 'CRIF CreditGateway client'
  spec.description   = 'CRIF CreditGateway client'
  spec.homepage      = 'https://www.finpoint.co.uk'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |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_dependency 'faraday'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
credit_gateway-0.3.2 credit_gateway.gemspec
credit_gateway-0.3.1 credit_gateway.gemspec