wikibase_representable 0.1.2 → 0.1.3

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: f6a7ec0afc5588cc6cbd018f510a7727633c1fbc72e2b4df934440ca43db1e3f
4
- data.tar.gz: b4f0d00b21687df51d49a82d1ad2315200ac3d95c91daf2b356325207edd7c9d
3
+ metadata.gz: a9e7e9f706f63881e5d8f7eb250fb378371174ef032ceb653de1d0c18db646d7
4
+ data.tar.gz: 9b14eba39f961b62bd845c080680a80a139e7ebdf8a6b090d511f405a10e86d1
5
5
  SHA512:
6
- metadata.gz: 057c51bc2b5895abd83884674320452d97d112a5b590f3cd6d0c713e41818b6da668cc6a9ac9e0e7c204f5b4b897dafd97c04f15451c5586d142c3315eec4281
7
- data.tar.gz: 895b1932e18b95325d7ae03707d86db28e8fdc4b2a816a2e0d66c75b7a9352cce7bb775fd4508677e32767670eb823fd8a25fdde91395e407f9067ebcdf1febc
6
+ metadata.gz: 4b7a916708d995839fd19fe1442c4efdd7b240824ae7ac7fa12750e50f93525f892285a819741bba0800c0269b932e3a5c883f4306942bc0abbe3bcebdf083ab
7
+ data.tar.gz: 45eeafaa918be62997ba41710b1b29de84b0250f5e5fabd4ca4e8ff6f56e6be5eb263f9b9a885631fb49442aa441175711c55ebd3953e648870a6057196538c3
data/README.md CHANGED
@@ -1,7 +1,9 @@
1
- # wikibase_representable
1
+ # WikibaseRepresentable
2
2
 
3
3
  Provides Wikibase data model classes and support (by way of [representable](https://rubygems.org/gems/representable)) for serializing and deserializing Wikibase data objects to and from JSON and fluently accessing their properties.
4
4
 
5
+ For an overview of the Wikibase data model, see [Wikibase/DataModel](https://www.mediawiki.org/wiki/Wikibase/DataModel) on mediawiki.org.
6
+
5
7
  ## Installation
6
8
  Install the gem and add to the application's Gemfile by executing:
7
9
 
@@ -43,10 +43,6 @@ module WikibaseRepresentable
43
43
  @statements.statements_by_property_id?(property_id)
44
44
  end
45
45
 
46
- def statement_by_property_id(property_id)
47
- @statements.statements_by_property_id(property_id)&.first
48
- end
49
-
50
46
  def site_link(site_id)
51
47
  @site_links.link_for_site(site_id)
52
48
  end
@@ -77,7 +73,6 @@ module WikibaseRepresentable
77
73
  alias claims statements
78
74
  alias claims_by_property_id statements_by_property_id
79
75
  alias claims_by_property_id? statements_by_property_id?
80
- alias claim_by_property_id statement_by_property_id
81
76
  end
82
77
  end
83
78
  end
@@ -43,10 +43,6 @@ module WikibaseRepresentable
43
43
  qualifiers&.snaks_by_property_id(property_id)
44
44
  end
45
45
 
46
- def qualifier_by_property_id(property_id)
47
- qualifiers_by_property_id(property_id)&.first
48
- end
49
-
50
46
  def property_id
51
47
  @main_snak.property_id
52
48
  end
@@ -12,13 +12,8 @@ module WikibaseRepresentable
12
12
  key?(property_id)
13
13
  end
14
14
 
15
- def statement_by_property_id(property_id)
16
- statements_by_property_id(property_id)&.first
17
- end
18
-
19
15
  alias claims_by_property_id statements_by_property_id
20
16
  alias claims_by_property_id? statements_by_property_id?
21
- alias claim_by_property_id statement_by_property_id
22
17
  end
23
18
  end
24
19
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WikibaseRepresentable
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wikibase_representable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Holloway
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-05 00:00:00.000000000 Z
10
+ date: 2025-01-08 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: multi_json