fmrest-cloud 0.20.0.rc1 → 0.21.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/CHANGELOG.md +6 -0
- data/README.md +10 -24
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e51d729adde7c0793cd57a3861295f8d6fd8252e41a72e0d2d2f9e2e3c2dea7b
|
|
4
|
+
data.tar.gz: de31296ee64eb2eee009154b33c36101c096a1448ed4bc8b9913479ba345224b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8be74fb0c44ea86a13899f8455f875e243256acabd779b3b7bb32151e1f5e09f632aba941688c9bba99fc595392c61f091759065b1e4f378bc3702ba52677d37
|
|
7
|
+
data.tar.gz: a9809991943f52eb4f0ed35082e5f551b375715b3066c525e7984847d39054143c4804ae9e11244a9c35436ff4ff1e155176cef6de87922be2f06dcb96dea790
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://rubygems.org/gems/fmrest)
|
|
4
4
|

|
|
5
5
|
[](https://rubydoc.info/github/beezwax/fmrest-ruby)
|
|
6
|
+
[](https://beezwax.net/)
|
|
6
7
|
|
|
7
8
|
A Ruby client for
|
|
8
9
|
[FileMaker's Data API](https://help.claris.com/en/data-api-guide)
|
|
@@ -13,19 +14,8 @@ While pretty feature-rich, fmrest-ruby doesn't yet support 100% of FileMaker
|
|
|
13
14
|
table](#api-implementation-completeness-table) to check if a feature you need
|
|
14
15
|
is natively supported by the gem.
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
* [Gems](#gems)
|
|
19
|
-
* [Installation](#installation)
|
|
20
|
-
* [Simple example](#simple-example)
|
|
21
|
-
* [Connection settings](#connection-settings)
|
|
22
|
-
* [Session token store](#session-token-store)
|
|
23
|
-
* [Date fields and timezones](#date-fields-and-timezones)
|
|
24
|
-
* [ActiveRecord-like ORM (fmrest-spyke)](#activerecord-like-orm-fmrest-spyke)
|
|
25
|
-
* [Logging](#logging)
|
|
26
|
-
* [Gotchas](#gotchas)
|
|
27
|
-
* [API implementation completeness table](#api-implementation-completeness-table)
|
|
28
|
-
* [Supported Ruby versions](#supported-ruby-versions)
|
|
17
|
+
Need Ruby or FileMaker consulting? Contact us at
|
|
18
|
+
[Beezwax.net](https://beezwax.net/)
|
|
29
19
|
|
|
30
20
|
## Gems
|
|
31
21
|
|
|
@@ -121,7 +111,8 @@ to, for instance, disable SSL verification:
|
|
|
121
111
|
{
|
|
122
112
|
host: "…",
|
|
123
113
|
…
|
|
124
|
-
ssl: { verify: false }
|
|
114
|
+
ssl: { verify: false },
|
|
115
|
+
proxy: "http://user:password@proxy.host:4321"
|
|
125
116
|
}
|
|
126
117
|
```
|
|
127
118
|
|
|
@@ -132,13 +123,13 @@ You can also pass a `:log` option for basic request logging, see the section on
|
|
|
132
123
|
|
|
133
124
|
Option | Description | Format | Default
|
|
134
125
|
--------------------|--------------------------------------------|-----------------------------|--------
|
|
135
|
-
`:host` | Hostname with optional port, e.g. `
|
|
126
|
+
`:host` | Hostname with optional port, e.g. `example.com:9000` | String | None
|
|
136
127
|
`:database` | The name of the database to connect to | String | None
|
|
137
128
|
`:username` | A Data API-ready account | String | None
|
|
138
129
|
`:password` | Your password | String | None
|
|
139
130
|
`:account_name` | Alias of `:username` | String | None
|
|
140
|
-
`:ssl` | SSL options to be forwarded to Faraday | Faraday SSL options
|
|
141
|
-
`:proxy` | Proxy URI e.g. `http://
|
|
131
|
+
`:ssl` | SSL options to be forwarded to Faraday | [Faraday SSL options](https://www.rubydoc.info/gems/faraday/Faraday/SSLOptions) hash | None
|
|
132
|
+
`:proxy` | Proxy URI, e.g. `http://user:password@proxy.host:4321` | String | None
|
|
142
133
|
`:log` | Log JSON responses to STDOUT | Boolean | `false`
|
|
143
134
|
`:log_level` | Which log level to log into | Values accepted by `Logger#level=` | `:debug`
|
|
144
135
|
`:coerce_dates` | See section on [date fields](#date-fields-and-timezones) | Boolean \| `:hybrid` \| `:full` | `false`
|
|
@@ -558,13 +549,8 @@ FM Data API reference: https://help.claris.com/en/data-api-guide/
|
|
|
558
549
|
|
|
559
550
|
## Supported Ruby versions
|
|
560
551
|
|
|
561
|
-
fmrest-ruby
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
* Ruby 2.5
|
|
565
|
-
* Ruby 2.6
|
|
566
|
-
* Ruby 2.7
|
|
567
|
-
* Ruby 3.0
|
|
552
|
+
fmrest-ruby is [tested against](https://github.com/beezwax/fmrest-ruby/actions?query=workflow%3ACI)
|
|
553
|
+
Ruby 2.6 through 3.1.
|
|
568
554
|
|
|
569
555
|
## Gem development
|
|
570
556
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fmrest-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Carbajal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-05-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fmrest-core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.21.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.21.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: aws-cognito-srp
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -69,11 +69,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
version: '0'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
|
-
- - "
|
|
72
|
+
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version:
|
|
74
|
+
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.
|
|
76
|
+
rubygems_version: 3.3.3
|
|
77
77
|
signing_key:
|
|
78
78
|
specification_version: 4
|
|
79
79
|
summary: FileMaker Cloud support for fmrest gem
|