bridge_client 0.1.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
+ SHA1:
3
+ metadata.gz: d42e7ef58e8f431a74211ac5380e9fc1191c1f25
4
+ data.tar.gz: 73be6d437e2c9d761db6c67026b35076147c18be
5
+ SHA512:
6
+ metadata.gz: 828681132c2d4b7b23f93806e5626ba630dc753e9c7c2bac70d14031452f915accdf4b18cddbbdcefeb85982119c0523f9cd44a267a47669977ee987da15c07b
7
+ data.tar.gz: 9b9fef437a93cad4b40fff95ab101b2ca03213d43a9e48a482def1bd9a3112da100fc0cdeb429b72d32e4501d0d68bfb27f85c0ed3b1c8a077224ee87dab1bc3
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/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.1
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
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
+ ## [Unreleased]
8
+ ### Added
9
+ - 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 bridge_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,52 @@
1
+ # BridgeClient
2
+
3
+ Ruby wrapper for Stellar's Bridge Server API
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'bridge_client'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install bridge_client
20
+
21
+ ## Usage
22
+
23
+ Configure in an initializer:
24
+
25
+ ```ruby
26
+ BridgeClient.configure do |c|
27
+ c.host = ENV["BRIDGE_HOST"]
28
+ end
29
+ ```
30
+
31
+ See `spec/acceptance` for detailed examples.
32
+
33
+ ## Development
34
+
35
+ - Copy `spec/config.yml.sample` to `spec/config.yml`
36
+ - Replace `destination` with the account the tests will be sending to
37
+ - Copy `spec/fixtures/bridge/config_bridge.toml.sample` to `spec/fixtures/bridge/config_bridge.toml`
38
+ - Replace `authorizing_seed` with the seed of the account you're sending from
39
+ - Replace `receiving_account_id` with the account id you're sending from
40
+ - Replace `base_seed` with what you placed in `authorizing_seed`
41
+ - `docker-compose build`
42
+ - `docker-compose up bridge`
43
+ - Make your changes
44
+ - `rspec spec`
45
+
46
+ ## Contributing
47
+
48
+ Bug reports and pull requests are welcome on GitHub at https://github.com/imacchiato/bridge_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.
49
+
50
+ ## License
51
+
52
+ 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 "bridge_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,42 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bridge_client/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bridge_client"
8
+ spec.version = BridgeClient::VERSION
9
+ spec.authors = ["Ramon Tayag"]
10
+ spec.email = ["ramon.tayag@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby wrapper for Stellar's Bridge Server API}
13
+ spec.description = %q{Ruby wrapper for Stellar's Bridge Server API}
14
+ spec.homepage = "https://github.com/imacchiato/bridge_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", "~> 0.1.0"
35
+
36
+ spec.add_development_dependency "bundler", "~> 1.13"
37
+ spec.add_development_dependency "rake", "~> 10.0"
38
+ spec.add_development_dependency "rspec", "~> 3.0"
39
+ spec.add_development_dependency "virtus-matchers"
40
+ spec.add_development_dependency "vcr", "~> 3.0"
41
+ spec.add_development_dependency "webmock"
42
+ end
@@ -0,0 +1,22 @@
1
+ version: '2'
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
+ - bridge_db
12
+ volumes:
13
+ - ./spec/fixtures/bridge:/app
14
+ bridge_db:
15
+ image: postgres:9.5
16
+ expose:
17
+ - "5432"
18
+ volumes:
19
+ - bridge_db:/var/lib/postgresql/data
20
+ volumes:
21
+ bridge_db:
22
+ bridge:
@@ -0,0 +1,26 @@
1
+ require "api_client_base"
2
+ require "gem_config"
3
+ require "virtus"
4
+ require "bridge_client/version"
5
+ require "bridge_client/client"
6
+ require "bridge_client/coercers/indifferent_hash"
7
+ require "bridge_client/requests/base_request"
8
+ require "bridge_client/requests/send_payment_request"
9
+ require "bridge_client/responses/base_response"
10
+ require "bridge_client/responses/send_payment_response"
11
+
12
+ module BridgeClient
13
+
14
+ include GemConfig::Base
15
+
16
+ with_configuration do
17
+ has :host, classes: String
18
+ end
19
+
20
+ def self.new(options={})
21
+ Client.new(
22
+ host: options[:host] || BridgeClient.configuration.host,
23
+ )
24
+ end
25
+
26
+ end
@@ -0,0 +1,17 @@
1
+ module BridgeClient
2
+ class Client
3
+
4
+ include Virtus.model
5
+ attribute :host, String
6
+
7
+ include APIClientBase::Client.module(default_opts: :default_opts)
8
+ api_action :send_payment
9
+
10
+ private
11
+
12
+ def default_opts
13
+ { host: host }
14
+ end
15
+
16
+ end
17
+ end
@@ -0,0 +1,11 @@
1
+ module BridgeClient
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,13 @@
1
+ module BridgeClient
2
+ class BaseRequest
3
+
4
+ include APIClientBase::Request.module(default_opts: :default_opts)
5
+
6
+ private
7
+
8
+ def default_opts
9
+ { host: host }
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,41 @@
1
+ module BridgeClient
2
+ class SendPaymentRequest < BaseRequest
3
+
4
+ BODY_ATTRS = %i[
5
+ destination
6
+ amount
7
+ asset_code
8
+ asset_issuer
9
+ memo_type
10
+ memo
11
+ ]
12
+ attribute :destination, String
13
+ attribute :amount, Float
14
+ attribute :asset_code, String
15
+ attribute :asset_issuer, String
16
+ attribute :memo_type, String
17
+ attribute :memo, String
18
+ attribute :body, Hash, lazy: true, default: :default_body
19
+
20
+ private
21
+
22
+ def path
23
+ "/payment"
24
+ end
25
+
26
+ def headers
27
+ {"Content-Type" => "application/x-www-form-urlencoded"}
28
+ end
29
+
30
+ def default_action
31
+ :post
32
+ end
33
+
34
+ def default_body
35
+ BODY_ATTRS.each_with_object({}) do |attr, hash|
36
+ hash[attr] = send(attr)
37
+ end
38
+ end
39
+
40
+ end
41
+ end
@@ -0,0 +1,7 @@
1
+ module BridgeClient
2
+ class BaseResponse
3
+
4
+ include APIClientBase::Response.module
5
+
6
+ end
7
+ end
@@ -0,0 +1,28 @@
1
+ module BridgeClient
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
+
9
+ private
10
+
11
+ def default_body
12
+ JSON.parse(raw_response.body)
13
+ end
14
+
15
+ def default_hash
16
+ body[:hash]
17
+ end
18
+
19
+ def default_result_xdr
20
+ body[:result_xdr]
21
+ end
22
+
23
+ def default_ledger
24
+ body[:ledger]
25
+ end
26
+
27
+ end
28
+ end
@@ -0,0 +1,3 @@
1
+ module BridgeClient
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,15 @@
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
+ RUN curl -S -L -O https://github.com/stellar/bridge-server/releases/download/v0.0.14/bridge-v0.0.14-linux-amd64.tar.gz && \
11
+ tar zxf bridge-v0.0.14-linux-amd64.tar.gz && \
12
+ mv bridge-v0.0.14-linux-amd64 /bridge
13
+ RUN ln -ns /app/config_bridge.toml /bridge/config_bridge.toml
14
+
15
+ ADD . /app
metadata ADDED
@@ -0,0 +1,207 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bridge_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ramon Tayag
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-12-15 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: 0.1.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.1.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.13'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.13'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '10.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '10.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: virtus-matchers
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: vcr
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '3.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ description: Ruby wrapper for Stellar's Bridge Server API
154
+ email:
155
+ - ramon.tayag@gmail.com
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - ".gitignore"
161
+ - ".rspec"
162
+ - ".travis.yml"
163
+ - CHANGELOG.md
164
+ - CODE_OF_CONDUCT.md
165
+ - Gemfile
166
+ - LICENSE.txt
167
+ - README.md
168
+ - Rakefile
169
+ - bin/console
170
+ - bin/setup
171
+ - bridge_client.gemspec
172
+ - docker-compose.yml
173
+ - lib/bridge_client.rb
174
+ - lib/bridge_client/client.rb
175
+ - lib/bridge_client/coercers/indifferent_hash.rb
176
+ - lib/bridge_client/requests/base_request.rb
177
+ - lib/bridge_client/requests/send_payment_request.rb
178
+ - lib/bridge_client/responses/base_response.rb
179
+ - lib/bridge_client/responses/send_payment_response.rb
180
+ - lib/bridge_client/version.rb
181
+ - ops/bridge/Dockerfile
182
+ homepage: https://github.com/imacchiato/bridge_client-ruby
183
+ licenses:
184
+ - MIT
185
+ metadata:
186
+ allowed_push_host: https://rubygems.org
187
+ post_install_message:
188
+ rdoc_options: []
189
+ require_paths:
190
+ - lib
191
+ required_ruby_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ required_rubygems_version: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: '0'
201
+ requirements: []
202
+ rubyforge_project:
203
+ rubygems_version: 2.5.1
204
+ signing_key:
205
+ specification_version: 4
206
+ summary: Ruby wrapper for Stellar's Bridge Server API
207
+ test_files: []