hammett-washington-sdk 1.6.9 → 1.7.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 +4 -4
- data/README.md +8 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da90815023346411f9bedebf8bb3b71b81590bbd3fc1c71f31d5759018d130dd
|
4
|
+
data.tar.gz: 4508a78259e5c0de9a0fd76a55f88374980c8c11c5ed28122f90c404c724049b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6434e525095c77f9add1897aacc18293761350e7299b90e3c8f30b6157811839db111af1e6c47be75515fe75391f0113d88430dcbca798fd2b5af4223e11845f
|
7
|
+
data.tar.gz: f68968bc6e77db4f5b3f5b5fd9bfc34e531fcd2592fc191d7c0f7a9981dd97cadf2408c7072576bc776177a9e3f6d57c5bd42c4a3e7c092f285ce44e887cb587
|
data/README.md
CHANGED
@@ -10,16 +10,16 @@ Simple calculator API hosted on APIMATIC
|
|
10
10
|
Install the gem from the command line:
|
11
11
|
|
12
12
|
```ruby
|
13
|
-
gem install hammett-washington-sdk -v 1.
|
13
|
+
gem install hammett-washington-sdk -v 1.7.0
|
14
14
|
```
|
15
15
|
|
16
16
|
Or add the gem to your Gemfile and run `bundle`:
|
17
17
|
|
18
18
|
```ruby
|
19
|
-
gem 'hammett-washington-sdk', '1.
|
19
|
+
gem 'hammett-washington-sdk', '1.7.0'
|
20
20
|
```
|
21
21
|
|
22
|
-
For additional gem details, see the [RubyGems page for the hammett-washington-sdk gem](https://rubygems.org/gems/hammett-washington-sdk/versions/1.
|
22
|
+
For additional gem details, see the [RubyGems page for the hammett-washington-sdk gem](https://rubygems.org/gems/hammett-washington-sdk/versions/1.7.0).
|
23
23
|
|
24
24
|
## Test the SDK
|
25
25
|
|
@@ -31,7 +31,7 @@ rake
|
|
31
31
|
|
32
32
|
## Initialize the API Client
|
33
33
|
|
34
|
-
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.
|
34
|
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.7.0/doc/client.md)
|
35
35
|
|
36
36
|
The following parameters are configurable for the API Client:
|
37
37
|
|
@@ -58,11 +58,11 @@ client = ApimaticCalculator::Client.new(
|
|
58
58
|
|
59
59
|
## List of APIs
|
60
60
|
|
61
|
-
* [Simple Calculator](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.
|
61
|
+
* [Simple Calculator](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.7.0/doc/controllers/simple-calculator.md)
|
62
62
|
|
63
63
|
## Classes Documentation
|
64
64
|
|
65
|
-
* [Utility Classes](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.
|
66
|
-
* [HttpResponse](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.
|
67
|
-
* [HttpRequest](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.
|
65
|
+
* [Utility Classes](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.7.0/doc/utility-classes.md)
|
66
|
+
* [HttpResponse](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.7.0/doc/http-response.md)
|
67
|
+
* [HttpRequest](https://www.github.com/ZahraN444/hammett-washington-ruby-sdk/tree/1.7.0/doc/http-request.md)
|
68
68
|
|