fmrest-core 0.23.1 → 0.24.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4204d06743939015713907f35c283ff99decd257a0aaee50593ed3a660b87d9
4
- data.tar.gz: ca4a4c30b8a06d0f3eb20601d9003328d2c63e651f9acf35c03838ba690fddfc
3
+ metadata.gz: c2e275ad6723ab4c7911f44f097abeb62fdfee989ad29cd6deafbd3d611973fd
4
+ data.tar.gz: ed89ac5c8a1f249c466ba53f9c59cb9cee49afbcc8a9b2669fb5dfa4142aec99
5
5
  SHA512:
6
- metadata.gz: 58817b269adc26fa4c74f180ac4b1b8de5578bb041979bf694fa2b977a96a2830368c21617b1e82722b266f8c6829772c94332afbc527680d3e6146ebec0786c
7
- data.tar.gz: 3306e169f3aad1b6c32291cc9541b354f8316baa7d08abbd3ac31fe453d8051abd0352a065a7d1b4fd9857b08f9d7bd106725ebfab5807492bad305ca437328c
6
+ metadata.gz: 9d6c7f1c4817ecdb5737b3831bb963c67a788d03f749754ead7bcbc11c61c49499da4d00049a542af2a008a517fe28a3f9326c0d6c60c3e4676dc765ae8f3687
7
+ data.tar.gz: 822497034360ee73b27fe4d47bf6a178eaf2393f370b569bf751556a04f526c11375ffb3e36446c8f7e897ea0d77f897b4bafacc6aa19dcf8ea8e79d83be0c46
data/README.md CHANGED
@@ -469,6 +469,36 @@ class method. Also note that this will only catch exceptions raised during an
469
469
  API call to the Data API server (in other words, only on actions that perform
470
470
  an HTTP request).
471
471
 
472
+ ### Optional `modId`
473
+
474
+ The Data API provides an optional `modId` value that gets set on a record every
475
+ time you fetch or update it. This value then gets included in the API request
476
+ when you save the record, and FileMaker compares it against the current value,
477
+ preventing the update in case of a mismatch.
478
+
479
+ This safety feature is enabled by default in `fmrest-spyke` models, but you can
480
+ disable it using the inheritable `ignore_mod_id` flag on your model classes or
481
+ instances. E.g.
482
+
483
+ ```ruby
484
+ class Bee < FmRest::Layout
485
+ # This disables modId for all instances and subclasses
486
+ self.ignore_mod_id = true
487
+ end
488
+
489
+ # Or set it on instances:
490
+ bee = Bee.new
491
+ bee.ignore_mod_id # => true (set in class)
492
+ bee.ignore_mod_id = false # (affects only this instance)
493
+ ```
494
+
495
+ You can also set it directly on `FmRest::Layout` if you want to disable it for
496
+ your entire app:
497
+
498
+ ```ruby
499
+ FmRest::Layout.ignore_mod_id = true
500
+ ```
501
+
472
502
  ## Logging
473
503
 
474
504
  If using `fmrest-spyke` with Rails then pretty log output will be set up for
@@ -10,15 +10,15 @@ module FmRest
10
10
  end
11
11
 
12
12
  def load(key)
13
- raise NotImplementedError
13
+ raise NoMethodError
14
14
  end
15
15
 
16
16
  def store(key, value)
17
- raise NotImplementedError
17
+ raise NoMethodError
18
18
  end
19
19
 
20
20
  def delete(key)
21
- raise NotImplementedError
21
+ raise NoMethodError
22
22
  end
23
23
  end
24
24
  end
@@ -30,7 +30,7 @@ module FmRest
30
30
  end
31
31
 
32
32
  def token_store_option
33
- raise NotImplementedError
33
+ raise NoMethodError
34
34
  end
35
35
  end
36
36
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FmRest
4
- VERSION = "0.23.1"
4
+ VERSION = "0.24.0.rc1"
5
5
  end
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.23.1
4
+ version: 0.24.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: 2022-07-14 00:00:00.000000000 Z
11
+ date: 2022-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -97,9 +97,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
97
97
  version: '0'
98
98
  required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ">="
100
+ - - ">"
101
101
  - !ruby/object:Gem::Version
102
- version: '0'
102
+ version: 1.3.1
103
103
  requirements: []
104
104
  rubygems_version: 3.3.3
105
105
  signing_key: