ton-client-ruby 1.0.4 → 1.0.5

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: ac10b58e0ea4a2d725c0cb7f05f6a0db3ec6a813d7aefd109bc647815d769869
4
- data.tar.gz: 48c3b21b35f643a372c33513bd298fcfe35909abca1bc39e3cdc686406ed9a1a
3
+ metadata.gz: 2394081476d7a5d3ae671572f11c5cdd9e148456f321bbbae5e7ec2900477880
4
+ data.tar.gz: c65118ba6f866a1dd115118e7934ee310483ed78558277e4d5b4daf24d6c62a4
5
5
  SHA512:
6
- metadata.gz: 9c3587f5480d473919820b51f735a6302db4ee91871292d833fc9861401d5c29fe4a9b46be8264563aead207b01dbe024db454f2de8a1d08fff6e3c19ac7c5b3
7
- data.tar.gz: ed4a201782a1ebb992a0af9a0e1e60ea395ed1bdb17f1dcbf7408ec6344384a89a436495134215c5a72c05884869a0a03eb7fead9ff00b21c4b5933d9a298662
6
+ metadata.gz: 8e30067baea67ce38ab38fa102bf81e52c9ba9fe1cf1b54499ee469ec2b2b6a491f8efa90b863ca10e6a8b1a276ea3b758c77b6aade357fdeaf274df45cfd60d
7
+ data.tar.gz: 8e4466153af19cca7b90a8e3864350aae2b73a2ca4109eb1de92064ed794808131ceef050fecd28101ab1f44312e36014195b74413db4c00f74a3f1143f1cfa2
@@ -1,4 +1,31 @@
1
1
 
2
+ module TonClient
3
+
4
+ def self.read_abi(path_to_file)
5
+ file = File.read(path_to_file)
6
+ JSON.parse(file)
7
+ end
8
+
9
+ def self.read_tvc(path_to_file)
10
+ data = File.open(path_to_file).read
11
+ # Encode the puppy
12
+ encoded = Base64.encode64(data)
13
+ # Spit it out into one continous string
14
+ encoded.gsub(/\n/, '')
15
+ end
16
+
17
+ def self.callLibraryMethodSync(method, *args)
18
+ responses = []
19
+ queue = Queue.new
20
+ method.call(*args) do |response|
21
+ responses << response
22
+ queue.push 1 if response.finished == true
23
+ end
24
+ queue.pop
25
+ yield(responses) if block_given?
26
+ end
27
+ end
28
+
2
29
  module CommonClassHelpers
3
30
 
4
31
  def class_attr_accessor(*names)
@@ -1,3 +1,3 @@
1
1
  module TonClient
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ton-client-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - nerzh