dtr_to_rust 0.14.5 → 0.14.6

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/soroban_rust_backend.rb +32 -34
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 022316c353e8a2563e3392ed13c84b2189655aa085f0596c0577f228714ad0bc
4
- data.tar.gz: a11fe2942e80e3c13bcbc71d23ec2d11434247cb838e98f90f63ecfbc11148ab
3
+ metadata.gz: 06ead4aca0be96aad916b9bcf698872601b95af15ab0af7fcdb6d0576d639a96
4
+ data.tar.gz: bca7fe27e3988993ef4a28ac17412af4e5e76fbd4d42c9f8ecfa7b56cffc3bd8
5
5
  SHA512:
6
- metadata.gz: 58798c1e9497604dc800af6d603808259807aab1dc81be8e63c8348beb1603de4ff4253f2b63d45c0c0eb03b28c32b185836a4744f4814bca5499522b9855143
7
- data.tar.gz: 35368a7f48e8590fdff98c9ccc4e285be3c7ea638a118c57d4e69bcbb7597cb5d2097286a7d0c30d9aae27c1cbf04b6a80d1ec9825b3df47b7cd8bc401e51b57
6
+ metadata.gz: a6ea0dd23bb5c70d074d8b15a5c9b5c6aa00145fa5ccec8fe3d3182efd14aa843735b9a5e13286c4544ac1679e8f31ca32afacaba477d4df2be1ff3062f63e92
7
+ data.tar.gz: fbbfde7d90119186ae17a50be67fcc1d5f86c50b0286c60188a99d7cd4a10487223fb804ed7aa8154debf115c4982e19acad89b8a137ef94c26a6e2a36f5549a
@@ -2,52 +2,50 @@ require 'dtr_core'
2
2
 
3
3
  # This is the main module for the DTR to Rust gem.
4
4
  module SorobanRustBackend
5
- autoload :LCPBT_Forrest, './lib/lcpbt_forrest'
6
- autoload :LeftChildPreferentialBinaryTree, './lib/left_child_preferential_binary_tree'
7
- autoload :Silviculturist, './lib/silviculturist'
8
- autoload :CodeGenerator, './lib/code_generator'
9
- autoload :Condenser, './lib/condenser'
10
- autoload :InstructionHandler, './lib/instruction_handler'
11
- autoload :UserDefinedTypesHandler, './lib/user_defined_types_handler'
12
- autoload :FunctionHandler, './lib/function_handler'
13
- autoload :ContractHandler, './lib/contract_handler'
5
+ autoload :LCPBT_Forrest, 'lcpbt_forrest'
6
+ autoload :LeftChildPreferentialBinaryTree, 'left_child_preferential_binary_tree'
7
+ autoload :Silviculturist, 'silviculturist'
8
+ autoload :CodeGenerator, 'code_generator'
9
+ autoload :InstructionHandler, 'instruction_handler'
10
+ autoload :UserDefinedTypesHandler, 'user_defined_types_handler'
11
+ autoload :FunctionHandler, 'function_handler'
12
+ autoload :ContractHandler, 'contract_handler'
14
13
 
15
14
  # This module contains all the classes that handle the different types of instructions.
16
15
  module Instruction
17
- autoload :Evaluate, './lib/instruction/evaluate'
18
- autoload :Field, './lib/instruction/field'
19
- autoload :Handler, './lib/instruction/handler'
20
- autoload :Print, './lib/instruction/print'
21
- autoload :Return, './lib/instruction/return'
22
- autoload :InstantiateObject, './lib/instruction/instantiate_object'
23
- autoload :Add, './lib/instruction/add'
24
- autoload :Subtract, './lib/instruction/subtract'
25
- autoload :Multiply, './lib/instruction/multiply'
26
- autoload :Divide, './lib/instruction/divide'
27
- autoload :Assign, './lib/instruction/assign'
28
- autoload :Jump, './lib/instruction/jump'
29
- autoload :Goto, './lib/instruction/goto'
30
- autoload :ExitWithMessage, './lib/instruction/exit_with_message'
31
- autoload :And, './lib/instruction/and'
32
- autoload :Or, './lib/instruction/or'
33
- autoload :EndOfIterationCheck, './lib/instruction/end_of_iteration_check'
34
- autoload :Increment, './lib/instruction/increment'
35
- autoload :TryAssign, './lib/instruction/try_assign'
36
- autoload :Break, './lib/instruction/break'
37
- autoload :BinaryInstruction, './lib/instruction/binary_instruction'
16
+ autoload :Evaluate, 'instruction/evaluate'
17
+ autoload :Field, 'instruction/field'
18
+ autoload :Handler, 'instruction/handler'
19
+ autoload :Print, 'instruction/print'
20
+ autoload :Return, 'instruction/return'
21
+ autoload :InstantiateObject, 'instruction/instantiate_object'
22
+ autoload :Add, 'instruction/add'
23
+ autoload :Subtract, 'instruction/subtract'
24
+ autoload :Multiply, 'instruction/multiply'
25
+ autoload :Divide, 'instruction/divide'
26
+ autoload :Assign, 'instruction/assign'
27
+ autoload :Jump, 'instruction/jump'
28
+ autoload :ExitWithMessage, 'instruction/exit_with_message'
29
+ autoload :And, 'instruction/and'
30
+ autoload :Or, 'instruction/or'
31
+ autoload :EndOfIterationCheck, 'instruction/end_of_iteration_check'
32
+ autoload :Increment, 'instruction/increment'
33
+ autoload :TryAssign, 'instruction/try_assign'
34
+ autoload :Break, 'instruction/break'
35
+ autoload :BinaryInstruction, 'instruction/binary_instruction'
38
36
  end
39
37
 
40
38
  module Common
41
- autoload :TypeTranslator, './lib/common/type_translator'
42
- autoload :InputInterpreter, './lib/common/input_interpreter'
39
+ autoload :TypeTranslator, 'common/type_translator'
40
+ autoload :InputInterpreter, 'common/input_interpreter'
43
41
  end
44
42
 
45
43
  module NonTranslatables
46
- autoload :Handler, './lib/non_translatables/handler'
44
+ autoload :Handler, 'non_translatables/handler'
47
45
  end
48
46
 
49
47
  module ContractState
50
- autoload :Handler, './lib/contract_state/handler'
48
+ autoload :Handler, 'contract_state/handler'
51
49
  end
52
50
  end
53
51
 
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtr_to_rust
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.5
4
+ version: 0.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2024-07-19 00:00:00.000000000 Z
@@ -55,7 +55,7 @@ licenses:
55
55
  - MIT
56
56
  metadata:
57
57
  rubygems_mfa_required: 'true'
58
- post_install_message:
58
+ post_install_message:
59
59
  rdoc_options: []
60
60
  require_paths:
61
61
  - lib
@@ -70,8 +70,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.4.10
74
- signing_key:
73
+ rubygems_version: 3.5.13
74
+ signing_key:
75
75
  specification_version: 4
76
76
  summary: Rust to DTR translator (Digicus Textual Representation).
77
77
  test_files: []