evt-schema 1.0.1.0 → 1.1.0.0

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: b28f918ca687069fb8873fd2beb3adbabf9b94d38970ce215d79e58b85d52bbc
4
- data.tar.gz: cac22a2b6d9098a5525d9ac1ccf6c0130c5c016c39703b1414981184831701d8
3
+ metadata.gz: 6c2773f718479f4665ede37f8ed53d35a399756dc99e045b11695ba4416f9531
4
+ data.tar.gz: fc3ee8209d3ece0833c73d2b2f1e15db2d99676af0a0ef06c032486d2b71b235
5
5
  SHA512:
6
- metadata.gz: 7ea3009dc43e0538e4fff15a952825553c1b1574d5782c568b9b3a88691c8bfa43db1c2c11de261627762df4a04498383e6777c25b8bcc919cace1438a3df155
7
- data.tar.gz: e78f28d4541fa257ea873691e07668d2be493af76fb6ca7cadb1f36c96e793a970d6581c2c3271bc053fe067182296ab5294b4b6d912321224407e4382f101fa
6
+ metadata.gz: 1999ed98e1b9ea2ea5995aa3cac849bdd82257a79f8dd1232788907fec8d99e1dc2536f8da45fe57211017c5f0bd049fde4e02fe7702cbe0d20a073f091c2089
7
+ data.tar.gz: 13f2dcedd0da68335719094ace97f46806144604d91fe655c1d36d896b5f1614900d77c4656c50785dd6d55159198cd0e43354e807060dea4145916cfe609d9d
@@ -59,12 +59,12 @@ module Schema
59
59
  end
60
60
 
61
61
  class Example < DataStructure::Example
62
- def import(data)
63
- data[:some_attribute] = 'some imported value'
62
+ def read(data)
63
+ data[:some_attribute] = 'some read value'
64
64
  end
65
65
 
66
- def export(data)
67
- data[:some_attribute] = 'some exported value'
66
+ def write(data)
67
+ data[:some_attribute] = 'some written value'
68
68
  end
69
69
  end
70
70
 
@@ -10,7 +10,7 @@ module Schema
10
10
  virtual :configure_dependencies do
11
11
  configure
12
12
  end
13
- virtual :import
13
+ virtual :read
14
14
  end
15
15
  end
16
16
 
@@ -20,7 +20,7 @@ module Schema
20
20
  strict ||= false
21
21
 
22
22
  new.tap do |instance|
23
- instance.import(data)
23
+ instance.read(data)
24
24
  set_attributes(instance, data, strict)
25
25
  instance.configure_dependencies
26
26
  end
@@ -9,8 +9,8 @@ module Schema
9
9
  # This is done as a countermeasure for incompatibility
10
10
  # between Virtual and an Assertions module
11
11
  # include Virtual
12
- # virtual :export
13
- define_method(:export) {|data|}
12
+ # virtual :write
13
+ define_method(:write) {|data|}
14
14
  #
15
15
 
16
16
  const_set(:Boolean, Boolean)
@@ -155,7 +155,7 @@ module Schema
155
155
  attributes[attribute.name] = public_send(attribute.name)
156
156
  end
157
157
 
158
- export(data)
158
+ write(data)
159
159
 
160
160
  data
161
161
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evt-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1.0
4
+ version: 1.1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Eventide Project
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-30 00:00:00.000000000 Z
11
+ date: 2019-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: evt-attribute