-
Notifications
You must be signed in to change notification settings - Fork 57
/
bitcoin-client.gemspec
31 lines (27 loc) · 1.34 KB
/
bitcoin-client.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bitcoin-client/version"
Gem::Specification.new do |s|
s.licenses = [ 'MIT' ]
s.name = "bitcoin-client"
s.version = BitcoinClient::VERSION
s.authors = ["Colin MacKenzie IV"]
s.email = ["sinisterchipmunk@gmail.com"]
s.homepage = "http://github.com/sinisterchipmunk/bitcoin-client"
s.summary = %q{Provides a Ruby library to the complete Bitcoin JSON-RPC API.}
s.description = "Provides a Ruby library to the complete Bitcoin JSON-RPC API. "+
"Implements all methods listed at "+
"https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list and "+
"lets you set options such as the host and port number, and whether to use SSL."
s.rubyforge_project = "bitcoin-client"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rake", '~> 0.9'
s.add_development_dependency "bundler"
s.add_development_dependency "rspec", '~> 2.6'
s.add_development_dependency "fakeweb", '~> 1.3'
s.add_development_dependency "coveralls"
s.add_runtime_dependency "rest-client"
end