wikibase_representable 0.1.2 → 0.1.4

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: defaee30f588f7bee23fa3fd57e8ddcceb8537abe62b1807ba35fdcbf72d435c
4
+ data.tar.gz: 7acba0104544f026a193f005a26921ae905c5d7b351ecc02b88390caa7d28e47
5
5
  SHA512:
6
- metadata.gz: 057c51bc2b5895abd83884674320452d97d112a5b590f3cd6d0c713e41818b6da668cc6a9ac9e0e7c204f5b4b897dafd97c04f15451c5586d142c3315eec4281
7
- data.tar.gz: 895b1932e18b95325d7ae03707d86db28e8fdc4b2a816a2e0d66c75b7a9352cce7bb775fd4508677e32767670eb823fd8a25fdde91395e407f9067ebcdf1febc
6
+ metadata.gz: e45f476441a66d51c1f16090e71e6b2cfd34e4e5edde277166dd22f9665743efa3551fb81e9128becdc3240212c92fcb11717e4f44d34a03847e2f0c6b006201
7
+ data.tar.gz: fad708bfd76fa145e89c1b1dc841e397e73891695e566489d0c92087652591956ce24b004930814c6155ae130d433fe7f4af3499ff39e86accb6b1b9f514063b
data/.rubocop.yml CHANGED
@@ -1,18 +1,5 @@
1
- require:
2
- - rubocop-rake
3
- - rubocop-rspec
1
+ inherit_from: .rubocop_todo.yml
4
2
 
5
- AllCops:
6
- NewCops: enable
7
- Gemspec/DevelopmentDependencies:
8
- EnforcedStyle: gemspec
9
- Metrics/AbcSize:
10
- Enabled: false
11
- Metrics/CyclomaticComplexity:
12
- Enabled: false
13
- Metrics/ParameterLists:
14
- Enabled: false
15
- RSpec/MultipleMemoizedHelpers:
16
- Enabled: false
17
- Style/SafeNavigationChainLength:
18
- Enabled: false
3
+ inherit_gem:
4
+ upennlib-rubocop: upennlib_rubocop_defaults.yml
5
+
data/.rubocop_todo.yml ADDED
File without changes
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Michael Holloway
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
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
 
@@ -11,10 +11,12 @@ module WikibaseRepresentable
11
11
  @value = value
12
12
  end
13
13
 
14
+ def state
15
+ [@type, @value]
16
+ end
17
+
14
18
  def ==(other)
15
- other.is_a?(self.class) &&
16
- other.type == type &&
17
- other.value == value
19
+ other.class == self.class && other.state == state
18
20
  end
19
21
 
20
22
  def eql?(other)
@@ -12,11 +12,12 @@ module WikibaseRepresentable
12
12
  @entity_type = entity_type
13
13
  end
14
14
 
15
+ def state
16
+ [@id, @numeric_id, @entity_type]
17
+ end
18
+
15
19
  def ==(other)
16
- other.is_a?(self.class) &&
17
- id == other.id &&
18
- entity_type == other.entity_type &&
19
- numeric_id == other.numeric_id
20
+ other.class == self.class && other.state == state
20
21
  end
21
22
 
22
23
  def eql?(other)
@@ -24,12 +24,12 @@ module WikibaseRepresentable
24
24
  @value.numeric_id
25
25
  end
26
26
 
27
+ def state
28
+ [@type, @value]
29
+ end
30
+
27
31
  def ==(other)
28
- other.is_a?(self.class) &&
29
- type == other.type &&
30
- id == other.id &&
31
- entity_type == other.entity_type &&
32
- numeric_id == other.numeric_id
32
+ other.class == self.class && other.state == state
33
33
  end
34
34
 
35
35
  def eql?(other)
@@ -15,26 +15,24 @@ module WikibaseRepresentable
15
15
 
16
16
  attr_accessor :type, :id, :labels, :descriptions, :alias_groups, :site_links, :statements
17
17
 
