oat 0.4.6 → 0.4.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +29 -0
- data/gemfiles/Gemfile.as-3.0.x +1 -1
- data/gemfiles/Gemfile.as-3.1.x +1 -1
- data/gemfiles/Gemfile.as-3.2.x +1 -0
- data/lib/oat/adapters/siren.rb +1 -1
- data/lib/oat/version.rb +1 -1
- data/spec/adapters/siren_spec.rb +17 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6119b57e5a68a59050cdebb3b16d90f75bc2ce9a
|
4
|
+
data.tar.gz: a33f4b5e3e01b3554f7f04b0ce0cfadbb7477e79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 987245ceead54d06e645bd3af2b965aa0f01aa109aa2529149aeb6115f26074cc1e99759719345e5b9d8fbbcce47d233405b0e2fe96b4d07c14e8def8318e3a9
|
7
|
+
data.tar.gz: 7c096108dee29fac37563fd090b6867557d2183f7861c215e9dc9cd844472d90996f8d1f548af7d49dfc8abedf0f72e155442300e41bfd87067b7ac4f1fe26bf
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.4.6](https://github.com/ismasan/oat/tree/v0.4.6)
|
4
|
+
[Full Changelog](https://github.com/ismasan/oat/compare/v0.4.5...v0.4.6)
|
5
|
+
#### 07/02/15
|
6
|
+
- *Merged pull-request:* HAL support for an array of linked objects [\#60](https://github.com/ismasan/oat/pull/60) ([abargnesi](https://github.com/abargnesi))
|
7
|
+
|
8
|
+
- *Merged pull-request:* Fixing Nested Serializers example [\#57](https://github.com/ismasan/oat/pull/57) ([coderdave](https://github.com/coderdave))
|
9
|
+
|
10
|
+
- *Merged pull-request:* Fix spelling in README.md [\#53](https://github.com/ismasan/oat/pull/53) ([killpack](https://github.com/killpack))
|
11
|
+
|
12
|
+
- *Merged pull-request:* provide an example of using Rails responders to support requests using a Hypermedia mime type [\#52](https://github.com/ismasan/oat/pull/52) ([apsoto](https://github.com/apsoto))
|
13
|
+
|
14
|
+
- *Merged pull-request:* Stop entities/entity from duplicating entries in linked hash. [\#49](https://github.com/ismasan/oat/pull/49) ([dpdawson](https://github.com/dpdawson))
|
15
|
+
|
16
|
+
- *Merged pull-request:* Better documentation for Oat::Adapters::JsonAPI#collection [\#46](https://github.com/ismasan/oat/pull/46) ([emilesilvis](https://github.com/emilesilvis))
|
17
|
+
|
18
|
+
- *Merged pull-request:* add the required rel attribute for Siren sub-entities [\#45](https://github.com/ismasan/oat/pull/45) ([apsoto](https://github.com/apsoto))
|
19
|
+
|
20
|
+
- *Closed issue:* is lib/support/class\_attribute necessary? [\#44](https://github.com/ismasan/oat/issues/44)
|
21
|
+
|
22
|
+
- *Closed issue:* Oat, Rails Responders and hypermedia mime types [\#50](https://github.com/ismasan/oat/issues/50)
|
23
|
+
|
24
|
+
- *Closed issue:* Array serialization [\#54](https://github.com/ismasan/oat/issues/54)
|
25
|
+
|
26
|
+
- *Closed issue:* Nested serializers: undefined method [\#56](https://github.com/ismasan/oat/issues/56)
|
27
|
+
|
28
|
+
- *Closed issue:* HAL support for multiple link objects per relationship? [\#58](https://github.com/ismasan/oat/issues/58)
|
29
|
+
|
30
|
+
- *Closed issue:* Serialize to vanilla JSON using the same serializer class [\#59](https://github.com/ismasan/oat/issues/59)
|
31
|
+
|
3
32
|
## [v0.4.5](https://github.com/ismasan/oat/tree/v0.4.5)
|
4
33
|
[Full Changelog](https://github.com/ismasan/oat/compare/v0.4.4...v0.4.5)
|
5
34
|
#### 09/07/14
|
data/gemfiles/Gemfile.as-3.0.x
CHANGED
data/gemfiles/Gemfile.as-3.1.x
CHANGED
data/gemfiles/Gemfile.as-3.2.x
CHANGED
data/lib/oat/adapters/siren.rb
CHANGED
data/lib/oat/version.rb
CHANGED
data/spec/adapters/siren_spec.rb
CHANGED
@@ -121,5 +121,22 @@ describe Oat::Adapters::Siren do
|
|
121
121
|
expect(embedded_managers.size).to be 0
|
122
122
|
end
|
123
123
|
end
|
124
|
+
|
125
|
+
context 'with multiple rels specified as an array for a single link' do
|
126
|
+
let(:serializer_class) do
|
127
|
+
Class.new(Oat::Serializer) do
|
128
|
+
schema do
|
129
|
+
type 'users'
|
130
|
+
link ['describedby', 'http://rels.foo.bar.com/type'], :href => "http://foo.bar.com/meta/user"
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
it 'renders the rels as a Siren-compliant non-nested, flat array' do
|
136
|
+
expect(hash.fetch(:links)).to include(
|
137
|
+
{:rel=>["describedby", "http://rels.foo.bar.com/type"], :href=>"http://foo.bar.com/meta/user"}
|
138
|
+
)
|
139
|
+
end
|
140
|
+
end
|
124
141
|
end
|
125
142
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ismael Celis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -141,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
141
|
version: '0'
|
142
142
|
requirements: []
|
143
143
|
rubyforge_project:
|
144
|
-
rubygems_version: 2.
|
144
|
+
rubygems_version: 2.4.5
|
145
145
|
signing_key:
|
146
146
|
specification_version: 4
|
147
147
|
summary: Adapters-based serializers with Hypermedia support
|