Sha256: a3556dd608b91d3d3a82dda03e62673fba9ec621c6dc18b8e40f12585eb601d5

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

# frozen_string_literal: true

require_relative 'lib/online_payment_platform/version'

Gem::Specification.new do |spec|
  spec.name          = 'online_payment_platform'
  spec.version       = OnlinePaymentPlatform::VERSION
  spec.authors       = ['Dennis de Vulder']
  spec.email         = ['dennisdevulder@gmail.com']

  spec.summary       = 'A ruby wrapper for OPP'
  spec.description   = spec.summary
  spec.homepage      = 'https://github.com/advalley/onlinepaymentplatform'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = spec.homepage
  spec.metadata['changelog_uri'] = 'https://github.com/advalley/onlinepaymentplatform/blob/main/CHANGELOG.md'

  # 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_development_dependency 'rspec'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
online_payment_platform-0.0.3 online_payment_platform.gemspec
online_payment_platform-0.0.2 online_payment_platform.gemspec
online_payment_platform-0.0.1 online_payment_platform.gemspec
online_payment_platform-0.0.0 online_payment_platform.gemspec