18
- def initialize(type: ENTITY_TYPE,
19
- id: nil,
20
- labels: TermList.new,
21
- descriptions: TermList.new,
22
- alias_groups: AliasGroupList.new,
23
- site_links: SiteLinkList.new,
24
- statements: StatementList.new)
25
- @type = type
26
- @id = id
27
- @labels = labels
28
- @descriptions = descriptions
29
- @alias_groups = alias_groups
30
- @site_links = site_links
31
- @statements = statements
18
+ def initialize(**kwargs)
19
+ @type = ENTITY_TYPE
20
+ @id = kwargs[:id]
21
+ @labels = kwargs[:labels] || TermList.new
22
+ @descriptions = kwargs[:descriptions] || TermList.new
23
+ @alias_groups = kwargs[:alias_groups] || AliasGroupList.new
24
+ @site_links = kwargs[:site_links] || SiteLinkList.new
25
+ @statements = kwargs[:statements] || StatementList.new
32
26
  end
33
27
 
34
28
  def label(language_code)
35
29
  @labels.value_for_language(language_code)
36
30
  end
37
31
 
32
+ def aliases_for_language(language_code)
33
+ @alias_groups.aliases_for_language(language_code)
34
+ end
35
+
38
36
  def statements_by_property_id(property_id)
39
37
  @statements.statements_by_property_id(property_id)
40
38
  end
@@ -43,10 +41,6 @@ module WikibaseRepresentable
43
41
  @statements.statements_by_property_id?(property_id)
44
42
  end
45
43
 
46
- def statement_by_property_id(property_id)
47
- @statements.statements_by_property_id(property_id)&.first
48
- end
49
-
50
44
  def site_link(site_id)
51
45
  @site_links.link_for_site(site_id)
52
46
  end
@@ -59,15 +53,12 @@ module WikibaseRepresentable
59
53
  @labels.empty? && @descriptions.empty? && @alias_groups.empty? && @site_links.empty? && @statements.empty?
60
54
  end
61
55
 
56
+ def state
57
+ [@type, @id, @labels, @descriptions, @alias_groups, @site_links, @statements]
58
+ end
59
+
62
60
  def ==(other)
63
- other.is_a?(self.class) &&
64
- @type == other.type &&
65
- @id == other.id &&
66
- @labels == other.labels &&
67
- @descriptions == other.descriptions &&
68
- @alias_groups == other.alias_groups &&
69
- @site_links == other.site_links &&
70
- @statements == other.statements
61
+ other.class == self.class && other.state == state
71
62
  end
72
63
 
73
64
  def eql?(other)
@@ -77,7 +68,6 @@ module WikibaseRepresentable
77
68
  alias claims statements
78
69
  alias claims_by_property_id statements_by_property_id
79
70
  alias claims_by_property_id? statements_by_property_id?
80
- alias claim_by_property_id statement_by_property_id
81
71
  end
82
72
  end
83
73
  end
@@ -13,20 +13,14 @@ module WikibaseRepresentable
13
13
 
14
14
  attr_accessor :type, :id, :data_type, :labels, :descriptions, :alias_groups, :statements
15
15
 
16
- def initialize(type: ENTITY_TYPE,
17
- id: nil,
18
- data_type: nil,
19
- labels: TermList.new,
20
- descriptions: TermList.new,
21
- alias_groups: AliasGroupList.new,
22
- statements: StatementList.new)
23
- @type = type
24
- @data_type = data_type
25
- @id = id
26
- @labels = labels
27
- @descriptions = descriptions
28
- @alias_groups = alias_groups
29
- @statements = statements
16
+ def initialize(**kwargs)
17
+ @type = ENTITY_TYPE
18
+ @data_type = kwargs[:data_type]
19
+ @id = kwargs[:id]
20
+ @labels = kwargs[:labels] || TermList.new
21
+ @descriptions = kwargs[:descriptions] || TermList.new
22
+ @alias_groups = kwargs[:alias_groups] || AliasGroupList.new
23
+ @statements = kwargs[:statements] || StatementList.new
30
24
  end
31
25
 
32
26
  def label(language_code, value)
@@ -45,15 +39,12 @@ module WikibaseRepresentable
45
39
  @labels.empty? && @descriptions.empty? && @alias_groups.empty? && @statements.empty?
46
40
  end
47
41
 
42
+ def state
43
+ [@type, @id, @data_type, @labels, @descriptions, @alias_groups, @statements]
44
+ end
45
+
48
46
  def ==(other)
49
- other.is_a?(self.class) &&
50
- @type == other.type &&
51
- @id == other.id &&
52
- @data_type == other.data_type &&
53
- @labels == other.labels &&
54
- @descriptions == other.descriptions &&
55
- @alias_groups == other.alias_groups &&
56
- @statements == other.statements
47
+ other.class == self.class && other.state == state
57
48
  end
