automation-test 1.16 → 1.17
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 +4 -4
- data/README.md +10 -29
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/api_helper.rb +2 -2
- data/lib/apimatic_calculator_test/client.rb +35 -0
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/configuration.rb +4 -3
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/controllers/base_controller.rb +2 -2
- data/lib/apimatic_calculator_test/controllers/simple_calculator_controller.rb +53 -0
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/exceptions/api_exception.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/faraday_client.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/http_call_back.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/http_client.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/http_method_enum.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/http_request.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/http/http_response.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/models/base_model.rb +2 -2
- data/lib/apimatic_calculator_test/models/operation_type_enum.rb +23 -0
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/utilities/date_time_helper.rb +2 -2
- data/lib/{coin_gecko_apiv3 → apimatic_calculator_test}/utilities/file_wrapper.rb +2 -2
- data/lib/apimatic_calculator_test.rb +39 -0
- metadata +20 -85
- data/lib/coin_gecko_apiv3/client.rb +0 -125
- data/lib/coin_gecko_apiv3/controllers/asset_platforms_controller.rb +0 -29
- data/lib/coin_gecko_apiv3/controllers/categories_controller.rb +0 -52
- data/lib/coin_gecko_apiv3/controllers/coins_controller.rb +0 -389
- data/lib/coin_gecko_apiv3/controllers/companies_beta_controller.rb +0 -35
- data/lib/coin_gecko_apiv3/controllers/contract_controller.rb +0 -119
- data/lib/coin_gecko_apiv3/controllers/derivatives_controller.rb +0 -112
- data/lib/coin_gecko_apiv3/controllers/events_controller.rb +0 -89
- data/lib/coin_gecko_apiv3/controllers/exchange_rates_controller.rb +0 -29
- data/lib/coin_gecko_apiv3/controllers/exchanges_controller.rb +0 -192
- data/lib/coin_gecko_apiv3/controllers/finance_controller.rb +0 -71
- data/lib/coin_gecko_apiv3/controllers/global_controller.rb +0 -29
- data/lib/coin_gecko_apiv3/controllers/indexes_controller.rb +0 -79
- data/lib/coin_gecko_apiv3/controllers/ping_controller.rb +0 -29
- data/lib/coin_gecko_apiv3/controllers/simple_controller.rb +0 -126
- data/lib/coin_gecko_apiv3/controllers/status_updates_controller.rb +0 -48
- data/lib/coin_gecko_apiv3/controllers/trending_controller.rb +0 -30
- data/lib/coin_gecko_apiv3.rb +0 -52
- data/test/controllers/controller_test_base.rb +0 -21
- data/test/controllers/test_asset_platforms_controller.rb +0 -25
- data/test/controllers/test_categories_controller.rb +0 -37
- data/test/controllers/test_coins_controller.rb +0 -27
- data/test/controllers/test_derivatives_controller.rb +0 -51
- data/test/controllers/test_events_controller.rb +0 -55
- data/test/controllers/test_exchange_rates_controller.rb +0 -26
- data/test/controllers/test_exchanges_controller.rb +0 -38
- data/test/controllers/test_finance_controller.rb +0 -43
- data/test/controllers/test_global_controller.rb +0 -26
- data/test/controllers/test_indexes_controller.rb +0 -38
- data/test/controllers/test_ping_controller.rb +0 -26
- data/test/controllers/test_simple_controller.rb +0 -25
- data/test/controllers/test_status_updates_controller.rb +0 -31
- data/test/controllers/test_trending_controller.rb +0 -25
- data/test/http_response_catcher.rb +0 -19
- data/test/test_helper.rb +0 -94
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ff836b7ed30aa6afdc2dbdce327816df7c0c67eec72f94a54f7400a7cca30c7
|
4
|
+
data.tar.gz: 80a48f03de120a3a53d385b40cf970a4e4d42932e83ab027e3ff8d8b3fce5958
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f584e79005b6cdc5d8e8695fa48c6cdbff6798c3adfe7b1c358dbbb171c1b8dcd308d38819c5b4b07b542b5463ef76a904368445e9880e3e77ff03f2905b6ea8
|
7
|
+
data.tar.gz: b00a7f03fd150c16c665762ac897c381434aeaabe269c68ab0246cbf3d2564d207d640d7b1187483a6109398c3cb1eca04cc5d4a6743df5019ae57280841e466
|
data/README.md
CHANGED
@@ -1,29 +1,25 @@
|
|
1
1
|
|
2
|
-
# Getting Started with
|
2
|
+
# Getting Started with APIMATIC Calculator test
|
3
|
+
|
4
|
+
## Introduction
|
5
|
+
|
6
|
+
Simple calculator API hosted on APIMATIC for demo on 29th Sept
|
3
7
|
|
4
8
|
## Install the Package
|
5
9
|
|
6
10
|
Install the gem from the command line:
|
7
11
|
|
8
12
|
```ruby
|
9
|
-
gem install automation-test -v 1.
|
13
|
+
gem install automation-test -v 1.17
|
10
14
|
```
|
11
15
|
|
12
16
|
Or add the gem to your Gemfile and run `bundle`:
|
13
17
|
|
14
18
|
```ruby
|
15
|
-
gem 'automation-test', '1.
|
19
|
+
gem 'automation-test', '1.17'
|
16
20
|
```
|
17
21
|
|
18
|
-
For additional gem details, see the [RubyGems page for the automation-test gem](https://rubygems.org/gems/automation-test/versions/1.
|
19
|
-
|
20
|
-
## Test the SDK
|
21
|
-
|
22
|
-
To run the tests, navigate to the root directory of the SDK in your terminal and execute the following command:
|
23
|
-
|
24
|
-
```
|
25
|
-
rake
|
26
|
-
```
|
22
|
+
For additional gem details, see the [RubyGems page for the automation-test gem](https://rubygems.org/gems/automation-test/versions/1.17).
|
27
23
|
|
28
24
|
## Initialize the API Client
|
29
25
|
|
@@ -43,28 +39,13 @@ The following parameters are configurable for the API Client:
|
|
43
39
|
The API client can be initialized as follows:
|
44
40
|
|
45
41
|
```ruby
|
46
|
-
client =
|
42
|
+
client = ApimaticCalculatorTest::Client.new(
|
47
43
|
)
|
48
44
|
```
|
49
45
|
|
50
46
|
## List of APIs
|
51
47
|
|
52
|
-
* [
|
53
|
-
* [Simple](/doc/controllers/simple.md)
|
54
|
-
* [Coins](/doc/controllers/coins.md)
|
55
|
-
* [Contract](/doc/controllers/contract.md)
|
56
|
-
* [Asset Platforms](/doc/controllers/asset-platforms.md)
|
57
|
-
* [Categories](/doc/controllers/categories.md)
|
58
|
-
* [Exchanges](/doc/controllers/exchanges.md)
|
59
|
-
* [Finance](/doc/controllers/finance.md)
|
60
|
-
* [Indexes](/doc/controllers/indexes.md)
|
61
|
-
* [Derivatives](/doc/controllers/derivatives.md)
|
62
|
-
* [Status Updates](/doc/controllers/status-updates.md)
|
63
|
-
* [Events](/doc/controllers/events.md)
|
64
|
-
* [Exchange Rates](/doc/controllers/exchange-rates.md)
|
65
|
-
* [Trending](/doc/controllers/trending.md)
|
66
|
-
* [Global](/doc/controllers/global.md)
|
67
|
-
* [Companies Beta](/doc/controllers/companies-beta.md)
|
48
|
+
* [Simple Calculator](/doc/controllers/simple-calculator.md)
|
68
49
|
|
69
50
|
## Classes Documentation
|
70
51
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# API utility class
|
8
8
|
class APIHelper
|
9
9
|
# Serializes an array parameter (creates key value pairs).
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# apimatic_calculator_test
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module ApimaticCalculatorTest
|
7
|
+
# apimatic_calculator_test client class.
|
8
|
+
class Client
|
9
|
+
attr_reader :config
|
10
|
+
|
11
|
+
# Access to simple_calculator controller.
|
12
|
+
# @return [SimpleCalculatorController] Returns the controller instance.
|
13
|
+
def simple_calculator
|
14
|
+
@simple_calculator ||= SimpleCalculatorController.new config
|
15
|
+
end
|
16
|
+
|
17
|
+
def initialize(http_client_instance: nil, timeout: 60, max_retries: 0,
|
18
|
+
retry_interval: 1, backoff_factor: 2,
|
19
|
+
retry_statuses: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524],
|
20
|
+
retry_methods: %i[get put],
|
21
|
+
environment: Environment::PRODUCTION, config: nil)
|
22
|
+
@config = if config.nil?
|
23
|
+
Configuration.new(http_client_instance: http_client_instance,
|
24
|
+
timeout: timeout, max_retries: max_retries,
|
25
|
+
retry_interval: retry_interval,
|
26
|
+
backoff_factor: backoff_factor,
|
27
|
+
retry_statuses: retry_statuses,
|
28
|
+
retry_methods: retry_methods,
|
29
|
+
environment: environment)
|
30
|
+
else
|
31
|
+
config
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -1,11 +1,12 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# An enum for SDK environments.
|
8
8
|
class Environment
|
9
|
+
# PRODUCTION: This environment connect to the LIVE calculator API
|
9
10
|
ENVIRONMENT = [
|
10
11
|
PRODUCTION = 'production'.freeze
|
11
12
|
].freeze
|
@@ -95,7 +96,7 @@ module CoinGeckoApiv3
|
|
95
96
|
# All the environments the SDK can run in.
|
96
97
|
ENVIRONMENTS = {
|
97
98
|
Environment::PRODUCTION => {
|
98
|
-
Server::DEFAULT => '
|
99
|
+
Server::DEFAULT => 'http://examples.apimatic.io/apps/calculator'
|
99
100
|
}
|
100
101
|
}.freeze
|
101
102
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# BaseController.
|
8
8
|
class BaseController
|
9
9
|
attr_accessor :config, :http_call_back
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# apimatic_calculator_test
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module ApimaticCalculatorTest
|
7
|
+
# SimpleCalculatorController
|
8
|
+
class SimpleCalculatorController < BaseController
|
9
|
+
def initialize(config, http_call_back: nil)
|
10
|
+
super(config, http_call_back: http_call_back)
|
11
|
+
end
|
12
|
+
|
13
|
+
# Calculates the expression using the specified operation.
|
14
|
+
#
|
15
|
+
#
|
16
|
+
# | Table Column 1 | Table Column 2 | Table Column 3 |
|
17
|
+
# | -------------- | -------------- | -------------- |
|
18
|
+
# | Row 1x1 | Row 1x2 | Row 1x3 |
|
19
|
+
# | Row 2x1 | Row 2x2 | Row 2x3 |
|
20
|
+
# @param [OperationTypeEnum] operation Required parameter: The operator to
|
21
|
+
# apply on the variables
|
22
|
+
# @param [Float] x Required parameter: The LHS value
|
23
|
+
# @param [Float] y Required parameter: The RHS value
|
24
|
+
# @return [Float] response from the API call
|
25
|
+
def calculate(operation,
|
26
|
+
x,
|
27
|
+
y)
|
28
|
+
# Prepare query url.
|
29
|
+
_query_builder = config.get_base_uri
|
30
|
+
_query_builder << '/{operation}'
|
31
|
+
_query_builder = APIHelper.append_url_with_template_parameters(
|
32
|
+
_query_builder,
|
33
|
+
'operation' => { 'value' => operation, 'encode' => true }
|
34
|
+
)
|
35
|
+
_query_builder = APIHelper.append_url_with_query_parameters(
|
36
|
+
_query_builder,
|
37
|
+
'x' => x,
|
38
|
+
'y' => y
|
39
|
+
)
|
40
|
+
_query_url = APIHelper.clean_url _query_builder
|
41
|
+
|
42
|
+
# Prepare and execute HttpRequest.
|
43
|
+
_request = config.http_client.get(
|
44
|
+
_query_url
|
45
|
+
)
|
46
|
+
_response = execute_request(_request)
|
47
|
+
validate_response(_response)
|
48
|
+
|
49
|
+
# Return appropriate response type.
|
50
|
+
_response.raw_body.to_f
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# Class for exceptions when there is a network error, status code error, etc.
|
8
8
|
class APIException < StandardError
|
9
9
|
attr_reader :response, :response_code
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
@@ -6,7 +6,7 @@
|
|
6
6
|
require 'faraday/http_cache'
|
7
7
|
require 'faraday_middleware'
|
8
8
|
|
9
|
-
module
|
9
|
+
module ApimaticCalculatorTest
|
10
10
|
# An implementation of HttpClient.
|
11
11
|
class FaradayClient < HttpClient
|
12
12
|
# The constructor.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# HttpCallBack allows defining callables for pre and post API calls.
|
8
8
|
class HttpCallBack
|
9
9
|
# A controller will call this method before making an HTTP Request.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# An interface for the methods that an HTTP Client must implement.
|
8
8
|
#
|
9
9
|
# This class should not be instantiated but should be used as a base class
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# HTTP Methods Enumeration.
|
8
8
|
class HttpMethodEnum
|
9
9
|
HTTPMETHODENUM = [GET = 'GET'.freeze, POST = 'POST'.freeze,
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# Represents a single Http Request.
|
8
8
|
class HttpRequest
|
9
9
|
attr_accessor :http_method, :query_url, :headers,
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# Http response received.
|
8
8
|
class HttpResponse
|
9
9
|
attr_reader :status_code, :reason_phrase, :headers, :raw_body, :request
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# Base model.
|
8
8
|
class BaseModel
|
9
9
|
# Returns a Hash representation of the current object.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# apimatic_calculator_test
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module ApimaticCalculatorTest
|
7
|
+
# Possible operators are sum, subtract, multiply, divide
|
8
|
+
class OperationTypeEnum
|
9
|
+
OPERATION_TYPE_ENUM = [
|
10
|
+
# TODO: Write general description for SUM
|
11
|
+
SUM = 'SUM'.freeze,
|
12
|
+
|
13
|
+
# TODO: Write general description for SUBTRACT
|
14
|
+
SUBTRACT = 'SUBTRACT'.freeze,
|
15
|
+
|
16
|
+
# TODO: Write general description for MULTIPLY
|
17
|
+
MULTIPLY = 'MULTIPLY'.freeze,
|
18
|
+
|
19
|
+
# TODO: Write general description for DIVIDE
|
20
|
+
DIVIDE = 'DIVIDE'.freeze
|
21
|
+
].freeze
|
22
|
+
end
|
23
|
+
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
6
|
require 'date'
|
7
|
-
module
|
7
|
+
module ApimaticCalculatorTest
|
8
8
|
# A utility that supports dateTime conversion to different formats
|
9
9
|
class DateTimeHelper
|
10
10
|
# Safely converts a DateTime object into a rfc1123 format string
|
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# apimatic_calculator_test
|
2
2
|
#
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
-
module
|
6
|
+
module ApimaticCalculatorTest
|
7
7
|
# A utility to allow users to set the content-type for files
|
8
8
|
class FileWrapper
|
9
9
|
attr_reader :content_type, :file
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# apimatic_calculator_test
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
require 'date'
|
7
|
+
require 'json'
|
8
|
+
require 'faraday'
|
9
|
+
require 'certifi'
|
10
|
+
require 'logging'
|
11
|
+
|
12
|
+
require_relative 'apimatic_calculator_test/api_helper'
|
13
|
+
require_relative 'apimatic_calculator_test/client'
|
14
|
+
|
15
|
+
# Utilities
|
16
|
+
require_relative 'apimatic_calculator_test/utilities/file_wrapper'
|
17
|
+
require_relative 'apimatic_calculator_test/utilities/date_time_helper'
|
18
|
+
|
19
|
+
# Http
|
20
|
+
require_relative 'apimatic_calculator_test/http/http_call_back'
|
21
|
+
require_relative 'apimatic_calculator_test/http/http_client'
|
22
|
+
require_relative 'apimatic_calculator_test/http/faraday_client'
|
23
|
+
require_relative 'apimatic_calculator_test/http/http_method_enum'
|
24
|
+
require_relative 'apimatic_calculator_test/http/http_request'
|
25
|
+
require_relative 'apimatic_calculator_test/http/http_response'
|
26
|
+
|
27
|
+
# Models
|
28
|
+
require_relative 'apimatic_calculator_test/models/base_model'
|
29
|
+
require_relative 'apimatic_calculator_test/models/operation_type_enum'
|
30
|
+
|
31
|
+
# Exceptions
|
32
|
+
require_relative 'apimatic_calculator_test/exceptions/api_exception'
|
33
|
+
|
34
|
+
require_relative 'apimatic_calculator_test/configuration'
|
35
|
+
|
36
|
+
# Controllers
|
37
|
+
require_relative 'apimatic_calculator_test/controllers/base_controller'
|
38
|
+
require_relative 'apimatic_calculator_test/controllers/simple_calculator' \
|
39
|
+
'_controller'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: automation-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.17'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- APIMatic SDK Generator
|
@@ -92,41 +92,7 @@ dependencies:
|
|
92
92
|
- - "~>"
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: '2.2'
|
95
|
-
|
96
|
-
name: minitest
|
97
|
-
requirement: !ruby/object:Gem::Requirement
|
98
|
-
requirements:
|
99
|
-
- - "~>"
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
version: '5.14'
|
102
|
-
- - ">="
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
version: 5.14.1
|
105
|
-
type: :development
|
106
|
-
prerelease: false
|
107
|
-
version_requirements: !ruby/object:Gem::Requirement
|
108
|
-
requirements:
|
109
|
-
- - "~>"
|
110
|
-
- !ruby/object:Gem::Version
|
111
|
-
version: '5.14'
|
112
|
-
- - ">="
|
113
|
-
- !ruby/object:Gem::Version
|
114
|
-
version: 5.14.1
|
115
|
-
- !ruby/object:Gem::Dependency
|
116
|
-
name: minitest-proveit
|
117
|
-
requirement: !ruby/object:Gem::Requirement
|
118
|
-
requirements:
|
119
|
-
- - "~>"
|
120
|
-
- !ruby/object:Gem::Version
|
121
|
-
version: '1.0'
|
122
|
-
type: :development
|
123
|
-
prerelease: false
|
124
|
-
version_requirements: !ruby/object:Gem::Requirement
|
125
|
-
requirements:
|
126
|
-
- - "~>"
|
127
|
-
- !ruby/object:Gem::Version
|
128
|
-
version: '1.0'
|
129
|
-
description: ''
|
95
|
+
description: Simple calculator API hosted on APIMATIC for demo on 29th Sept
|
130
96
|
email: support@apimatic.io
|
131
97
|
executables: []
|
132
98
|
extensions: []
|
@@ -134,54 +100,23 @@ extra_rdoc_files: []
|
|
134
100
|
files:
|
135
101
|
- LICENSE
|
136
102
|
- README.md
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
- lib/coin_gecko_apiv3/controllers/ping_controller.rb
|
155
|
-
- lib/coin_gecko_apiv3/controllers/simple_controller.rb
|
156
|
-
- lib/coin_gecko_apiv3/controllers/status_updates_controller.rb
|
157
|
-
- lib/coin_gecko_apiv3/controllers/trending_controller.rb
|
158
|
-
- lib/coin_gecko_apiv3/exceptions/api_exception.rb
|
159
|
-
- lib/coin_gecko_apiv3/http/faraday_client.rb
|
160
|
-
- lib/coin_gecko_apiv3/http/http_call_back.rb
|
161
|
-
- lib/coin_gecko_apiv3/http/http_client.rb
|
162
|
-
- lib/coin_gecko_apiv3/http/http_method_enum.rb
|
163
|
-
- lib/coin_gecko_apiv3/http/http_request.rb
|
164
|
-
- lib/coin_gecko_apiv3/http/http_response.rb
|
165
|
-
- lib/coin_gecko_apiv3/models/base_model.rb
|
166
|
-
- lib/coin_gecko_apiv3/utilities/date_time_helper.rb
|
167
|
-
- lib/coin_gecko_apiv3/utilities/file_wrapper.rb
|
168
|
-
- test/controllers/controller_test_base.rb
|
169
|
-
- test/controllers/test_asset_platforms_controller.rb
|
170
|
-
- test/controllers/test_categories_controller.rb
|
171
|
-
- test/controllers/test_coins_controller.rb
|
172
|
-
- test/controllers/test_derivatives_controller.rb
|
173
|
-
- test/controllers/test_events_controller.rb
|
174
|
-
- test/controllers/test_exchange_rates_controller.rb
|
175
|
-
- test/controllers/test_exchanges_controller.rb
|
176
|
-
- test/controllers/test_finance_controller.rb
|
177
|
-
- test/controllers/test_global_controller.rb
|
178
|
-
- test/controllers/test_indexes_controller.rb
|
179
|
-
- test/controllers/test_ping_controller.rb
|
180
|
-
- test/controllers/test_simple_controller.rb
|
181
|
-
- test/controllers/test_status_updates_controller.rb
|
182
|
-
- test/controllers/test_trending_controller.rb
|
183
|
-
- test/http_response_catcher.rb
|
184
|
-
- test/test_helper.rb
|
103
|
+
- lib/apimatic_calculator_test.rb
|
104
|
+
- lib/apimatic_calculator_test/api_helper.rb
|
105
|
+
- lib/apimatic_calculator_test/client.rb
|
106
|
+
- lib/apimatic_calculator_test/configuration.rb
|
107
|
+
- lib/apimatic_calculator_test/controllers/base_controller.rb
|
108
|
+
- lib/apimatic_calculator_test/controllers/simple_calculator_controller.rb
|
109
|
+
- lib/apimatic_calculator_test/exceptions/api_exception.rb
|
110
|
+
- lib/apimatic_calculator_test/http/faraday_client.rb
|
111
|
+
- lib/apimatic_calculator_test/http/http_call_back.rb
|
112
|
+
- lib/apimatic_calculator_test/http/http_client.rb
|
113
|
+
- lib/apimatic_calculator_test/http/http_method_enum.rb
|
114
|
+
- lib/apimatic_calculator_test/http/http_request.rb
|
115
|
+
- lib/apimatic_calculator_test/http/http_response.rb
|
116
|
+
- lib/apimatic_calculator_test/models/base_model.rb
|
117
|
+
- lib/apimatic_calculator_test/models/operation_type_enum.rb
|
118
|
+
- lib/apimatic_calculator_test/utilities/date_time_helper.rb
|
119
|
+
- lib/apimatic_calculator_test/utilities/file_wrapper.rb
|
185
120
|
homepage: https://apimatic.io
|
186
121
|
licenses:
|
187
122
|
- MIT
|
@@ -208,5 +143,5 @@ rubyforge_project:
|
|
208
143
|
rubygems_version: 2.7.6
|
209
144
|
signing_key:
|
210
145
|
specification_version: 4
|
211
|
-
summary:
|
146
|
+
summary: apimatic_calculator_test
|
212
147
|
test_files: []
|