Skip to content

Commit 4aa0814

Browse files
authored
Merge pull request #357 from senid231/fix-missing-constant-formatter
fix missing constant formatter
2 parents daf5fbc + af722c5 commit 4aa0814

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- [#357](https://github.com/JsonApiClient/json_api_client/pull/357) - fix missing constant formatter
6+
57
## 1.14.1
68

79
- [#353](https://github.com/JsonApiClient/json_api_client/pull/353) - fix to support deserializing resources with relationships without those related resources being included in the response (issue [#352](https://github.com/JsonApiClient/json_api_client/issues/352)).

lib/json_api_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
require 'faraday_middleware'
33
require 'json'
44
require 'addressable/uri'
5+
require 'json_api_client/formatter'
56

67
module JsonApiClient
78
autoload :Associations, 'json_api_client/associations'
89
autoload :Attributes, 'json_api_client/attributes'
910
autoload :Connection, 'json_api_client/connection'
1011
autoload :Errors, 'json_api_client/errors'
1112
autoload :ErrorCollector, 'json_api_client/error_collector'
12-
autoload :Formatter, 'json_api_client/formatter'
1313
autoload :Helpers, 'json_api_client/helpers'
1414
autoload :Implementation, 'json_api_client/implementation'
1515
autoload :IncludedData, 'json_api_client/included_data'

0 commit comments

Comments
 (0)