bloom_net_central_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: 79a5e345a3a2c8123c5a87478521f582537f9c09
4
+ data.tar.gz: ef6d1dbfa17e6c9f0bf0c863b536ee3f729da8e5
5
+ SHA512:
6
+ metadata.gz: 06acc553e5faacd80f17570e0c4f80a0cb69e2d5ba14d168da23f1d4e2c2a6d653db95be196262c870d6d752059f5c825d9ba0a481e164223ecab22788fc5c2a
7
+ data.tar.gz: 15fb596fa24354d5117a712d746d98021f3819704e6180ba1c988a4ba534a0d042e2aeb9958cea9860cb24de9acc34eada4313b6b50ebc941f0cd3cdc192316b
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.3.0
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
+ ## [0.1.0] - 2016-12-15
8
+ ### Added
9
+ - Initial release
@@ -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 bloom_net_central_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,37 @@
1
+ # BloomNetCentralClient
2
+
3
+ Ruby wrapper for BloomNet Central's API
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'bloom_net_central_client'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install bloom_net_central_client
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Development
26
+
27
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+
29
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/imacchiato/bloom_net_central_client. 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.
34
+
35
+ ## License
36
+
37
+ 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 "bloom_net_central_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,40 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bloom_net_central_client/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bloom_net_central_client"
8
+ spec.version = BloomNetCentralClient::VERSION
9
+ spec.authors = ["Ramon Tayag"]
10
+ spec.email = ["ramon.tayag@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby wrapper for BloomNet Central's API}
13
+ spec.description = %q{Ruby wrapper for BloomNet Central's API}
14
+ spec.homepage = "https://github.com/imacchiato/bloom_net_central_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 "virtus", "~> 1.0"
33
+ spec.add_dependency "httparty", "~> 0.14.0"
34
+ spec.add_dependency "activesupport", ">= 3.0"
35
+ spec.add_dependency "api_client_base", "~> 0.1.0"
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", "~> 0.3.0"
40
+ end
@@ -0,0 +1,18 @@
1
+ module BloomNetCentralClient
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 :create_txn
9
+ api_action :create_claim
10
+
11
+ private
12
+
13
+ def default_opts
14
+ { host: host }
15
+ end
16
+
17
+ end
18
+ end
@@ -0,0 +1,11 @@
1
+ module BloomNetCentralClient
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 BloomNetCentralClient
2
+ class Claim
3
+
4
+ include Virtus.model
5
+ attribute :recipient_first_name, String
6
+ attribute :recipient_last_name, String
7
+ attribute :ref_no, String
8
+ attribute :status, String
9
+
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ module BloomNetCentralClient
2
+ class Txn
3
+
4
+ include Virtus.model
5
+ attribute :id, String
6
+ attribute :ref_no, String
7
+ attribute :status, String
8
+ attribute :recipient_first_name, String
9
+ attribute :recipient_last_name, String
10
+
11
+ end
12
+ end
@@ -0,0 +1,17 @@
1
+ module BloomNetCentralClient
2
+ class BaseRequest
3
+
4
+ include APIClientBase::Request.module
5
+ attribute(:headers, Coercers::IndifferentHash, {
6
+ lazy: true,
7
+ default: :default_headers,
8
+ })
9
+
10
+ private
11
+
12
+ def default_headers
13
+ {"Content-Type" => "application/json"}
14
+ end
15
+
16
+ end
17
+ end
@@ -0,0 +1,32 @@
1
+ module BloomNetCentralClient
2
+ class CreateClaimRequest < BaseRequest
3
+
4
+ attribute :recipient_first_name, String
5
+ attribute :recipient_last_name, String
6
+ attribute :ref_no, String
7
+ attribute :destination, String
8
+ attribute :body, String, lazy: true, default: :default_body
9
+
10
+ private
11
+
12
+ def path
13
+ "/api/v1/claims"
14
+ end
15
+
16
+ def default_action
17
+ :post
18
+ end
19
+
20
+ def default_body
21
+ {
22
+ claim: {
23
+ recipient_first_name: recipient_first_name,
24
+ recipient_last_name: recipient_last_name,
25
+ ref_no: ref_no,
26
+ destination: destination,
27
+ }
28
+ }.to_json
29
+ end
30
+
31
+ end
32
+ end
@@ -0,0 +1,28 @@
1
+ module BloomNetCentralClient
2
+ class CreateTxnRequest < BaseRequest
3
+
4
+ attribute :recipient_first_name, String
5
+ attribute :recipient_last_name, String
6
+ attribute :body, String, lazy: true, default: :default_body
7
+
8
+ private
9
+
10
+ def default_action
11
+ :post
12
+ end
13
+
14
+ def path
15
+ "/api/v1/txns"
16
+ end
17
+
18
+ def default_body
19
+ {
20
+ txn: {
21
+ recipient_first_name: recipient_first_name,
22
+ recipient_last_name: recipient_last_name,
23
+ }
24
+ }.to_json
25
+ end
26
+
27
+ end
28
+ end
@@ -0,0 +1,24 @@
1
+ module BloomNetCentralClient
2
+ class FindTxnRequest < BaseRequest
3
+
4
+ attribute :ref_no, String
5
+ attribute :recipient_first_name, String
6
+ attribute :recipient_last_name, String
7
+ attribute :params, String, lazy: true, default: :default_params
8
+
9
+ private
10
+
11
+ def path
12
+ "/api/v1/txns"
13
+ end
14
+
15
+ def default_params
16
+ {
17
+ ref_no: ref_no,
18
+ recipient_first_name: recipient_first_name,
19
+ recipient_last_name: recipient_last_name,
20
+ }
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,18 @@
1
+ module BloomNetCentralClient
2
+ class BaseResponse
3
+
4
+ include APIClientBase::Response.module
5
+ attribute(:body, Coercers::IndifferentHash, {
6
+ lazy: true,
7
+ default: :default_body,
8
+ })
9
+ attribute :success, Boolean, lazy: true, default: :default_success
10
+
11
+ private
12
+
13
+ def default_body
14
+ JSON.parse(raw_response.body)
15
+ end
16
+
17
+ end
18
+ end
@@ -0,0 +1,19 @@
1
+ module BloomNetCentralClient
2
+ class CreateClaimResponse < BaseResponse
3
+
4
+ attribute :claim, Object, lazy: true, default: :default_claim
5
+
6
+ private
7
+
8
+ def default_claim
9
+ claim_attrs = body[:data].slice(*%i[
10
+ recipient_first_name
11
+ recipient_last_name
12
+ ref_no
13
+ status
14
+ ])
15
+ BloomNetCentralClient::Claim.new(claim_attrs)
16
+ end
17
+
18
+ end
19
+ end
@@ -0,0 +1,13 @@
1
+ module BloomNetCentralClient
2
+ class CreateTxnResponse < BaseResponse
3
+
4
+ attribute :txn, Object, lazy: true, default: :default_txn
5
+
6
+ private
7
+
8
+ def default_txn
9
+ BloomNetCentralClient::Txn.new(body[:data].slice(:id, :ref_no, :status))
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,26 @@
1
+ module BloomNetCentralClient
2
+ class FindTxnResponse < BaseResponse
3
+
4
+ attribute :txn, Object, lazy: true, default: :default_txn
5
+
6
+ private
7
+
8
+ def default_txn
9
+ txn_data = body[:data].first
10
+ return nil if txn_data.nil?
11
+ txn_attrs = txn_data.slice(*%i(
12
+ id
13
+ recipient_first_name
14
+ recipient_last_name
15
+ ref_no
16
+ status
17
+ ))
18
+ BloomNetCentralClient::Txn.new(txn_attrs)
19
+ end
20
+
21
+ def default_success
22
+ code == 200 && txn.present?
23
+ end
24
+
25
+ end
26
+ end
@@ -0,0 +1,3 @@
1
+ module BloomNetCentralClient
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,43 @@
1
+ require "api_client_base"
2
+ require "gem_config"
3
+ require "httparty"
4
+ require "virtus"
5
+ require "active_support/json"
6
+ require "active_support/core_ext/hash/indifferent_access"
7
+ require "active_support/core_ext/hash/slice"
8
+ require "active_support/core_ext/object"
9
+ require "bloom_net_central_client/version"
10
+ require "bloom_net_central_client/coercers/indifferent_hash"
11
+ require "bloom_net_central_client/client"
12
+ require "bloom_net_central_client/models/claim"
13
+ require "bloom_net_central_client/models/txn"
14
+ require "bloom_net_central_client/requests/base_request"
15
+ require "bloom_net_central_client/requests/create_claim_request"
16
+ require "bloom_net_central_client/requests/create_txn_request"
17
+ require "bloom_net_central_client/requests/find_txn_request"
18
+ require "bloom_net_central_client/responses/base_response"
19
+ require "bloom_net_central_client/responses/create_claim_response"
20
+ require "bloom_net_central_client/responses/create_txn_response"
21
+ require "bloom_net_central_client/responses/find_txn_response"
22
+
23
+ module BloomNetCentralClient
24
+
25
+ include GemConfig::Base
26
+
27
+ with_configuration do
28
+ has :host, classes: String
29
+ end
30
+
31
+ def self.new(opts={})
32
+ Client.new(global_opts.merge(opts))
33
+ end
34
+
35
+ private
36
+
37
+ def self.global_opts
38
+ %i[host].each_with_object({}) do |var, hash|
39
+ hash[var] = BloomNetCentralClient.configuration.send(var)
40
+ end
41
+ end
42
+
43
+ end
metadata ADDED
@@ -0,0 +1,198 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bloom_net_central_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: virtus
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: httparty
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.14.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.14.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: activesupport
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: api_client_base
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.1.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.1.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.13'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.13'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '10.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '10.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rspec
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '3.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '3.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: virtus-matchers
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.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: 0.3.0
139
+ description: Ruby wrapper for BloomNet Central's API
140
+ email:
141
+ - ramon.tayag@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".ruby-version"
149
+ - ".travis.yml"
150
+ - CHANGELOG.md
151
+ - CODE_OF_CONDUCT.md
152
+ - Gemfile
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - bin/console
157
+ - bin/setup
158
+ - bloom_net_central_client.gemspec
159
+ - lib/bloom_net_central_client.rb
160
+ - lib/bloom_net_central_client/client.rb
161
+ - lib/bloom_net_central_client/coercers/indifferent_hash.rb
162
+ - lib/bloom_net_central_client/models/claim.rb
163
+ - lib/bloom_net_central_client/models/txn.rb
164
+ - lib/bloom_net_central_client/requests/base_request.rb
165
+ - lib/bloom_net_central_client/requests/create_claim_request.rb
166
+ - lib/bloom_net_central_client/requests/create_txn_request.rb
167
+ - lib/bloom_net_central_client/requests/find_txn_request.rb
168
+ - lib/bloom_net_central_client/responses/base_response.rb
169
+ - lib/bloom_net_central_client/responses/create_claim_response.rb
170
+ - lib/bloom_net_central_client/responses/create_txn_response.rb
171
+ - lib/bloom_net_central_client/responses/find_txn_response.rb
172
+ - lib/bloom_net_central_client/version.rb
173
+ homepage: https://github.com/imacchiato/bloom_net_central_client-ruby
174
+ licenses:
175
+ - MIT
176
+ metadata:
177
+ allowed_push_host: https://rubygems.org
178
+ post_install_message:
179
+ rdoc_options: []
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ required_rubygems_version: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - ">="
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ requirements: []
193
+ rubyforge_project:
194
+ rubygems_version: 2.5.1
195
+ signing_key:
196
+ specification_version: 4
197
+ summary: Ruby wrapper for BloomNet Central's API
198
+ test_files: []