wikibase_representable 0.1.1 → 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: ccd5493d0f929bb58a2e3aba367d95f8c0c6e5a595f8b8bb20a6e03867a3205f
4
- data.tar.gz: d971a0a5ec30ff38fe8e8390bf6511515b7b44129558ea944efd9006ea65edc4
3
+ metadata.gz: a9e7e9f706f63881e5d8f7eb250fb378371174ef032ceb653de1d0c18db646d7
4
+ data.tar.gz: 9b14eba39f961b62bd845c080680a80a139e7ebdf8a6b090d511f405a10e86d1
5
5
  SHA512:
6
- metadata.gz: 25a9cfb3201769026b95316fb51a620b9dc3a503f8e7684f941428503a0951d0bacb9a4f21a26ddfa0b8804f761718bdd2229b575a706d296c79f54b8d81e0b5
7
- data.tar.gz: 6c1c3e3b81a13a6e89407db5d06f086b93e30dcd78a2ac3d769b283d4bbc1c184f4766fcfafd4585c6c745809ef3b4c3c094ca783dacba9f07c1a3ff577d5189
6
+ metadata.gz: 4b7a916708d995839fd19fe1442c4efdd7b240824ae7ac7fa12750e50f93525f892285a819741bba0800c0269b932e3a5c883f4306942bc0abbe3bcebdf083ab
7
+ data.tar.gz: 45eeafaa918be62997ba41710b1b29de84b0250f5e5fabd4ca4e8ff6f56e6be5eb263f9b9a885631fb49442aa441175711c55ebd3953e648870a6057196538c3
data/README.md CHANGED
@@ -1,25 +1,51 @@
1
- # wikibase_representable
1
+ # WikibaseRepresentable
2
2
 
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.
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
- ## Install
6
- ```sh
7
- bundle install
5
+ For an overview of the Wikibase data model, see [Wikibase/DataModel](https://www.mediawiki.org/wiki/Wikibase/DataModel) on mediawiki.org.
6
+
7
+ ## Installation
8
+ Install the gem and add to the application's Gemfile by executing:
9
+
10
+ ```bash
11
+ bundle add wikibase_representable
8
12
  ```
9
13
 
10
- ## Example usage
14
+ If bundler is not being used to manage dependencies, install the gem by executing:
15
+
16
+ ```bash
17
+ gem install wikibase_representable
18
+ ```
19
+
20
+ ## Usage
11
21
  ```ruby
12
- # Deserialize an object from JSON
22
+ include WikibaseRepresentable::Model
23
+ include WikibaseRepresentable::Representers
24
+
25
+ # Deserialize an entity from JSON
13
26
  json = '{"type":"item","id":"Q42","labels":{"en":{"language":"en","value":"Douglas Adams"}}}'
14
27
  item = ItemRepresenter.new(Item.new).from_json(json)
15
28
  # => #<WikibaseRepresentable::Model::Item:0x0000000...
16
29
 
17
- # Serialize an object to JSON
30
+ # Retrieve entity data
31
+ item.labels('en')
32
+ # => "Douglas Adams"
33
+
34
+ # Serialize an entity to JSON
18
35
  json = ItemRepresenter.new(item).to_json
19
36
  # => "{\"type\":\"item\",\"id\":\"Q42\"...
20
37
  ```
21
38
 
22
- ## Test (run RSpec and RuboCop)
23
- ```sh
24
- bundle exec rake
25
- ```
39
+ ## Development
40
+
41
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
42
+
43
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
44
+
45
+ ## Contributing
46
+
47
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mdholloway/wikibase_representable.
48
+
49
+ ## License
50
+
51
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'rake'
3
+ require 'bundler/gem_tasks'
4
4
  require 'rspec/core/rake_task'
5
5
  require 'rubocop/rake_task'
6
6
 
@@ -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
@@ -8,10 +8,6 @@ module WikibaseRepresentable
8
8
  main_snak.data_value.is_a?(type)
9
9
  end
10
10
 
11
- def data_value
12
- data_value.value
13
- end
14
-
15
11
  def entity_id_value
16
12
  data_value&.value&.id
17
13
  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.1'
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.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-04 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