wikibase_representable 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0172a6186013fc4a2c5584eff040ca1c0ef7f774dac7934c5539f8f646227a3
4
- data.tar.gz: 83e494bc775b64224172092b50a903d3b128f462cab6b945abdadd5b733e209b
3
+ metadata.gz: ffbe7b79015173e461400332a5a467166fc9f3ff96ead74b61b02a3b1aeafc91
4
+ data.tar.gz: d61ca51eac04caf4e9e6655a6bd6fcd0e6e4b8467e89e4dbbcd1a548c89b13b0
5
5
  SHA512:
6
- metadata.gz: 1ad5a4d89f31b22a5ad54b7370e7c41689c3fa71d657351e6bc21ab876de2e93408a0af33fefa95a23ce2de63e1e935f5328da2dd36d1316b1275a5de4ccbf3f
7
- data.tar.gz: b7b25e41ec60dca76a97e1b34695496a36c97921120c19c6b30c6b651b1865d5ea1cd63a5c7c3b40792d02996f0c63d06550b01e4d63903399296b670c2e5545
6
+ metadata.gz: 911489f59ff0b4477c16cdb5ea71fcb3cd7daf1d0f6f43bad390afdc5cb0b00ff3da0b75fd368d8ed0040e7ac31436e072f11acfe69de64df0c0b5d19573bbc3
7
+ data.tar.gz: 760c126b1289e8c01868fae1e78c6adc700e2b9875478c1c3d5f7ed668a50db9a23fe99fce0fe86e0d5c6dc29fca98f847f8948aff38ed004969008e68184a25
@@ -16,17 +16,20 @@ module WikibaseRepresentable
16
16
 
17
17
  property :type
18
18
  property :id
19
- property :labels_hash, decorator: TermHashRepresenter,
19
+ property :labels_hash, as: 'labels',
20
+ decorator: TermHashRepresenter,
20
21
  class: TermHash
21
- property :descriptions_hash, decorator: TermHashRepresenter,
22
+ property :descriptions_hash, as: 'descriptions',
23
+ decorator: TermHashRepresenter,
22
24
  class: TermHash
23
- property :alias_groups_hash, as: 'aliases_hash',
25
+ property :alias_groups_hash, as: 'aliases',
24
26
  decorator: AliasGroupHashRepresenter,
25
27
  class: AliasGroupHash
26
- property :statements_hash, as: 'claims_hash',
28
+ property :statements_hash, as: 'claims',
27
29
  decorator: StatementHashRepresenter,
28
30
  class: StatementHash
29
- property :site_links_hash, decorator: SiteLinkHashRepresenter,
31
+ property :site_links_hash, as: 'site_links',
32
+ decorator: SiteLinkHashRepresenter,
30
33
  class: SiteLinkHash
31
34
  end
32
35
  end
@@ -16,14 +16,16 @@ module WikibaseRepresentable
16
16
  property :type
17
17
  property :data_type, as: 'datatype'
18
18
  property :id
19
- property :labels_hash, decorator: TermHashRepresenter,
19
+ property :labels_hash, as: 'labels',
20
+ decorator: TermHashRepresenter,
20
21
  class: TermHash
21
- property :descriptions_hash, decorator: TermHashRepresenter,
22
+ property :descriptions_hash, as: 'descriptions',
23
+ decorator: TermHashRepresenter,
22
24
  class: TermHash
23
- property :alias_groups_hash, as: 'aliases_hash',
25
+ property :alias_groups_hash, as: 'aliases',
24
26
  decorator: AliasGroupHashRepresenter,
25
27
  class: AliasGroupHash
26
- property :statements_hash, as: 'claims_hash',
28
+ property :statements_hash, as: 'claims',
27
29
  decorator: StatementHashRepresenter,
28
30
  class: StatementHash
29
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WikibaseRepresentable
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wikibase_representable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Holloway