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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9e7e9f706f63881e5d8f7eb250fb378371174ef032ceb653de1d0c18db646d7
|
4
|
+
data.tar.gz: 9b14eba39f961b62bd845c080680a80a139e7ebdf8a6b090d511f405a10e86d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b7a916708d995839fd19fe1442c4efdd7b240824ae7ac7fa12750e50f93525f892285a819741bba0800c0269b932e3a5c883f4306942bc0abbe3bcebdf083ab
|
7
|
+
data.tar.gz: 45eeafaa918be62997ba41710b1b29de84b0250f5e5fabd4ca4e8ff6f56e6be5eb263f9b9a885631fb49442aa441175711c55ebd3953e648870a6057196538c3
|
data/README.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
#
|
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
|
@@ -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
|
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.
|
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-
|
10
|
+
date: 2025-01-08 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: multi_json
|