lhs 15.7.0 → 16.0.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/README.md +2 -2
- data/lhs.gemspec +1 -1
- data/lib/lhs/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: 85363475f6b932bc4489de41fdd883f457f906cf28b342ae2c867f1ecdad2c4c
|
|
4
|
+
data.tar.gz: 7a264c7eecd67ea68f372f83673cf3926f542ede49934a8d09c4703258f85ddd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb6b4ec461ce10728b4c23db1a72c70426cf6492c0b5d895c86e0c33c04d3263a6e45dbf8e31d25c4371cae56b4a883995452e81ce0bb12031d7ee122324573f
|
|
7
|
+
data.tar.gz: cac3e95397f9cfd5aa152d973130363526ffd78dde337369e701576614bb3d3557a0a46f2e2f4425d9582a63949ac44f80d59f04c3fe8afe691e8fecf5ce2a37
|
data/README.md
CHANGED
|
@@ -567,7 +567,7 @@ GET https://service.example.com/favorites/123
|
|
|
567
567
|
GET https://service.example.com/places/456
|
|
568
568
|
```
|
|
569
569
|
|
|
570
|
-
If automatic detection of nested records does not work, make sure your Records are stored in `app/models`! See:
|
|
570
|
+
If automatic detection of nested records does not work, make sure your Records are stored in `app/models`! See: [Insallation/Startup checklist](#installationstartup-checklist)
|
|
571
571
|
|
|
572
572
|
##### Relations / Associations
|
|
573
573
|
|
|
@@ -1877,7 +1877,7 @@ When fetching records with LHS, you can specify in advance all the linked resour
|
|
|
1877
1877
|
|
|
1878
1878
|
With `includes` or `includes_all` (to enforce fetching all remote objects for paginated endpoints), LHS ensures that all matching and explicitly linked resources are loaded and merged.
|
|
1879
1879
|
|
|
1880
|
-
Including linked resources/records is heavily influenced by [http://guides.rubyonrails.org/active_record_class_querying](http://guides.rubyonrails.org/active_record_class_querying.html#eager-loading-associations) and you should read it to understand this feature in all it's
|
|
1880
|
+
Including linked resources/records is heavily influenced by [http://guides.rubyonrails.org/active_record_class_querying](http://guides.rubyonrails.org/active_record_class_querying.html#eager-loading-associations) and you should read it to understand this feature in all it's glory.
|
|
1881
1881
|
|
|
1882
1882
|
#### Ensure the whole linked collection is included: includes_all
|
|
1883
1883
|
|
data/lhs.gemspec
CHANGED
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
|
|
23
23
|
s.add_dependency 'activemodel'
|
|
24
24
|
s.add_dependency 'activesupport', '> 4.2'
|
|
25
|
-
s.add_dependency 'lhc', '~>
|
|
25
|
+
s.add_dependency 'lhc', '~> 10.0'
|
|
26
26
|
|
|
27
27
|
s.add_development_dependency 'capybara'
|
|
28
28
|
s.add_development_dependency 'json', '>= 1.8.2'
|
data/lib/lhs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lhs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 16.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- https://github.com/local-ch/lhs/graphs/contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '10.0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
54
|
+
version: '10.0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: capybara
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|