stellar_client 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 79d71440dc2875a2e29f9a50df5478925dab61648753cc4a8257334ccf86e2d9
4
+ data.tar.gz: ec1015330484158f65d732518d595e83dcbd6234b4f37e6546c0dcaa00268056
5
+ SHA512:
6
+ metadata.gz: 140263a3d7d20664ac647b559e4499244fc60499f61ad8b69d15ae113b9abcb51272dcdf17636b89ed4ec25f3ffadc13d53798a23157e7e78c743cce6daaaeb8
7
+ data.tar.gz: ebbf27ebae0a9b63caff313dd33c26e7c7b26783229ed839a04a9c17250d1aef743eab6364d06c093b199aefe73d604ad348f60f4374fa0d8fb731a308509ce9
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /spec/config.yml
11
+ /spec/fixtures/bridge/config_bridge.toml
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.5.1
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ sudo: false
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.5.1
6
+ before_install: gem install bundler -v 1.16.2
7
+ before_script:
8
+ - cp spec/config.yml{.sample,}
data/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/).
6
+
7
+ ## [0.5.0] - 2018-08-29
8
+ ### Changed
9
+ - Renamed from BridgeClient to StellarClient
10
+ - `host` configuration is now `bridge_host`
11
+
12
+ ### Added
13
+ - `#get_toml` to fetch the toml of `host`
14
+ - `#get_withdraw` to get withdrawal details from an Anchor
15
+
16
+ ## [0.4.0] - 2017-04-05
17
+ ### Added
18
+ - Expose response's `code` (as `code_str`) and `message`
19
+
20
+ ## [0.3.0] - 2017-03-31
21
+ ### Changed
22
+ - Use `api_client_base` `~> 1.0`
23
+
24
+ ## [0.2.0]
25
+ ### Added
26
+ - Explicitly require ActiveSupport's hash with indifferent access
27
+ - Upgrade api_client_base to 0.2.0
28
+
29
+ ## [0.1.0] - 2016-12-15
30
+ ### Added
31
+ - Initial release. Payments only
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at ramon.tayag@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in stellar_client.gemspec
4
+ gemspec
5
+
6
+ gem "pry-byebug"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Ramon Tayag
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # StellarClient
2
+
3
+ [![Build Status](https://travis-ci.org/bloom-solutions/stellar_client-ruby.svg?branch=master)](https://travis-ci.org/bloom-solutions/stellar_client-ruby)
4
+
5
+ Ruby wrapper for Stellar's Bridge Server API
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'stellar_client'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install stellar_client
22
+
23
+ ## Usage
24
+
25
+ Configure in an initializer:
26
+
27
+ ```ruby
28
+ StellarClient.configure do |c|
29
+ c.bridge_host = ENV["BRIDGE_HOST"]
30
+ end
31
+ ```
32
+
33
+ See `spec/acceptance` for detailed examples.
34
+
35
+ ## Development
36
+
37
+ - Copy `spec/config.yml.sample` to `spec/config.yml`
38
+ - Replace `destination` with the account the tests will be sending to
39
+ - Copy `spec/fixtures/bridge/bridge.cfg.sample` to `spec/fixtures/bridge/bridge.cfg`
40
+ - Replace `authorizing_seed` with the seed of the account you're sending from
41
+ - Replace `receiving_account_id` with the account id you're sending from
42
+ - Replace `base_seed` with what you placed in `authorizing_seed`
43
+ - `docker-compose up pg`
44
+ - `docker-compose run bridge createdb -h pg -U postgres bridge`
45
+ - `docker-compose up bridge`
46
+ - Then start the application that we'll run some tests against:
47
+ ```sh
48
+ cd spec/stellar_app
49
+ bundle
50
+ yarn install
51
+ rails db:create db:migrate
52
+ rails s
53
+ ```
54
+ - Make your changes
55
+ - `rspec spec`
56
+
57
+ ## Contributing
58
+
59
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bloom-solutions/stellar_client-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
60
+
61
+ ## License
62
+
63
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "stellar_client"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,22 @@
1
+ version: '3'
2
+ services:
3
+ bridge:
4
+ build:
5
+ dockerfile: "ops/bridge/Dockerfile"
6
+ context: .
7
+ command: bash -c "/bridge/bridge --migrate-db && /bridge/bridge"
8
+ ports:
9
+ - "8001:8001"
10
+ depends_on:
11
+ - pg
12
+ volumes:
13
+ - ./spec/fixtures/bridge:/app
14
+ pg:
15
+ image: postgres:9.6
16
+ ports:
17
+ - "5432:5432"
18
+ volumes:
19
+ - pg:/var/lib/postgresql/data
20
+ volumes:
21
+ pg:
22
+ bridge:
@@ -0,0 +1,24 @@
1
+ module StellarClient
2
+ class Client
3
+
4
+ include APIClientBase::Client.module(default_opts: :default_opts)
5
+ api_action :send_payment
6
+ api_action :get_toml
7
+
8
+ def withdraw(opts = {})
9
+ transfer_host = get_toml.toml["TRANSFER_SERVER"]
10
+ request = WithdrawRequest.new(opts.merge(host: transfer_host))
11
+ raw_response = request.()
12
+ WithdrawResponse.new(raw_response: raw_response)
13
+ end
14
+
15
+ attribute :bridge_host, String
16
+
17
+ private
18
+
19
+ def default_opts
20
+ { host: host, bridge_host: bridge_host }
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,11 @@
1
+ module StellarClient
2
+ module Coercers
3
+ class IndifferentHash < Virtus::Attribute
4
+
5
+ def coerce(value)
6
+ value.is_a?(::Hash) ? value.with_indifferent_access : value
7
+ end
8
+
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module StellarClient
2
+ class GetTomlRequest
3
+
4
+ include APIClientBase::Request.module
5
+
6
+ def path
7
+ "/.well-known/stellar.toml"
8
+ end
9
+
10
+ end
11
+ end
@@ -0,0 +1,56 @@
1
+ module StellarClient
2
+ class SendPaymentRequest
3
+
4
+ include APIClientBase::Request.module(default_opts: :default_opts)
5
+
6
+ BODY_ATTRS = %i[
7
+ source
8
+ destination
9
+ amount
10
+ asset_code
11
+ asset_issuer
12
+ memo_type
13
+ memo
14
+ ]
15
+ attribute :source, String
16
+ attribute :destination, String
17
+ attribute :amount, Float
18
+ attribute :asset_code, String
19
+ attribute :asset_issuer, String
20
+ attribute :memo_type, String
21
+ attribute :memo, String
22
+ attribute :body, Hash, lazy: true, default: :default_body
23
+ attribute :bridge_host, String
24
+
25
+ private
26
+
27
+ def path
28
+ "/payment"
29
+ end
30
+
31
+ def headers
32
+ {"Content-Type" => "application/x-www-form-urlencoded"}
33
+ end
34
+
35
+ def default_action
36
+ :post
37
+ end
38
+
39
+ def default_body
40
+ BODY_ATTRS.each_with_object({}) do |attr, hash|
41
+ hash[attr] = send(attr)
42
+ end
43
+ end
44
+
45
+ def default_uri
46
+ uri = Addressable::URI.parse(bridge_host)
47
+ uri.path = api_client_base_path
48
+ uri.to_s
49
+ end
50
+
51
+ def default_opts
52
+ { bridge_host: bridge_host }
53
+ end
54
+
55
+ end
56
+ end
@@ -0,0 +1,24 @@
1
+ module StellarClient
2
+ class WithdrawRequest
3
+
4
+ include APIClientBase::Request.module
5
+
6
+ BODY_ATTRS = %i[
7
+ type
8
+ asset_code
9
+ dest
10
+ ]
11
+ attribute :type, String
12
+ attribute :asset_code, String
13
+ attribute :dest, String
14
+
15
+ private
16
+
17
+ def params
18
+ BODY_ATTRS.each_with_object({}) do |attr, hash|
19
+ hash[attr] = send(attr)
20
+ end
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ module StellarClient
2
+ class BaseResponse
3
+
4
+ include APIClientBase::Response.module
5
+
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ module StellarClient
2
+ class GetTomlResponse < BaseResponse
3
+
4
+ attribute :toml, Hash, lazy: true, default: :default_toml
5
+
6
+ private
7
+
8
+ def default_toml
9
+ Tomlrb.parse(raw_response.body)
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,38 @@
1
+ module StellarClient
2
+ class SendPaymentResponse < BaseResponse
3
+
4
+ attribute :body, Coercers::IndifferentHash, lazy: true, default: :default_body
5
+ attribute :hash, String, lazy: true, default: :default_hash
6
+ attribute :result_xdr, String, lazy: true, default: :default_result_xdr
7
+ attribute :ledger, Integer, lazy: true, default: :default_ledger
8
+ attribute :code_str, String, lazy: true, default: :default_code_str
9
+ attribute :message, String, lazy: true, default: :default_message
10
+
11
+ private
12
+
13
+ def default_body
14
+ JSON.parse(raw_response.body)
15
+ end
16
+
17
+ def default_hash
18
+ body[:hash]
19
+ end
20
+
21
+ def default_result_xdr
22
+ body[:result_xdr]
23
+ end
24
+
25
+ def default_ledger
26
+ body[:ledger]
27
+ end
28
+
29
+ def default_code_str
30
+ body[:code]
31
+ end
32
+
33
+ def default_message
34
+ body[:message]
35
+ end
36
+
37
+ end
38
+ end
@@ -0,0 +1,44 @@
1
+ module StellarClient
2
+ class WithdrawResponse < BaseResponse
3
+
4
+ BODY_ATTRS = %i[
5
+ account_id
6
+ memo_type
7
+ memo
8
+ min_amount
9
+ fee_fixed
10
+ fee_percent
11
+ fee_network
12
+ ].freeze
13
+ attribute(:body, Coercers::IndifferentHash, {
14
+ lazy: true,
15
+ default: :default_body,
16
+ })
17
+ attribute :account_id, String, lazy: true, default: :default_account_id
18
+ attribute :memo_type, String, lazy: true, default: :default_memo_type
19
+ attribute :memo, String, lazy: true, default: :default_memo
20
+ attribute :min_amount, BigDecimal, lazy: true, default: :default_min_amount
21
+ attribute :fee_fixed, BigDecimal, lazy: true, default: :default_fee_fixed
22
+ attribute(:fee_percent, BigDecimal, {
23
+ lazy: true,
24
+ default: :default_fee_percent,
25
+ })
26
+ attribute(:fee_network, BigDecimal, {
27
+ lazy: true,
28
+ default: :default_fee_network,
29
+ })
30
+
31
+ private
32
+
33
+ def default_body
34
+ JSON.parse(raw_response.body)
35
+ end
36
+
37
+ BODY_ATTRS.each do |attr|
38
+ define_method("default_#{attr}".to_sym) do
39
+ body[attr]
40
+ end
41
+ end
42
+
43
+ end
44
+ end
@@ -0,0 +1,3 @@
1
+ module StellarClient
2
+ VERSION = "0.5.0"
3
+ end
@@ -0,0 +1,28 @@
1
+ require "active_support/core_ext/hash/indifferent_access"
2
+ require "addressable"
3
+ require "api_client_base"
4
+ require "gem_config"
5
+ require "tomlrb"
6
+ require "virtus"
7
+ require "stellar_client/version"
8
+
9
+ module StellarClient
10
+
11
+ include APIClientBase::Base
12
+
13
+ with_configuration do
14
+ has :host, classes: String
15
+ has :bridge_host, classes: String
16
+ end
17
+
18
+ end
19
+
20
+ require "stellar_client/client"
21
+ require "stellar_client/coercers/indifferent_hash"
22
+ require "stellar_client/requests/get_toml_request"
23
+ require "stellar_client/requests/send_payment_request"
24
+ require "stellar_client/requests/withdraw_request"
25
+ require "stellar_client/responses/base_response"
26
+ require "stellar_client/responses/get_toml_response"
27
+ require "stellar_client/responses/send_payment_response"
28
+ require "stellar_client/responses/withdraw_response"
@@ -0,0 +1,17 @@
1
+ FROM golang:latest
2
+
3
+ RUN apt-get update -qq
4
+ RUN apt-get upgrade -y
5
+ RUN apt-get install -y build-essential libpq-dev nodejs postgresql-client
6
+
7
+ RUN mkdir -p /app
8
+ WORKDIR /app
9
+
10
+ ENV BRIDGE_VERSION=v0.0.19
11
+ RUN curl -S -L -O \
12
+ https://github.com/stellar/bridge-server/releases/download/$BRIDGE_VERSION/bridge-$BRIDGE_VERSION-linux-amd64.tar.gz && \
13
+ tar zxf bridge-$BRIDGE_VERSION-linux-amd64.tar.gz && \
14
+ mv bridge-$BRIDGE_VERSION-linux-amd64 /bridge
15
+ RUN ln -ns /app/config_bridge.toml /bridge/config_bridge.toml
16
+
17
+ ADD . /app
@@ -0,0 +1,45 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'stellar_client/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "stellar_client"
8
+ spec.version = StellarClient::VERSION
9
+ spec.authors = ["Ramon Tayag"]
10
+ spec.email = ["ramon.tayag@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby wrapper for Stellar's Stellar Server API}
13
+ spec.description = %q{Ruby wrapper for Stellar's Stellar Server API}
14
+ spec.homepage = "https://github.com/bloom-solutions/stellar_client-ruby"
15
+ spec.license = "MIT"
16
+
17
+ if spec.respond_to?(:metadata)
18
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
19
+ else
20
+ raise "RubyGems 2.0 or newer is required to protect against " \
21
+ "public gem pushes."
22
+ end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
+ f.match(%r{^(test|spec|features)/})
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_dependency "gem_config", "~> 0.3.1"
32
+ spec.add_dependency "typhoeus", "~> 1.1"
33
+ spec.add_dependency "virtus", "~> 1.0"
34
+ spec.add_dependency "api_client_base", "~> 1.3"
35
+ spec.add_dependency "activesupport", ">= 3.0.0"
36
+ spec.add_dependency "addressable"
37
+ spec.add_dependency "tomlrb", "~> 1.0"
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.13"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ spec.add_development_dependency "rspec", "~> 3.0"
42
+ spec.add_development_dependency "virtus-matchers"
43
+ spec.add_development_dependency "vcr", "~> 3.0"
44
+ spec.add_development_dependency "webmock"
45
+ end
metadata ADDED
@@ -0,0 +1,253 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stellar_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.0
5
+ platform: ruby
6
+ authors:
7
+ - Ramon Tayag
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-08-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gem_config
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.3.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.3.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: typhoeus
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: virtus
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: api_client_base
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: activesupport
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 3.0.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 3.0.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: addressable
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: tomlrb
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: bundler
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.13'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.13'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rake
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '10.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '10.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '3.0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '3.0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: virtus-matchers
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: vcr
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '3.0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '3.0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: webmock
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ description: Ruby wrapper for Stellar's Stellar Server API
196
+ email:
197
+ - ramon.tayag@gmail.com
198
+ executables: []
199
+ extensions: []
200
+ extra_rdoc_files: []
201
+ files:
202
+ - ".gitignore"
203
+ - ".rspec"
204
+ - ".ruby-version"
205
+ - ".travis.yml"
206
+ - CHANGELOG.md
207
+ - CODE_OF_CONDUCT.md
208
+ - Gemfile
209
+ - LICENSE.txt
210
+ - README.md
211
+ - Rakefile
212
+ - bin/console
213
+ - bin/setup
214
+ - docker-compose.yml
215
+ - lib/stellar_client.rb
216
+ - lib/stellar_client/client.rb
217
+ - lib/stellar_client/coercers/indifferent_hash.rb
218
+ - lib/stellar_client/requests/get_toml_request.rb
219
+ - lib/stellar_client/requests/send_payment_request.rb
220
+ - lib/stellar_client/requests/withdraw_request.rb
221
+ - lib/stellar_client/responses/base_response.rb
222
+ - lib/stellar_client/responses/get_toml_response.rb
223
+ - lib/stellar_client/responses/send_payment_response.rb
224
+ - lib/stellar_client/responses/withdraw_response.rb
225
+ - lib/stellar_client/version.rb
226
+ - ops/bridge/Dockerfile
227
+ - stellar_client.gemspec
228
+ homepage: https://github.com/bloom-solutions/stellar_client-ruby
229
+ licenses:
230
+ - MIT
231
+ metadata:
232
+ allowed_push_host: https://rubygems.org
233
+ post_install_message:
234
+ rdoc_options: []
235
+ require_paths:
236
+ - lib
237
+ required_ruby_version: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - ">="
240
+ - !ruby/object:Gem::Version
241
+ version: '0'
242
+ required_rubygems_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - - ">="
245
+ - !ruby/object:Gem::Version
246
+ version: '0'
247
+ requirements: []
248
+ rubyforge_project:
249
+ rubygems_version: 2.7.6
250
+ signing_key:
251
+ specification_version: 4
252
+ summary: Ruby wrapper for Stellar's Stellar Server API
253
+ test_files: []