Sha256: 6457fae9446369006a9335923f7ea21a1cfa4e6295351830b227b6bc888bc180

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mtgox/version'

Gem::Specification.new do |spec|
  spec.add_dependency 'faraday', '~> 0.8'
  spec.add_dependency 'faraday_middleware', '~> 0.8'
  spec.add_dependency 'multi_json', '~> 1.3'
  spec.add_development_dependency 'bundler', '~> 1.0'
  spec.author      = "Erik Michaels-Ober"
  spec.cert_chain  = ['certs/sferik.pem']
  spec.description = %q{Ruby wrapper for the Mt. Gox Trade API. Mt. Gox allows you to trade US Dollars (USD) for Bitcoins (BTC) or Bitcoins for US Dollars.}
  spec.email       = 'sferik@gmail.com'
  spec.files       = `git ls-files`.split("\n")
  spec.files       = %w(.yardopts CONTRIBUTING.md LICENSE.md README.md Rakefile mtgox.gemspec)
  spec.files      += Dir.glob("lib/**/*.rb")
  spec.files      += Dir.glob("spec/**/*")
  spec.homepage    = 'https://github.com/sferik/mtgox'
  spec.name        = 'mtgox'
  spec.require_paths = ['lib']
  spec.required_ruby_version = '>= 1.9.2'
  spec.required_rubygems_version = '>= 1.3.6'
  spec.signing_key = File.expand_path("~/.gem/private_key.pem") if $0 =~ /gem\z/
  spec.summary     = %q{Ruby wrapper for the Mt. Gox Trade API}
  spec.test_files  = Dir.glob("spec/**/*")
  spec.version     = MtGox::Version.to_s
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mtgox-0.8.1 mtgox.gemspec