dtr_to_rust 0.13.0 → 0.13.1

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 +25 -25
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 159dd48a238334709063b4cf8412eb41ac4d2365b1ba19a1e44a769db1105852
4
- data.tar.gz: ebea69c27f3325cbe6886fbe9f03e3926ef89f3c4a79b796dc78e3e1b6f54fc8
3
+ metadata.gz: 18081fb3d040cabd547d54938d0e89c7d15f05efeb8eb982cba2e3ccf13e2786
4
+ data.tar.gz: b46143adf890c84aed58694b221f1db3971a0359cba8d335df6d44e853c43e7b
5
5
  SHA512:
6
- metadata.gz: 80b1596a4070c89e64b3f52f95557cb7cd41b5d75e999b83952ee30bb35c439fe216e90742f1ac31604252453f0e051ba66a747d5cafc4974bee39f061c7a980
7
- data.tar.gz: e00c32786d303609e6846b0314557f3fefc55bf149ea52830908649135ed10da88051798b62b8f0d6ede80c7d69a1ee59ee27435898d17ae47d8deabf8358f22
6
+ metadata.gz: 4a47d9a7ad77dc57c2b07e78de968d2ad97c5a33d8297485cca43d0d2d3679c203b1aebc22955e35208b3c7dbcea20cbf7507adb9d2649fe18427f85863285fa
7
+ data.tar.gz: 0b462811751ca71539791684eea27bd2cc9eae98d5fb47295abc49f002676f5b6299c85bb64387b5f1300c024679648980eaf8a8d6ad67cb03ba05fff82276d7
@@ -12,39 +12,39 @@ module SorobanRustBackend
12
12
 
13
13
  # This module contains all the classes that handle the different types of instructions.
14
14
  module Instruction
15
- autoload :Evaluate, './lib/instruction/evaluate'
16
- autoload :Field, './lib/instruction/field'
17
- autoload :Handler, './lib/instruction/handler'
18
- autoload :Print, './lib/instruction/print'
19
- autoload :Return, './lib/instruction/return'
20
- autoload :InstantiateObject, './lib/instruction/instantiate_object'
21
- autoload :Add, './lib/instruction/add'
22
- autoload :Subtract, './lib/instruction/subtract'
23
- autoload :Multiply, './lib/instruction/multiply'
24
- autoload :Divide, './lib/instruction/divide'
25
- autoload :Assign, './lib/instruction/assign'
26
- autoload :Jump, './lib/instruction/jump'
27
- autoload :Goto, './lib/instruction/goto'
28
- autoload :ExitWithMessage, './lib/instruction/exit_with_message'
29
- autoload :And, './lib/instruction/and'
30
- autoload :Or, './lib/instruction/or'
31
- autoload :EndOfIterationCheck, './lib/instruction/end_of_iteration_check'
32
- autoload :Increment, './lib/instruction/increment'
33
- autoload :TryAssign, './lib/instruction/try_assign'
34
- autoload :Break, './lib/instruction/break'
35
- autoload :BinaryInstruction, './lib/instruction/binary_instruction'
15
+ autoload :Evaluate, 'instruction/evaluate'
16
+ autoload :Field, 'instruction/field'
17
+ autoload :Handler, 'instruction/handler'
18
+ autoload :Print, 'instruction/print'
19
+ autoload :Return, 'instruction/return'
20
+ autoload :InstantiateObject, 'instruction/instantiate_object'
21
+ autoload :Add, 'instruction/add'
22
+ autoload :Subtract, 'instruction/subtract'
23
+ autoload :Multiply, 'instruction/multiply'
24
+ autoload :Divide, 'instruction/divide'
25
+ autoload :Assign, 'instruction/assign'
26
+ autoload :Jump, 'instruction/jump'
27
+ autoload :Goto, 'instruction/goto'
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'
36
36
  end
37
37
 
38
38
  module Common
39
- autoload :TypeTranslator, './lib/common/type_translator'
40
- autoload :InputInterpreter, './lib/common/input_interpreter'
39
+ autoload :TypeTranslator, 'common/type_translator'
40
+ autoload :InputInterpreter, 'common/input_interpreter'
41
41
  end
42
42
 
43
43
  module NonTranslatables
44
- autoload :Handler, './lib/non_translatables/handler'
44
+ autoload :Handler, 'non_translatables/handler'
45
45
  end
46
46
 
47
47
  module ContractState
48
- autoload :Handler, './lib/contract_state/handler'
48
+ autoload :Handler, 'contract_state/handler'
49
49
  end
50
50
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtr_to_rust
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst