wikibase_representable 0.1.0 → 0.1.2

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: e29e8b05d572635fd5ef8182cd5528f79cbd31e0526ab8add032ed1a8d06980a
4
- data.tar.gz: a9ef980b43682ebf929e17d66890af6262d0598903b6db8cadefcfe31b7b30ca
3
+ metadata.gz: f6a7ec0afc5588cc6cbd018f510a7727633c1fbc72e2b4df934440ca43db1e3f
4
+ data.tar.gz: b4f0d00b21687df51d49a82d1ad2315200ac3d95c91daf2b356325207edd7c9d
5
5
  SHA512:
6
- metadata.gz: 4e357579f5a6a17f7d3a707faa4704e3939009205157d22d445fc7ec5624db33cfabf27cd17e404e18cd5e9f71707b771cb0a8f1014a33f5ed3823cfca3e8d47
7
- data.tar.gz: 69001ea25cea8f373d3ddfb503ee6a2f3b56404ea58b7064cb3b8d1775c9a3f4b2861cb6261d9a91fe748cb691e8c3919c9eb56038fb5e81bbe605f1dfe81cd9
6
+ metadata.gz: 057c51bc2b5895abd83884674320452d97d112a5b590f3cd6d0c713e41818b6da668cc6a9ac9e0e7c204f5b4b897dafd97c04f15451c5586d142c3315eec4281
7
+ data.tar.gz: 895b1932e18b95325d7ae03707d86db28e8fdc4b2a816a2e0d66c75b7a9352cce7bb775fd4508677e32767670eb823fd8a25fdde91395e407f9067ebcdf1febc
data/README.md CHANGED
@@ -1,25 +1,49 @@
1
1
  # wikibase_representable
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
+ ## Installation
6
+ Install the gem and add to the application's Gemfile by executing:
7
+
8
+ ```bash
9
+ bundle add wikibase_representable
10
+ ```
11
+
12
+ If bundler is not being used to manage dependencies, install the gem by executing:
13
+
14
+ ```bash
15
+ gem install wikibase_representable
8
16
  ```
9
17
 
10
- ## Example usage
18
+ ## Usage
11
19
  ```ruby
12
- # Deserialize an object from JSON
20
+ include WikibaseRepresentable::Model
21
+ include WikibaseRepresentable::Representers
22
+
23
+ # Deserialize an entity from JSON
13
24
  json = '{"type":"item","id":"Q42","labels":{"en":{"language":"en","value":"Douglas Adams"}}}'
14
25
  item = ItemRepresenter.new(Item.new).from_json(json)
15
26
  # => #<WikibaseRepresentable::Model::Item:0x0000000...
16
27
 
17
- # Serialize an object to JSON
28
+ # Retrieve entity data
29
+ item.labels('en')
30
+ # => "Douglas Adams"
31
+
32
+ # Serialize an entity to JSON
18
33
  json = ItemRepresenter.new(item).to_json
19
34
  # => "{\"type\":\"item\",\"id\":\"Q42\"...
20
35
  ```
21
36
 
22
- ## Test (run RSpec and RuboCop)
23
- ```sh
24
- bundle exec rake
25
- ```
37
+ ## Development
38
+
39
+ 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.
40
+
41
+ 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).
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mdholloway/wikibase_representable.
46
+
47
+ ## License
48
+
49
+ 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
 
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WikibaseRepresentable
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.2'
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.0
4
+ version: 0.1.2
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-05 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: multi_json
@@ -174,6 +174,7 @@ homepage: https://github.com/mdholloway/wikibase_representable
174
174
  licenses:
175
175
  - MIT
176
176
  metadata:
177
+ homepage_uri: https://github.com/mdholloway/wikibase_representable
177
178
  rubygems_mfa_required: 'true'
178
179
  rdoc_options: []
179
180
  require_paths: