Sha256: 79b194707b7a512abf3cc689148d5522580ee5b98cd183ac7ddc02989c1dfdd2

Contents?: true

Size: 1.57 KB

Versions: 14

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

require_relative 'lib/cardano_wallet/version'

Gem::Specification.new do |spec|
  spec.name          = 'cardano_wallet'
  spec.version       = CardanoWallet::VERSION
  spec.authors       = ['Piotr Stachyra']
  spec.email         = ['piotr.stachyra@gmail.com']

  spec.summary       = 'Ruby wrapper over cardano-wallet.'
  spec.description   = 'Ruby wrapper over cardano-wallet.'
  spec.homepage      = 'https://github.com/piotr-iohk/cardano-wallet-rb'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')

  spec.metadata['allowed_push_host'] = 'https://rubygems.org/'

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = spec.homepage
  spec.metadata['changelog_uri'] = spec.homepage

  # 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_runtime_dependency 'httparty', '~> 0.18.0'

  spec.add_development_dependency 'bip_mnemonic', '~> 0.0.4'
  spec.add_development_dependency 'codecov', '0.2.8'
  spec.add_development_dependency 'rake', '~> 12.3'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'rubocop', '~> 1.11'
  spec.add_development_dependency 'simplecov'
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cardano_wallet-0.3.17 cardano_wallet.gemspec
cardano_wallet-0.3.16 cardano_wallet.gemspec
cardano_wallet-0.3.15 cardano_wallet.gemspec
cardano_wallet-0.3.14 cardano_wallet.gemspec
cardano_wallet-0.3.12 cardano_wallet.gemspec
cardano_wallet-0.3.11 cardano_wallet.gemspec
cardano_wallet-0.3.10 cardano_wallet.gemspec
cardano_wallet-0.3.9 cardano_wallet.gemspec
cardano_wallet-0.3.8 cardano_wallet.gemspec
cardano_wallet-0.3.7 cardano_wallet.gemspec
cardano_wallet-0.3.6 cardano_wallet.gemspec
cardano_wallet-0.3.5 cardano_wallet.gemspec
cardano_wallet-0.3.4 cardano_wallet.gemspec
cardano_wallet-0.3.3 cardano_wallet.gemspec