forked from nixoid/bitcoin-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmastercoin-client.gemspec
32 lines (29 loc) · 1.48 KB
/
mastercoin-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
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mastercoin/version"
Gem::Specification.new do |s|
s.licenses = [ 'MIT' ]
s.name = "mastercoin-client"
s.version = Mastercoin::VERSION
s.authors = ["Loco"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/MeLoco1/mastercoin-client"
s.summary = %q{Provides a Ruby library to the complete Mastercoin JSON-RPC API.}
s.description = "Provides a Ruby library to the complete Bitcoin JSON-RPC API. "+
"Implements all methods listed at "+
"https://en.mastercoin.it/wiki/Original_Bitcoin_client/API_Calls_list and "+
"and Mastercoin API at " +
"https://github.com/mastercoin-MSC/mastercore/blob/mscore-0.0.8/doc/apidocumentation.md "+
"lets you set options such as the host and port number, and whether to use SSL."
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_development_dependency "bitcoin-client"
# s.add_runtime_dependency "bitcoin-client"
end