bleumi_pay_sdk_ruby 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +105 -0
  4. data/Rakefile +10 -0
  5. data/bleumi_pay_sdk_ruby.gemspec +39 -0
  6. data/docs/BadRequest.md +17 -0
  7. data/docs/Erc20PaymentsApi.md +318 -0
  8. data/docs/EthAddress.md +17 -0
  9. data/docs/EthNetwork.md +16 -0
  10. data/docs/PaginatedWalletOperations.md +8 -0
  11. data/docs/PaginatedWallets.md +8 -0
  12. data/docs/Wallet.md +29 -0
  13. data/docs/WalletBalance.md +23 -0
  14. data/docs/WalletCreateInput.md +21 -0
  15. data/docs/WalletCreateOutput.md +19 -0
  16. data/docs/WalletInputs.md +12 -0
  17. data/docs/WalletOperation.md +12 -0
  18. data/docs/WalletOperationInputs.md +21 -0
  19. data/docs/WalletOperationOutput.md +15 -0
  20. data/docs/WalletRefundOperationInput.md +15 -0
  21. data/docs/WalletSettleOperationInput.md +19 -0
  22. data/lib/bleumi_pay_sdk_ruby.rb +55 -0
  23. data/lib/bleumi_pay_sdk_ruby/api/erc20_payments_api.rb +482 -0
  24. data/lib/bleumi_pay_sdk_ruby/api_client.rb +386 -0
  25. data/lib/bleumi_pay_sdk_ruby/api_error.rb +57 -0
  26. data/lib/bleumi_pay_sdk_ruby/configuration.rb +248 -0
  27. data/lib/bleumi_pay_sdk_ruby/models/bad_request.rb +213 -0
  28. data/lib/bleumi_pay_sdk_ruby/models/eth_address.rb +208 -0
  29. data/lib/bleumi_pay_sdk_ruby/models/eth_network.rb +39 -0
  30. data/lib/bleumi_pay_sdk_ruby/models/paginated_wallet_operations.rb +214 -0
  31. data/lib/bleumi_pay_sdk_ruby/models/paginated_wallets.rb +214 -0
  32. data/lib/bleumi_pay_sdk_ruby/models/wallet.rb +293 -0
  33. data/lib/bleumi_pay_sdk_ruby/models/wallet_balance.rb +247 -0
  34. data/lib/bleumi_pay_sdk_ruby/models/wallet_create_input.rb +230 -0
  35. data/lib/bleumi_pay_sdk_ruby/models/wallet_create_output.rb +216 -0
  36. data/lib/bleumi_pay_sdk_ruby/models/wallet_inputs.rb +262 -0
  37. data/lib/bleumi_pay_sdk_ruby/models/wallet_operation.rb +256 -0
  38. data/lib/bleumi_pay_sdk_ruby/models/wallet_operation_inputs.rb +246 -0
  39. data/lib/bleumi_pay_sdk_ruby/models/wallet_operation_output.rb +202 -0
  40. data/lib/bleumi_pay_sdk_ruby/models/wallet_refund_operation_input.rb +201 -0
  41. data/lib/bleumi_pay_sdk_ruby/models/wallet_settle_operation_input.rb +216 -0
  42. data/lib/bleumi_pay_sdk_ruby/version.rb +15 -0
  43. data/spec/api/erc20_payments_api_spec.rb +120 -0
  44. data/spec/api_client_spec.rb +226 -0
  45. data/spec/configuration_spec.rb +42 -0
  46. data/spec/models/bad_request_spec.rb +47 -0
  47. data/spec/models/eth_address_spec.rb +41 -0
  48. data/spec/models/eth_network_spec.rb +35 -0
  49. data/spec/models/paginated_wallet_operations_spec.rb +47 -0
  50. data/spec/models/paginated_wallets_spec.rb +47 -0
  51. data/spec/models/wallet_balance_spec.rb +59 -0
  52. data/spec/models/wallet_create_input_spec.rb +53 -0
  53. data/spec/models/wallet_create_output_spec.rb +47 -0
  54. data/spec/models/wallet_inputs_spec.rb +65 -0
  55. data/spec/models/wallet_operation_inputs_spec.rb +59 -0
  56. data/spec/models/wallet_operation_output_spec.rb +41 -0
  57. data/spec/models/wallet_operation_spec.rb +65 -0
  58. data/spec/models/wallet_refund_operation_input_spec.rb +41 -0
  59. data/spec/models/wallet_settle_operation_input_spec.rb +47 -0
  60. data/spec/models/wallet_spec.rb +77 -0
  61. data/spec/spec_helper.rb +111 -0
  62. metadata +184 -0
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BleumiPay::WalletOperationOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'WalletOperationOutput' do
21
+ before do
22
+ # run before each test
23
+ @instance = BleumiPay::WalletOperationOutput.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of WalletOperationOutput' do
31
+ it 'should create an instance of WalletOperationOutput' do
32
+ expect(@instance).to be_instance_of(BleumiPay::WalletOperationOutput)
33
+ end
34
+ end
35
+ describe 'test attribute "txid"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BleumiPay::WalletOperation
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'WalletOperation' do
21
+ before do
22
+ # run before each test
23
+ @instance = BleumiPay::WalletOperation.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of WalletOperation' do
31
+ it 'should create an instance of WalletOperation' do
32
+ expect(@instance).to be_instance_of(BleumiPay::WalletOperation)
33
+ end
34
+ end
35
+ describe 'test attribute "id"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "func_name"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "status"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "inputs"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "hash"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BleumiPay::WalletRefundOperationInput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'WalletRefundOperationInput' do
21
+ before do
22
+ # run before each test
23
+ @instance = BleumiPay::WalletRefundOperationInput.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of WalletRefundOperationInput' do
31
+ it 'should create an instance of WalletRefundOperationInput' do
32
+ expect(@instance).to be_instance_of(BleumiPay::WalletRefundOperationInput)
33
+ end
34
+ end
35
+ describe 'test attribute "token"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BleumiPay::WalletSettleOperationInput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'WalletSettleOperationInput' do
21
+ before do
22
+ # run before each test
23
+ @instance = BleumiPay::WalletSettleOperationInput.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of WalletSettleOperationInput' do
31
+ it 'should create an instance of WalletSettleOperationInput' do
32
+ expect(@instance).to be_instance_of(BleumiPay::WalletSettleOperationInput)
33
+ end
34
+ end
35
+ describe 'test attribute "token"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "amount"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BleumiPay::Wallet
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Wallet' do
21
+ before do
22
+ # run before each test
23
+ @instance = BleumiPay::Wallet.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Wallet' do
31
+ it 'should create an instance of Wallet' do
32
+ expect(@instance).to be_instance_of(BleumiPay::Wallet)
33
+ end
34
+ end
35
+ describe 'test attribute "id"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "chain"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "addr"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "balances"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "inputs"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "created_at"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "updated_at"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ end
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #Bleumi Pay API
3
+
4
+ #A simple and powerful REST API to integrate ERC20 payments into your business or application
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: info@bleumi.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.0
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'bleumi_pay_sdk_ruby'
15
+
16
+ # The following was generated by the `rspec --init` command. Conventionally, all
17
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
18
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
19
+ # this file to always be loaded, without a need to explicitly require it in any
20
+ # files.
21
+ #
22
+ # Given that it is always loaded, you are encouraged to keep this file as
23
+ # light-weight as possible. Requiring heavyweight dependencies from this file
24
+ # will add to the boot time of your test suite on EVERY test run, even for an
25
+ # individual file that may not need all of that loaded. Instead, consider making
26
+ # a separate helper file that requires the additional dependencies and performs
27
+ # the additional setup, and require it from the spec files that actually need
28
+ # it.
29
+ #
30
+ # The `.rspec` file also contains a few flags that are not defaults but that
31
+ # users commonly want.
32
+ #
33
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
34
+ RSpec.configure do |config|
35
+ # rspec-expectations config goes here. You can use an alternate
36
+ # assertion/expectation library such as wrong or the stdlib/minitest
37
+ # assertions if you prefer.
38
+ config.expect_with :rspec do |expectations|
39
+ # This option will default to `true` in RSpec 4. It makes the `description`
40
+ # and `failure_message` of custom matchers include text for helper methods
41
+ # defined using `chain`, e.g.:
42
+ # be_bigger_than(2).and_smaller_than(4).description
43
+ # # => "be bigger than 2 and smaller than 4"
44
+ # ...rather than:
45
+ # # => "be bigger than 2"
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ # rspec-mocks config goes here. You can use an alternate test double
50
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
51
+ config.mock_with :rspec do |mocks|
52
+ # Prevents you from mocking or stubbing a method that does not exist on
53
+ # a real object. This is generally recommended, and will default to
54
+ # `true` in RSpec 4.
55
+ mocks.verify_partial_doubles = true
56
+ end
57
+
58
+ # The settings below are suggested to provide a good initial experience
59
+ # with RSpec, but feel free to customize to your heart's content.
60
+ =begin
61
+ # These two settings work together to allow you to limit a spec run
62
+ # to individual examples or groups you care about by tagging them with
63
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
64
+ # get run.
65
+ config.filter_run :focus
66
+ config.run_all_when_everything_filtered = true
67
+
68
+ # Allows RSpec to persist some state between runs in order to support
69
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
70
+ # you configure your source control system to ignore this file.
71
+ config.example_status_persistence_file_path = "spec/examples.txt"
72
+
73
+ # Limits the available syntax to the non-monkey patched syntax that is
74
+ # recommended. For more details, see:
75
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
76
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
77
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
78
+ config.disable_monkey_patching!
79
+
80
+ # This setting enables warnings. It's recommended, but in some cases may
81
+ # be too noisy due to issues in dependencies.
82
+ config.warnings = true
83
+
84
+ # Many RSpec users commonly either run the entire suite or an individual
85
+ # file, and it's useful to allow more verbose output when running an
86
+ # individual spec file.
87
+ if config.files_to_run.one?
88
+ # Use the documentation formatter for detailed output,
89
+ # unless a formatter has already been configured
90
+ # (e.g. via a command-line flag).
91
+ config.default_formatter = 'doc'
92
+ end
93
+
94
+ # Print the 10 slowest examples and example groups at the
95
+ # end of the spec run, to help surface which specs are running
96
+ # particularly slow.
97
+ config.profile_examples = 10
98
+
99
+ # Run specs in random order to surface order dependencies. If you find an
100
+ # order dependency and want to debug it, you can fix the order by providing
101
+ # the seed, which is printed after each run.
102
+ # --seed 1234
103
+ config.order = :random
104
+
105
+ # Seed global randomization in this process using the `--seed` CLI option.
106
+ # Setting this allows you to use `--seed` to deterministically reproduce
107
+ # test failures related to randomization by passing the same `--seed` value
108
+ # as the one that triggered the failure.
109
+ Kernel.srand config.seed
110
+ =end
111
+ end
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bleumi_pay_sdk_ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Bleumi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-11-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: json
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.1.0
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '2.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.1.0
53
+ - !ruby/object:Gem::Dependency
54
+ name: rspec
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.6'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.6.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.6'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.6.0
73
+ description: A simple and powerful REST API to integrate ERC20 payments into your
74
+ business or application
75
+ email:
76
+ - info@bleumi.com
77
+ executables: []
78
+ extensions: []
79
+ extra_rdoc_files: []
80
+ files:
81
+ - Gemfile
82
+ - README.md
83
+ - Rakefile
84
+ - bleumi_pay_sdk_ruby.gemspec
85
+ - docs/BadRequest.md
86
+ - docs/Erc20PaymentsApi.md
87
+ - docs/EthAddress.md
88
+ - docs/EthNetwork.md
89
+ - docs/PaginatedWalletOperations.md
90
+ - docs/PaginatedWallets.md
91
+ - docs/Wallet.md
92
+ - docs/WalletBalance.md
93
+ - docs/WalletCreateInput.md
94
+ - docs/WalletCreateOutput.md
95
+ - docs/WalletInputs.md
96
+ - docs/WalletOperation.md
97
+ - docs/WalletOperationInputs.md
98
+ - docs/WalletOperationOutput.md
99
+ - docs/WalletRefundOperationInput.md
100
+ - docs/WalletSettleOperationInput.md
101
+ - lib/bleumi_pay_sdk_ruby.rb
102
+ - lib/bleumi_pay_sdk_ruby/api/erc20_payments_api.rb
103
+ - lib/bleumi_pay_sdk_ruby/api_client.rb
104
+ - lib/bleumi_pay_sdk_ruby/api_error.rb
105
+ - lib/bleumi_pay_sdk_ruby/configuration.rb
106
+ - lib/bleumi_pay_sdk_ruby/models/bad_request.rb
107
+ - lib/bleumi_pay_sdk_ruby/models/eth_address.rb
108
+ - lib/bleumi_pay_sdk_ruby/models/eth_network.rb
109
+ - lib/bleumi_pay_sdk_ruby/models/paginated_wallet_operations.rb
110
+ - lib/bleumi_pay_sdk_ruby/models/paginated_wallets.rb
111
+ - lib/bleumi_pay_sdk_ruby/models/wallet.rb
112
+ - lib/bleumi_pay_sdk_ruby/models/wallet_balance.rb
113
+ - lib/bleumi_pay_sdk_ruby/models/wallet_create_input.rb
114
+ - lib/bleumi_pay_sdk_ruby/models/wallet_create_output.rb
115
+ - lib/bleumi_pay_sdk_ruby/models/wallet_inputs.rb
116
+ - lib/bleumi_pay_sdk_ruby/models/wallet_operation.rb
117
+ - lib/bleumi_pay_sdk_ruby/models/wallet_operation_inputs.rb
118
+ - lib/bleumi_pay_sdk_ruby/models/wallet_operation_output.rb
119
+ - lib/bleumi_pay_sdk_ruby/models/wallet_refund_operation_input.rb
120
+ - lib/bleumi_pay_sdk_ruby/models/wallet_settle_operation_input.rb
121
+ - lib/bleumi_pay_sdk_ruby/version.rb
122
+ - spec/api/erc20_payments_api_spec.rb
123
+ - spec/api_client_spec.rb
124
+ - spec/configuration_spec.rb
125
+ - spec/models/bad_request_spec.rb
126
+ - spec/models/eth_address_spec.rb
127
+ - spec/models/eth_network_spec.rb
128
+ - spec/models/paginated_wallet_operations_spec.rb
129
+ - spec/models/paginated_wallets_spec.rb
130
+ - spec/models/wallet_balance_spec.rb
131
+ - spec/models/wallet_create_input_spec.rb
132
+ - spec/models/wallet_create_output_spec.rb
133
+ - spec/models/wallet_inputs_spec.rb
134
+ - spec/models/wallet_operation_inputs_spec.rb
135
+ - spec/models/wallet_operation_output_spec.rb
136
+ - spec/models/wallet_operation_spec.rb
137
+ - spec/models/wallet_refund_operation_input_spec.rb
138
+ - spec/models/wallet_settle_operation_input_spec.rb
139
+ - spec/models/wallet_spec.rb
140
+ - spec/spec_helper.rb
141
+ homepage: https://pay.bleumi.com/
142
+ licenses:
143
+ - Unlicense
144
+ metadata: {}
145
+ post_install_message:
146
+ rdoc_options: []
147
+ require_paths:
148
+ - lib
149
+ required_ruby_version: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: '1.9'
154
+ required_rubygems_version: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ requirements: []
160
+ rubyforge_project:
161
+ rubygems_version: 2.7.6.2
162
+ signing_key:
163
+ specification_version: 4
164
+ summary: Bleumi Pay API Ruby Gem
165
+ test_files:
166
+ - spec/api/erc20_payments_api_spec.rb
167
+ - spec/api_client_spec.rb
168
+ - spec/configuration_spec.rb
169
+ - spec/models/bad_request_spec.rb
170
+ - spec/models/wallet_refund_operation_input_spec.rb
171
+ - spec/models/wallet_create_input_spec.rb
172
+ - spec/models/wallet_spec.rb
173
+ - spec/models/paginated_wallets_spec.rb
174
+ - spec/models/paginated_wallet_operations_spec.rb
175
+ - spec/models/wallet_balance_spec.rb
176
+ - spec/models/wallet_create_output_spec.rb
177
+ - spec/models/wallet_operation_output_spec.rb
178
+ - spec/models/eth_network_spec.rb
179
+ - spec/models/wallet_inputs_spec.rb
180
+ - spec/models/wallet_settle_operation_input_spec.rb
181
+ - spec/models/wallet_operation_spec.rb
182
+ - spec/models/wallet_operation_inputs_spec.rb
183
+ - spec/models/eth_address_spec.rb
184
+ - spec/spec_helper.rb