58
49
 
59
50
  def eql?(other)
@@ -18,12 +18,12 @@ module WikibaseRepresentable
18
18
  @hash = hash
19
19
  end
20
20
 
21
+ def state
22
+ [@type, @property_id, @data_value, @hash]
23
+ end
24
+
21
25
  def ==(other)
22
- other.is_a?(self.class) &&
23
- other.type == type &&
24
- other.property_id == property_id &&
25
- other.data_value == data_value &&
26
- other.hash == hash
26
+ other.class == self.class && other.state == state
27
27
  end
28
28
 
29
29
  def eql?(other)
@@ -12,12 +12,12 @@ module WikibaseRepresentable
12
12
  @badges = badges
13
13
  end
14
14
 
15
+ def state
16
+ [@site_id, @page_name, @badges]
17
+ end
18
+
15
19
  def ==(other)
16
- other.is_a?(self.class) &&
17
- @site_id == other.site_id &&
18
- @page_name == other.page_name &&
19
- @badges.size == other.badges.size &&
20
- @badges & other.badges == @badges
20
+ other.class == self.class && other.state == state
21
21
  end
22
22
 
23
23
  def eql?(other)
@@ -17,22 +17,13 @@ module WikibaseRepresentable
17
17
 
18
18
  attr_accessor :main_snak, :type, :qualifiers, :qualifiers_order, :guid, :rank
19
19
 
20
- def initialize(main_snak: nil,
21
- type: TYPE,
22
- qualifiers: nil,
23
- qualifiers_order: nil,
24
- guid: nil,
25
- rank: RANK_NORMAL)
26
- @main_snak = main_snak
27
- @type = type
28
- @qualifiers = qualifiers
29
- @qualifiers_order = qualifiers_order
30
- @guid = guid
31
- @rank = rank
32
- end
33
-
34
- def qualifiers?
35
- !!qualifiers && !qualifiers.empty?
20
+ def initialize(**kwargs)
21
+ @main_snak = kwargs[:main_snak]
22
+ @type = kwargs[:type] || TYPE
23
+ @qualifiers = kwargs[:qualifiers]
24
+ @qualifiers_order = kwargs[:qualifiers_order]
25
+ @guid = kwargs[:guid]
26
+ @rank = kwargs[:rank] || RANK_NORMAL
36
27
  end
37
28
 
38
29
  def qualifiers_by_property_id?(property_id)
@@ -43,22 +34,16 @@ module WikibaseRepresentable
43
34
  qualifiers&.snaks_by_property_id(property_id)
44
35
  end
45
36
 
46
- def qualifier_by_property_id(property_id)
47
- qualifiers_by_property_id(property_id)&.first
48
- end
49
-
50
37
  def property_id
51
38
  @main_snak.property_id
52
39
  end
53
40
 
41
+ def state
42
+ [@main_snak, @type, @qualifiers, @qualifiers_order, @guid, @rank]
43
+ end
44
+
54
45
  def ==(other)
55
- other.is_a?(self.class) &&
56
- other.type == @type &&
57
- other.main_snak == @main_snak &&
58
- other.qualifiers == @qualifiers &&
59
- other.qualifiers_order == @qualifiers_order &&
60
- other.rank == @rank &&
61
- other.guid == @guid
46
+ other.class == self.class && other.state == state
62
47
  end
63
48
 
64
49
  def eql?(other)
@@ -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
@@ -11,10 +11,12 @@ module WikibaseRepresentable
11
11
  @value = value
12
12
  end
13
13
 
14
+ def state
15
+ [@language_code, @value]
16
+ end
17
+
14
18
  def ==(other)
15
- other.is_a?(self.class) &&
16
- @language_code == other.language_code &&
17
- @value == other.value
19
+ other.class == self.class && other.state == state
18
20
  end
19
21
 
20
22
  def eql?(other)
@@ -6,23 +6,21 @@ module WikibaseRepresentable
6
6
  class Time
7
7
  attr_accessor :time, :time_zone, :before, :after, :precision, :calendar_model
8
8
 
9
- def initialize(time: nil, time_zone: nil, before: nil, after: nil, precision: nil, calendar_model: nil)
10
- @time = time
11
- @time_zone = time_zone
12
- @before = before
13
- @after = after
14
- @precision = precision
15
- @calendar_model = calendar_model
9
+ def initialize(**kwargs)
10
+ @time = kwargs[:time]
11
+ @time_zone = kwargs[:time_zone]
12
+ @before = kwargs[:before]
13
+ @after = kwargs[:after]
14
+ @precision = kwargs[:precision]
15
+ @calendar_model = kwargs[:calendar_model]
16
+ end
17
+
18
+ def state
19
+ [@time, @time_zone, @before, @after, @precision, @calendar_model]
16
20
  end
17
21
 
18
22
  def ==(other)
19
- other.is_a?(self.class) &&
20
- time == other.time &&
21
- time_zone == other.time_zone &&
22
- before == other.before &&
23
- after == other.after &&
24
- precision == other.precision &&
25
- calendar_model == other.calendar_model
23
+ other.class == self.class && other.state == state
26
24
  end
27
25
 
28
26
  def eql?(other)
@@ -36,15 +36,12 @@ module WikibaseRepresentable
36
36
  @value.calendar_model
37
37
  end
38
38
 
39
+ def state
40
+ [@type, @value]
41
+ end
42
+
39
43
  def ==(other)
40
- other.is_a?(self.class) &&
41
- type == other.type &&
42
- time == other.time &&
43
- time_zone == other.time_zone &&
44
- before == other.before &&
45
- after == other.after &&
46
- precision == other.precision &&
47
- calendar_model == other.calendar_model
44
+ other.class == self.class && other.state == state
48
45
  end
49
46
 
50
47
  def eql?(other)
@@ -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.4'
5
5
  end
@@ -0,0 +1,85 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Tests round-trip deserialization and serialization of Wikibase entities.
4
+ # Attempts to correct for quirks in the Wikibase output format such as optional escape characters
5
+ # used by PHP and not Ruby (though this can lead to false-positive diffs where the data contains a
6
+ # backslash that looks like an escape character but isn't.).
7
+
8
+ require 'diffy'
9
+ require 'json'
10
+ require 'optparse'
11
+ require 'wikibase_representable'
12
+ require 'zlib'
13
+
14
+ dir = File.dirname __FILE__
15
+
16
+ export_file = File.expand_path '../../../DigitalScriptorium/ds-exports/json/ds-latest.json.gz', dir
17
+
18
+ OptionParser.new { |opts|
19
+ opts.banner = 'Usage: test_wikibase_representable_ds_serialization.rb [options]'
20
+
21
+ opts.on('-f', '--file=FILE', 'The file path to the Wikibase JSON export file.') do |f|
22
+ export_file = File.expand_path f, dir
23
+ end
24
+ }.parse!
25
+
26
+ lines_examined = 0
27
+ parse_errors = 0
28
+ diff_count = 0
29
+
30
+ def decorator(type)
31
+ if type == WikibaseRepresentable::Model::Item::ENTITY_TYPE
32
+ WikibaseRepresentable::Representers::ItemRepresenter
33
+ else
34
+ WikibaseRepresentable::Representers::PropertyRepresenter
35
+ end
36
+ end
37
+
38
+ def clazz(type)
39
+ if type == WikibaseRepresentable::Model::Item::ENTITY_TYPE
40
+ WikibaseRepresentable::Model::Item
41
+ else
42
+ WikibaseRepresentable::Model::Property
43
+ end
44
+ end
45
+
46
+ # File.readlines('../../hxsllc/hxs-blacklight/lib/export-prod-0328.json').each do |line|
47
+ Zlib::GzipReader.open(export_file).each_line do |line|
48
+ next if ["[\n", "]\n"].include?(line)
49
+
50
+ lines_examined += 1
51
+
52
+ line = line
53
+ .gsub(/(^\[|\]$|,\n$)/, '')
54
+ # Strip PHP-specific escape characters for diffing
55
+ # See https://stackoverflow.com/a/56834902 for discussion
56
+ .gsub(%r{\\(/|[A-Za-z0-9])}, '\1')
57
+
58
+ begin
59
+ hash = JSON.parse(line)
60
+ rescue StandardError
61
+ puts "***PARSE ERROR***\n#{line}\n\n"
62
+ parse_errors += 1
63
+ next
64
+ end
65
+
66
+ decorator = decorator(hash['type'])
67
+ clazz = clazz(hash['type'])
68
+ obj = decorator.new(clazz.new).from_json(line)
69
+ diff = Diffy::Diff.new("#{line}\n", "#{decorator.new(obj)
70
+ .to_json
71
+ # Adjust empty associative arrays to match PHP serialization
72
+ .gsub(/\{\}/, '[]')}\n")
73
+
74
+ unless diff.to_s.empty?
75
+ puts("***DIFF***\n#{diff}\n\n")
76
+ diff_count += 1
77
+ end
78
+ end
79
+
80
+ # 3 items with known diffs: Q37381, Q43197 (both due to improperly regex-stripped backslash), Q66686 (TBD)
81
+ puts "Lines examined: #{lines_examined}"
82
+ puts "Parse errors: #{parse_errors}"
83
+ puts "Diff count: #{diff_count}"
84
+
85
+ exit [diff_count + parse_errors, 1].min
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.4
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-14 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: multi_json
@@ -52,75 +52,61 @@ dependencies:
52
52
  - !ruby/object:Gem::Version
