bloom_remit2 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/config.yml +49 -0
- data/.github/workflows/gempush.yml +30 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.md +10 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +89 -0
- data/LICENSE.txt +21 -0
- data/README.md +403 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bloom_remit2.gemspec +39 -0
- data/lib/bloom_remit2.rb +19 -0
- data/lib/bloom_remit2/agent.rb +84 -0
- data/lib/bloom_remit2/client.rb +59 -0
- data/lib/bloom_remit2/credit.rb +69 -0
- data/lib/bloom_remit2/partner.rb +80 -0
- data/lib/bloom_remit2/rate.rb +31 -0
- data/lib/bloom_remit2/recipient.rb +94 -0
- data/lib/bloom_remit2/remittance.rb +134 -0
- data/lib/bloom_remit2/sender.rb +168 -0
- data/lib/bloom_remit2/version.rb +3 -0
- metadata +225 -0
@@ -0,0 +1,134 @@
|
|
1
|
+
module BloomRemit2
|
2
|
+
class Remittance
|
3
|
+
class << self
|
4
|
+
# Initiate a new money transfer by providing a recipient_id and remittance hash
|
5
|
+
def execute(sender_id, remittance_hash)
|
6
|
+
remittance = Client.post(path(sender_id))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Cancel a remittance
|
10
|
+
#
|
11
|
+
# Note that this changes the status of the remittance to 'cancelled' and
|
12
|
+
# refunds the partner credits used, but does not delete it from the database.
|
13
|
+
#
|
14
|
+
# @param sender_id [String] id of sender associated with this remittance
|
15
|
+
# @param remittance_id [String] id of remittance
|
16
|
+
def cancel(sender_id, remittance_id)
|
17
|
+
remittance = Client.delete(path_with_id(sender_id, remittance_id))
|
18
|
+
end
|
19
|
+
|
20
|
+
# Show all remittances belonging to the given sender
|
21
|
+
#
|
22
|
+
# @param sender_id [String] id of sender to list remittances for
|
23
|
+
# @return remittances [Array] array with BloomRemit2::Remittance instances
|
24
|
+
def list(sender_id)
|
25
|
+
remittances = Client.get(path(sender_id))
|
26
|
+
remittances['remittance_ids'].map { |id| new(id) }
|
27
|
+
end
|
28
|
+
|
29
|
+
# Show information about a given remittance with their associated recipient
|
30
|
+
#
|
31
|
+
# All information about the given remittance and recipient are returned with this call.
|
32
|
+
# Important fields to note include status and receivable_in_dest_currency.
|
33
|
+
#
|
34
|
+
# @param sender_id [String] id of sender associated with this remittance
|
35
|
+
# @param remittance_id [String] id of remittance
|
36
|
+
# @return remittance [BloomRemit2::Remittance]
|
37
|
+
def retrieve(sender_id, remittance_id)
|
38
|
+
result = Client.get(path_with_id(sender_id, remittance_id)).with_indifferent_access
|
39
|
+
remittance = result['remittance'].with_indifferent_access
|
40
|
+
recipient = result['recipient'].with_indifferent_access
|
41
|
+
new(
|
42
|
+
remittance[:id],
|
43
|
+
remittance[:partner_id],
|
44
|
+
remittance[:orig_currency],
|
45
|
+
remittance[:dest_currency],
|
46
|
+
remittance[:paid_in_orig_currency],
|
47
|
+
remittance[:forex_margin],
|
48
|
+
remittance[:flat_fee_in_orig_currency],
|
49
|
+
remittance[:payout_method],
|
50
|
+
remittance[:status],
|
51
|
+
remittance[:account_name],
|
52
|
+
remittance[:account_number],
|
53
|
+
remittance[:teller_id],
|
54
|
+
remittance[:sender_id],
|
55
|
+
remittance[:client_external_id],
|
56
|
+
recipient: Recipient.new(
|
57
|
+
recipient[:id],
|
58
|
+
recipient[:sender_id],
|
59
|
+
recipient[:first_name],
|
60
|
+
recipient[:last_name],
|
61
|
+
recipient[:email],
|
62
|
+
recipient[:mobile],
|
63
|
+
recipient[:address],
|
64
|
+
nil,
|
65
|
+
nil,
|
66
|
+
recipient[:country],
|
67
|
+
nil
|
68
|
+
)
|
69
|
+
)
|
70
|
+
end
|
71
|
+
|
72
|
+
# TODO: Returns 500 Internal Server Error
|
73
|
+
# Returns the total fees for a given remittance amount and payout method
|
74
|
+
# def calculate_fees(payout_method, origin_amount: nil, origin_currency: nil, destination_amount: nil, destination_currency: nil)
|
75
|
+
# remittance = Client.post(path_for_calculate, fees_hash)
|
76
|
+
# end
|
77
|
+
|
78
|
+
private
|
79
|
+
|
80
|
+
# TODO: Uncomment when implementing .calculate_fees
|
81
|
+
# def path_for_calculate
|
82
|
+
# "api/v1/partners/#{BloomRemit2.configuration.api_token}/remittances/calculate"
|
83
|
+
# end
|
84
|
+
|
85
|
+
def path(sender_id)
|
86
|
+
"api/v1/partners/#{BloomRemit2.configuration.api_token}/senders/#{sender_id}/remittances"
|
87
|
+
end
|
88
|
+
|
89
|
+
def path_with_id(sender_id, remittance_id)
|
90
|
+
"#{path(sender_id)}/#{remittance_id}"
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
attr_reader :id, :partner_id, :orig_currency, :dest_currency, :paid_in_orig_currency, :forex_margin, :flat_fee_in_orig_currency, :payout_method, :status, :account_name, :account_number, :teller_id, :sender_id, :client_external_id, :recipient
|
95
|
+
|
96
|
+
alias :origin_currency :orig_currency
|
97
|
+
alias :destination_currency :dest_currency
|
98
|
+
alias :flat_fee_in_origin_currency :flat_fee_in_orig_currency
|
99
|
+
|
100
|
+
def initialize(
|
101
|
+
id,
|
102
|
+
partner_id=nil,
|
103
|
+
orig_currency=nil,
|
104
|
+
dest_currency=nil,
|
105
|
+
paid_in_orig_currency=nil,
|
106
|
+
forex_margin=nil,
|
107
|
+
flat_fee_in_orig_currency=nil,
|
108
|
+
payout_method=nil,
|
109
|
+
status=nil,
|
110
|
+
account_name=nil,
|
111
|
+
account_number=nil,
|
112
|
+
teller_id=nil,
|
113
|
+
sender_id=nil,
|
114
|
+
client_external_id=nil,
|
115
|
+
recipient: nil
|
116
|
+
)
|
117
|
+
@id = id
|
118
|
+
@partner_id = partner_id
|
119
|
+
@orig_currency = orig_currency
|
120
|
+
@dest_currency = dest_currency
|
121
|
+
@paid_in_orig_currency = paid_in_orig_currency
|
122
|
+
@forex_margin = forex_margin
|
123
|
+
@flat_fee_in_orig_currency = flat_fee_in_orig_currency
|
124
|
+
@payout_method = payout_method
|
125
|
+
@status = status
|
126
|
+
@account_name = account_name,
|
127
|
+
@account_number = account_number,
|
128
|
+
@teller_id = teller_id,
|
129
|
+
@sender_id = sender_id
|
130
|
+
@client_external_id = client_external_id
|
131
|
+
@recipient = recipient
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
@@ -0,0 +1,168 @@
|
|
1
|
+
module BloomRemit2
|
2
|
+
class Sender
|
3
|
+
class << self
|
4
|
+
# Show a list of senders belonging to this partner
|
5
|
+
# @return senders [Array] list of senders created by this partner, sorted by newest first
|
6
|
+
def list
|
7
|
+
senders = Client.get(path)
|
8
|
+
senders.map { |sender| initialize_from_hash(sender) }
|
9
|
+
end
|
10
|
+
|
11
|
+
# Show a sender belonging to this partner
|
12
|
+
# @return sender [BloomRemit2::Sender] sender belonging to this partner
|
13
|
+
def retrieve(id)
|
14
|
+
sender = Client.get("#{path}/#{id}")
|
15
|
+
initialize_from_hash(sender['user'])
|
16
|
+
end
|
17
|
+
|
18
|
+
# Show a sender belonging to this partner by supplying their email address
|
19
|
+
# @param email [String]
|
20
|
+
# @return sender [BloomRemit2::Sender] sender belonging to this partner
|
21
|
+
def find_by_email(email)
|
22
|
+
sender = Client.get("#{path}/find_by_email", query: { email: email })
|
23
|
+
initialize_from_hash(sender['user'])
|
24
|
+
end
|
25
|
+
|
26
|
+
# TODO: Broken because mobile is being shown as scientific notation
|
27
|
+
# Show a sender belonging to this partner by supplying their email address
|
28
|
+
# @param mobile [String]
|
29
|
+
# @return sender [BloomRemit2::Sender] sender belonging to this partner
|
30
|
+
# def find_by_mobile(mobile)
|
31
|
+
# sender = Client.get("#{path}/find_by_mobile", query: { email: email })
|
32
|
+
# initialize_from_hash(sender['user'])
|
33
|
+
# end
|
34
|
+
|
35
|
+
# Create a new sender under this partner
|
36
|
+
def create(sender_hash)
|
37
|
+
sender = Client.post(path, sender_hash)
|
38
|
+
initialize_from_hash(sender['sender'])
|
39
|
+
end
|
40
|
+
|
41
|
+
# Update the attributes of a sender belonging to this partner
|
42
|
+
# TODO: Doesn't support identification or proof of address
|
43
|
+
# @param sender_id [String] id of the sender to update
|
44
|
+
# @param sender_hash [Hash] attributes to update sender
|
45
|
+
def update(sender_id, sender_hash)
|
46
|
+
body = []
|
47
|
+
sender_hash.each do |k, v|
|
48
|
+
body << ["user[#{k.to_s.downcase}]", v]
|
49
|
+
end
|
50
|
+
sender = Client.put("#{path}/#{sender_id}", body)
|
51
|
+
initialize_from_hash(sender['user'])
|
52
|
+
end
|
53
|
+
|
54
|
+
# Delete a sender belonging to this partner
|
55
|
+
# @param sender_id [String] id of sender to delete
|
56
|
+
def delete(sender_id)
|
57
|
+
message = Client.delete("#{path}/#{sender_id}").with_indifferent_access
|
58
|
+
if message[:success] == "We've successfully deleted that user."
|
59
|
+
new(
|
60
|
+
sender_id,
|
61
|
+
deleted: true
|
62
|
+
)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
private
|
67
|
+
|
68
|
+
def path
|
69
|
+
"api/v1/partners/#{BloomRemit2.configuration.api_token}/senders"
|
70
|
+
end
|
71
|
+
|
72
|
+
def initialize_from_hash(sender)
|
73
|
+
sender = sender.with_indifferent_access
|
74
|
+
new(
|
75
|
+
sender[:id],
|
76
|
+
sender[:email],
|
77
|
+
sender[:first_name],
|
78
|
+
sender[:last_name],
|
79
|
+
sender[:passport_number],
|
80
|
+
sender[:passport_expiry_date],
|
81
|
+
sender[:tin],
|
82
|
+
sender[:mobile],
|
83
|
+
sender[:address],
|
84
|
+
sender[:city],
|
85
|
+
sender[:state],
|
86
|
+
sender[:zip_code],
|
87
|
+
sender[:country],
|
88
|
+
sender[:birthdate],
|
89
|
+
sender[:photo_uid],
|
90
|
+
sender[:photo_name],
|
91
|
+
sender[:id_photo_uid],
|
92
|
+
sender[:id_photo_name],
|
93
|
+
sender[:identification_type],
|
94
|
+
sender[:identification_number],
|
95
|
+
sender[:identification_details],
|
96
|
+
sender[:deleted_at],
|
97
|
+
sender[:dragonpay_userid],
|
98
|
+
sender[:sending_level],
|
99
|
+
sender[:occupation],
|
100
|
+
sender[:created_at],
|
101
|
+
sender[:updated_at]
|
102
|
+
)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
attr_reader :id, :email, :first_name, :last_name, :passport_number, :passport_expiry_date, :tin, :mobile, :photo_uid, :photo_name, :id_photo_uid, :id_photo_name, :identification_type, :identification_number, :identification_details, :address, :city, :state, :zip_code, :country, :birthdate, :deleted_at, :dragonpay_userid, :sending_level, :created_at, :updated_at, :deleted
|
107
|
+
|
108
|
+
def initialize(
|
109
|
+
id,
|
110
|
+
email=nil,
|
111
|
+
first_name=nil,
|
112
|
+
last_name=nil,
|
113
|
+
passport_number=nil,
|
114
|
+
passport_expiry_date=nil,
|
115
|
+
tin=nil,
|
116
|
+
mobile=nil,
|
117
|
+
address=nil,
|
118
|
+
city=nil,
|
119
|
+
state=nil,
|
120
|
+
zip_code=nil,
|
121
|
+
country=nil,
|
122
|
+
birthdate=nil,
|
123
|
+
photo_uid=nil,
|
124
|
+
photo_name=nil,
|
125
|
+
id_photo_uid=nil,
|
126
|
+
id_photo_name=nil,
|
127
|
+
identification_type=nil,
|
128
|
+
identification_number=nil,
|
129
|
+
identification_details=nil,
|
130
|
+
deleted_at=nil,
|
131
|
+
dragonpay_userid=nil,
|
132
|
+
sending_level=nil,
|
133
|
+
occupation=nil,
|
134
|
+
created_at=nil,
|
135
|
+
updated_at=nil,
|
136
|
+
deleted: false
|
137
|
+
)
|
138
|
+
@id = id
|
139
|
+
@email = email
|
140
|
+
@first_name = first_name
|
141
|
+
@last_name = last_name
|
142
|
+
@passport_number = passport_number
|
143
|
+
@passport_expiry_date = passport_expiry_date
|
144
|
+
@tin = tin
|
145
|
+
@mobile = mobile
|
146
|
+
@address = address
|
147
|
+
@city = city
|
148
|
+
@state = state
|
149
|
+
@zip_code = zip_code
|
150
|
+
@country = country
|
151
|
+
@birthdate = birthdate
|
152
|
+
@photo_uid = photo_uid
|
153
|
+
@photo_name = photo_name
|
154
|
+
@id_photo_uid = id_photo_uid
|
155
|
+
@id_photo_name = id_photo_name
|
156
|
+
@identification_type = identification_type
|
157
|
+
@identification_number = identification_number
|
158
|
+
@identification_details = identification_details
|
159
|
+
@deleted_at = deleted_at
|
160
|
+
@dragonpay_userid = dragonpay_userid
|
161
|
+
@sending_level = sending_level
|
162
|
+
@occupation = occupation
|
163
|
+
@created_at = created_at
|
164
|
+
@updated_at = updated_at
|
165
|
+
@deleted = deleted
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
metadata
ADDED
@@ -0,0 +1,225 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bloom_remit2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Xavi Ablaza
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: gem_config
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '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'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '13.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '13.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec_junit_formatter
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: pry-byebug
|
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: '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'
|
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
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: prettier
|
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
|
+
description:
|
168
|
+
email:
|
169
|
+
- xlablaza@gmail.com
|
170
|
+
executables: []
|
171
|
+
extensions: []
|
172
|
+
extra_rdoc_files: []
|
173
|
+
files:
|
174
|
+
- ".circleci/config.yml"
|
175
|
+
- ".github/workflows/gempush.yml"
|
176
|
+
- ".gitignore"
|
177
|
+
- ".rspec"
|
178
|
+
- ".travis.yml"
|
179
|
+
- CHANGELOG.md
|
180
|
+
- CODE_OF_CONDUCT.md
|
181
|
+
- Gemfile
|
182
|
+
- Gemfile.lock
|
183
|
+
- LICENSE.txt
|
184
|
+
- README.md
|
185
|
+
- Rakefile
|
186
|
+
- bin/console
|
187
|
+
- bin/setup
|
188
|
+
- bloom_remit2.gemspec
|
189
|
+
- lib/bloom_remit2.rb
|
190
|
+
- lib/bloom_remit2/agent.rb
|
191
|
+
- lib/bloom_remit2/client.rb
|
192
|
+
- lib/bloom_remit2/credit.rb
|
193
|
+
- lib/bloom_remit2/partner.rb
|
194
|
+
- lib/bloom_remit2/rate.rb
|
195
|
+
- lib/bloom_remit2/recipient.rb
|
196
|
+
- lib/bloom_remit2/remittance.rb
|
197
|
+
- lib/bloom_remit2/sender.rb
|
198
|
+
- lib/bloom_remit2/version.rb
|
199
|
+
homepage: https://github.com/makisu/bloom_remit2
|
200
|
+
licenses:
|
201
|
+
- MIT
|
202
|
+
metadata:
|
203
|
+
homepage_uri: https://github.com/makisu/bloom_remit2
|
204
|
+
source_code_uri: https://github.com/makisu/bloom_remit2
|
205
|
+
changelog_uri: https://github.com/makisu/bloom_remit2/blob/master/CHANGELOG.md
|
206
|
+
post_install_message:
|
207
|
+
rdoc_options: []
|
208
|
+
require_paths:
|
209
|
+
- lib
|
210
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
211
|
+
requirements:
|
212
|
+
- - ">="
|
213
|
+
- !ruby/object:Gem::Version
|
214
|
+
version: 2.3.0
|
215
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
216
|
+
requirements:
|
217
|
+
- - ">="
|
218
|
+
- !ruby/object:Gem::Version
|
219
|
+
version: '0'
|
220
|
+
requirements: []
|
221
|
+
rubygems_version: 3.1.2
|
222
|
+
signing_key:
|
223
|
+
specification_version: 4
|
224
|
+
summary: Ruby wrapper for BloomRemit's API
|
225
|
+
test_files: []
|