wikibase_representable 0.1.1 → 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 +4 -4
- data/README.md +35 -11
- data/Rakefile +1 -1
- data/lib/wikibase_representable/model/snak_data_value_helper.rb +0 -4
- data/lib/wikibase_representable/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6a7ec0afc5588cc6cbd018f510a7727633c1fbc72e2b4df934440ca43db1e3f
|
4
|
+
data.tar.gz: b4f0d00b21687df51d49a82d1ad2315200ac3d95c91daf2b356325207edd7c9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
##
|
6
|
-
|
7
|
-
|
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
|
-
##
|
18
|
+
## Usage
|
11
19
|
```ruby
|
12
|
-
|
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
|
-
#
|
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
|
-
##
|
23
|
-
|
24
|
-
|
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
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.2
|
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-05 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: multi_json
|