fmrest-core 0.15.0 → 0.15.1

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: ffafc2aecdab7b90059a7cc7a9a3687fbb557178d1cba164ca98feccf675cad1
4
- data.tar.gz: df5a41ca5a2601a0bf4f9635ba42b14240aaeea10ced1b035a376fff12c0327e
3
+ metadata.gz: a07e112df06f25f9e56c59ee74ebbb34c49cfe975154dd144e37874d299d6b9b
4
+ data.tar.gz: af8d865853dae23bdd0191c75c7e1002045cbf79d53520475502699d417e1ae7
5
5
  SHA512:
6
- metadata.gz: effc1532b7060e3167c726771bf057fa9154fd61e77517628e2d4ae9da716555e6bf0aa0a3fac29a1d5a7bbd6c6f53b9db138472af64b19b685e00d3a49ff52b
7
- data.tar.gz: 3dc285d1ed51eb1a12203f90ad27655e8c24810391c0dbcb9223cbff80c0ed694c32ff86f6dd9f41f4170e399ec4aeabd79b7b4119b578fa3e1f9ef7e24ad500
6
+ metadata.gz: 2b5d34680c8001f7b04f7fbacda46472a61721d7e7484603100cf5a3097f0a14cc275011cbbda08b8e025ce0314e6ef09ba94165a8c572080ac9f1d1425b0afb
7
+ data.tar.gz: 7802ab476ce02f18c6cc5c494aa941125104a29580fc1d47abf5049b7049aa5c3518b38035147996dd63213643e5e157fb7602729cc0eb345126cd1d8db1865c
data/.yardopts CHANGED
@@ -1,4 +1,5 @@
1
1
  --markup markdown
2
2
  --plugin activesupport-concern
3
+ lib/**/*.rb
3
4
  -
4
5
  docs/*
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Changelog
2
2
 
3
+ ### 0.15.1
4
+
5
+ * Fix autoloading of `FmRest::Layout`
6
+
3
7
  ### 0.15.0
4
8
 
5
9
  * Much improved querying API (see documentation on querying), adding new
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/fmrest.svg?style=flat)](https://rubygems.org/gems/fmrest)
4
4
  ![CI](https://github.com/beezwax/fmrest-ruby/workflows/CI/badge.svg)
5
+ [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](https://rubydoc.info/github/beezwax/fmrest-ruby)
5
6
 
6
7
  A Ruby client for
7
8
  [FileMaker 18 and 19's Data API](https://help.claris.com/en/data-api-guide)
@@ -9,7 +10,7 @@ using
9
10
  [Faraday](https://github.com/lostisland/faraday) and with optional
10
11
  ActiveRecord-ish ORM features through [Spyke](https://github.com/balvig/spyke).
11
12
 
12
- fmrest-ruby only partially implements FileMaker 18's Data API.
13
+ fmrest-ruby only partially implements FileMaker 19's Data API.
13
14
  See the [implementation completeness table](#api-implementation-completeness-table)
14
15
  to see if a feature you need is natively supported by the gem.
15
16
 
@@ -552,6 +553,6 @@ See [LICENSE.txt](LICENSE.txt).
552
553
 
553
554
  ## Disclaimer
554
555
 
555
- This project is not sponsored by or otherwise affiliated with FileMaker, Inc,
556
- an Apple subsidiary. FileMaker is a trademark of FileMaker, Inc., registered in
557
- the U.S. and other countries.
556
+ This project is not sponsored by or otherwise affiliated with Claris
557
+ International Inc., an Apple Inc. subsidiary. FileMaker is a trademark of
558
+ Claris International Inc., registered in the U.S. and other countries.
data/lib/fmrest.rb CHANGED
@@ -11,6 +11,7 @@ module FmRest
11
11
  autoload :V1, "fmrest/v1"
12
12
  autoload :TokenStore, "fmrest/token_store"
13
13
  autoload :Spyke, "fmrest/spyke"
14
+ autoload :Layout, "fmrest/spyke"
14
15
 
15
16
  class << self
16
17
  attr_accessor :token_store
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FmRest
4
- VERSION = "0.15.0"
4
+ VERSION = "0.15.1"
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.15.0
4
+ version: 0.15.1
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-04-01 00:00:00.000000000 Z
11
+ date: 2021-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday