dtr_to_rust 0.14.4 → 0.14.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/soroban_rust_backend.rb +32 -34
  3. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e272b782fcef4516963edca1e54f7c4e6b810c052d3056e0ad4db64cb7940eb
4
- data.tar.gz: 6ea83a903fa9354a2d686e185b6a6fa10df4dde2f6817a37fd088badfae0141b
3
+ metadata.gz: 06ead4aca0be96aad916b9bcf698872601b95af15ab0af7fcdb6d0576d639a96
4
+ data.tar.gz: bca7fe27e3988993ef4a28ac17412af4e5e76fbd4d42c9f8ecfa7b56cffc3bd8
5
5
  SHA512:
6
- metadata.gz: 4eff1cc6d80e34af630f638e852decd536c80bcd20451bb71e9aaf5a45d79b2352cd086982c9d9f8cfa76a84edb729939251ef187ddf0ded673b1f0058bb544e
7
- data.tar.gz: 8098bdeb63b552c6f92b00b4a0eedd77d787d4f0ecf3f0feb3d0fe2440ab3ee849940d168086d55dffe6899aebc303a9ce95868e0e677dfbaaf1b3711575be99
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtr_to_rust
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.4
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
- date: 2024-07-17 00:00:00.000000000 Z
11
+ date: 2024-07-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Rust to DTR translator (Digicus Textual Representation).
14
14
  email:
@@ -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: []