Sha256: 3f8667e9b8df0f99299e160330eeaf64995281e74b4d31ea666afd0b7e59810f

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'bitcoiner'
  spec.version       = Bitcoiner::VERSION
  spec.authors       = ['Bryce Kerley', 'Nihad Abbasov']
  spec.email         = ['nihad@42na.in']

  spec.summary       = 'Control the bitcoin nework client over JSON-RPC.'
  spec.description   = 'Automate your Bitcoin transactions with this Ruby interface to the bitcoind JSON-RPC API.'
  spec.homepage      = 'https://github.com/NARKOZ/bitcoiner'

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

  spec.add_dependency 'addressable'
  spec.add_dependency 'typhoeus', '~> 1.3.0'

  spec.add_development_dependency 'bundler', '~> 2.0'
  spec.add_development_dependency 'minitest', '~> 5.0'
  spec.add_development_dependency 'mocha', '~> 1.1.0'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'shoulda-context', '~> 1.2.2'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bitcoiner-0.2.1 bitcoiner.gemspec
bitcoiner-0.2.0 bitcoiner.gemspec