-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle-w3s.gemspec
More file actions
26 lines (21 loc) · 885 Bytes
/
circle-w3s.gemspec
File metadata and controls
26 lines (21 loc) · 885 Bytes
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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "circle-w3s/version"
Gem::Specification.new do |spec|
spec.name = "circle-w3s"
spec.version = CircleW3s::VERSION
spec.authors = ["Madao-3"]
spec.email = ["madao.chris@gmail.com"]
spec.summary = "Circle Web3 Services (W3S) Ruby SDK"
spec.description = "Ruby SDK for Circle's Web3 Services APIs including Developer Controlled Wallets"
spec.homepage = "https://github.com/Madao-3/circle-w3s"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.files = Dir.glob("{lib}/**/*") + %w[README.md]
spec.add_dependency "faraday", "~> 2.0"
spec.add_dependency "json", "~> 2.0"
spec.add_dependency "eth", "~> 0.5.9"
spec.add_dependency "jwt", "~> 2.7"
spec.add_development_dependency "rspec"
spec.add_development_dependency "dotenv"
end