fmrest-core 0.19.0 → 0.20.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +2 -2
- data/lib/fmrest/token_store/null.rb +4 -13
- data/lib/fmrest/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e65b80ac2c60bb8c3ba6c356c55c720dec5ed59ee8afdb94e18c025bf327a3fe
|
4
|
+
data.tar.gz: c144aaafd1b237bd67fdbd90a99423dae90638555703dd4b6b2eb05dbc7f687e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff81e141c358ae0f4c95d1d4b82a58b717caa550239b358345d6fcc0a1c3e9af1df3dee9e5c014e2163a67a73fbf83ab4d2bd1df674a0e16261f3c57c3e6a826
|
7
|
+
data.tar.gz: 0ed42801b904cc7967dab1c5990aa8389d07727b7a5d3234db6efb40b61d5c3312fbe1e45522bb05058fefc237571456546c209b3f8f752ff0c4a9026770f181
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
## Changelog
|
2
2
|
|
3
|
+
### 0.20.0
|
4
|
+
|
5
|
+
* Forward proxy options to AWS Client when using `fmrest-cloud` gem
|
6
|
+
|
3
7
|
### 0.19.0
|
4
8
|
|
5
|
-
*
|
9
|
+
* Added native support for FileMaker Cloud through the `fmrest-cloud` gem
|
6
10
|
|
7
11
|
### 0.18.0
|
8
12
|
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ is natively supported by the gem.
|
|
21
21
|
* [Connection settings](#connection-settings)
|
22
22
|
* [Session token store](#session-token-store)
|
23
23
|
* [Date fields and timezones](#date-fields-and-timezones)
|
24
|
-
* [ActiveRecord-like ORM (fmrest-spyke)](#activerecord-like-orm
|
24
|
+
* [ActiveRecord-like ORM (fmrest-spyke)](#activerecord-like-orm-fmrest-spyke)
|
25
25
|
* [Logging](#logging)
|
26
26
|
* [Gotchas](#gotchas)
|
27
27
|
* [API implementation completeness table](#api-implementation-completeness-table)
|
@@ -138,7 +138,7 @@ Option | Description | Format
|
|
138
138
|
`:password` | Your password | String | None
|
139
139
|
`:account_name` | Alias of `:username` | String | None
|
140
140
|
`:ssl` | SSL options to be forwarded to Faraday | Faraday SSL options | None
|
141
|
-
`:proxy` | Proxy
|
141
|
+
`:proxy` | Proxy URI e.g. `http://username:password@proxy.host:5000` | String / URI | None
|
142
142
|
`:log` | Log JSON responses to STDOUT | Boolean | `false`
|
143
143
|
`:log_level` | Which log level to log into | Values accepted by `Logger#level=` | `:debug`
|
144
144
|
`:coerce_dates` | See section on [date fields](#date-fields-and-timezones) | Boolean \| `:hybrid` \| `:full` | `false`
|
@@ -1,20 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "singleton"
|
4
|
-
|
5
3
|
module FmRest
|
6
4
|
module TokenStore
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
def
|
11
|
-
end
|
12
|
-
|
13
|
-
def load(key)
|
14
|
-
end
|
15
|
-
|
16
|
-
def store(key, value)
|
17
|
-
end
|
5
|
+
class Null < Base
|
6
|
+
def delete(key); end
|
7
|
+
def load(key); end
|
8
|
+
def store(key, value); end
|
18
9
|
end
|
19
10
|
end
|
20
11
|
end
|
data/lib/fmrest/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fmrest-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pedro Carbajal
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -104,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - "
|
107
|
+
- - ">"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: 1.3.1
|
110
110
|
requirements: []
|
111
111
|
rubygems_version: 3.2.3
|
112
112
|
signing_key:
|