53
53
  version: '2.5'
54
54
  - !ruby/object:Gem::Dependency
55
- name: rake
55
+ name: diffy
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '13.2'
60
+ version: '3.4'
61
61
  type: :development
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '13.2'
67
+ version: '3.4'
68
68
  - !ruby/object:Gem::Dependency
69
- name: rspec
70
- requirement: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '3.13'
75
- type: :development
76
- prerelease: false
77
- version_requirements: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '3.13'
82
- - !ruby/object:Gem::Dependency
83
- name: rubocop
69
+ name: rake
84
70
  requirement: !ruby/object:Gem::Requirement
85
71
  requirements:
86
72
  - - "~>"
87
73
  - !ruby/object:Gem::Version
88
- version: '1.69'
74
+ version: '13.2'
89
75
  type: :development
90
76
  prerelease: false
91
77
  version_requirements: !ruby/object:Gem::Requirement
92
78
  requirements:
93
79
  - - "~>"
94
80
  - !ruby/object:Gem::Version
95
- version: '1.69'
81
+ version: '13.2'
96
82
  - !ruby/object:Gem::Dependency
97
- name: rubocop-rake
83
+ name: rspec
98
84
  requirement: !ruby/object:Gem::Requirement
99
85
  requirements:
100
86
  - - "~>"
101
87
  - !ruby/object:Gem::Version
102
- version: '0.6'
88
+ version: '3.13'
103
89
  type: :development
104
90
  prerelease: false
105
91
  version_requirements: !ruby/object:Gem::Requirement
106
92
  requirements:
107
93
  - - "~>"
108
94
  - !ruby/object:Gem::Version
109
- version: '0.6'
95
+ version: '3.13'
110
96
  - !ruby/object:Gem::Dependency
111
- name: rubocop-rspec
97
+ name: upennlib-rubocop
112
98
  requirement: !ruby/object:Gem::Requirement
113
99
  requirements:
114
100
  - - "~>"
115
101
  - !ruby/object:Gem::Version
116
- version: '3.3'
102
+ version: 1.2.0
117
103
  type: :development
118
104
  prerelease: false
119
105
  version_requirements: !ruby/object:Gem::Requirement
120
106
  requirements:
121
107
  - - "~>"
122
108
  - !ruby/object:Gem::Version
123
- version: '3.3'
109
+ version: 1.2.0
124
110
  description: Provides Wikibase data model classes and support for serializing and
125
111
  deserializing Wikibase entities to and from JSON.
126
112
  email:
@@ -130,6 +116,8 @@ extensions: []
130
116
  extra_rdoc_files: []
131
117
  files:
132
118
  - ".rubocop.yml"
119
+ - ".rubocop_todo.yml"
120
+ - LICENSE.txt
133
121
  - README.md
134
122
  - Rakefile
135
123
  - lib/wikibase_representable.rb
@@ -170,6 +158,7 @@ files:
170
158
  - lib/wikibase_representable/representers/time_representer.rb
171
159
  - lib/wikibase_representable/representers/time_value_representer.rb
172
160
  - lib/wikibase_representable/version.rb
161
+ - scripts/test_deserialization_round_trip.rb
173
162
  homepage: https://github.com/mdholloway/wikibase_representable
174
163
  licenses:
175
164
  - MIT