dtr_core 0.5.1 → 0.5.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: 567cfc936d95095b577f5f92b9e07328c3b3225186d40bb3d04bc0e2d678eaa6
4
- data.tar.gz: f01122597f91ecc1db9c108a2effa96ac734a318dde48f14e54441bf10e31ced
3
+ metadata.gz: 87ca88cd269d52251ab32a7923f88e8f5735d68880d0bdc45cfd086daf42de47
4
+ data.tar.gz: de67b7404af976d585ed6f12a76498fb3ee78bfdea6c63dc57d0690fedf715ed
5
5
  SHA512:
6
- metadata.gz: 5e05a81b1d527c88bd2e5b172b662d12a12519ce85d6aa7648a66360160c32a47bb1ab5df6176d44a2d70af69c5ea761056da3ce23b979d32212801fa39c1396
7
- data.tar.gz: ea2f450d0a1873f217797dc1021ffe62778189d3c16df20c04038d7c3c9f715728223389dedd3c6a267e0f322d1263337a31d580e25a874d914699c2afdc217e
6
+ metadata.gz: 59f317f81005ca77ca7be6a96cf32a198dffcdae77d902ac2574819cf86e3119598384b9d3de870db3a59050d5a7818161db7f8cf062fef0a2e5f03d9c866a97
7
+ data.tar.gz: d5809868886625e7c8b7884fd6f6b0e4a29ee7106e1e54ef56291ee27be307cd4126e29aac2dfc2c74aa0c0a946d92c9e1d3b0826d371c99c15c3acc3771c423
@@ -55,12 +55,12 @@ module DTRCore
55
55
  category: INSTRUCTION_CATEGORY_METHODS },
56
56
  # object operations
57
57
  { name: 'field', description: 'Reference an object field.', category: INSTRUCTION_CATEGORY_OBJECTS },
58
- { name: 'initialize_udt', description: 'Instantiate UDT object.', category: INSTRUCTION_CATEGORY_OBJECTS }
58
+ { name: 'initialize_udt', description: 'Instantiate UDT object.', category: INSTRUCTION_CATEGORY_OBJECTS },
59
59
  # conditional operations
60
- { name: 'conditional_jump', description: 'Jump to a label if first input is true.', category: INSTRUCTION_CATEGORY_CONDITIONAL }
61
- { name: 'unconditional_jump', description: 'Jump to a no matter what.', category: INSTRUCTION_CATEGORY_CONDITIONAL }
60
+ { name: 'conditional_jump', description: 'Jump to a label if first input is true.', category: INSTRUCTION_CATEGORY_CONDITIONAL },
61
+ { name: 'unconditional_jump', description: 'Jump to a no matter what.', category: INSTRUCTION_CATEGORY_CONDITIONAL },
62
62
  # logical operations
63
- { name: 'and', description: 'Logical AND.', category: INSTRUCTION_CATEGORY_LOGICAL }
63
+ { name: 'and', description: 'Logical AND.', category: INSTRUCTION_CATEGORY_LOGICAL },
64
64
  { name: 'or', description: 'Logical OR.', category: INSTRUCTION_CATEGORY_LOGICAL }
65
65
  ].freeze
66
66
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtr_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst