-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathblock_io.gemspec
More file actions
28 lines (25 loc) · 1.39 KB
/
block_io.gemspec
File metadata and controls
28 lines (25 loc) · 1.39 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'block_io/version'
Gem::Specification.new do |spec|
spec.name = "block_io"
spec.version = BlockIo::VERSION
spec.authors = ["Atif Nazir"]
spec.email = ["a@block.io"]
spec.summary = %q{An easy to use Dogecoin, Bitcoin, Litecoin wallet API by Block.io. Sign up required at Block.io.}
spec.description = %q{This Ruby Gem is the official reference client for the Block.io payments API. To use this, you will need the Dogecoin, Bitcoin, or Litecoin API key(s) from Block.io. Go ahead, sign up :)}
spec.homepage = "https://block.io/api/simple/ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.required_ruby_version = '>= 2.6.0'
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", ">= 1.16", "< 3"
spec.add_development_dependency "rake", "~> 13.0", "< 14"
spec.add_development_dependency "rspec", "~> 3.0", "< 4"
spec.add_development_dependency "webmock", "~> 3.0", "< 4"
spec.add_runtime_dependency "bitcoinrb", ">= 1.2.1", "< 2"
spec.add_runtime_dependency "typhoeus", "~> 1.0", "< 2"
spec.add_runtime_dependency "oj", "~> 3.0", "< 4"
end