tron.rb 1.1.8 → 1.1.9

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: 3f65afcef7296fb42344c717853afcaa8e52a1f83e12a69312f81c0a0d3294a5
4
- data.tar.gz: b01b36dc42d85509e6d66fe14f623faed1361fdbb10a4744365fcece0b0a1e92
3
+ metadata.gz: 232c93f724a0aeb89150ec237af9c4a6d504b3635aabff7c833e9b71660a8752
4
+ data.tar.gz: 4403e025c9d31a49e26da6cde92cfeb184df9626d97d76d662eb43ae3644728b
5
5
  SHA512:
6
- metadata.gz: 4814d06a4802cd9974a8b82fb51f65d9b4559a73283973daa37f56a4ee189e9c2b2dee91cb711f5120bf5e377388db6079981418153c57ff3ac3a9007044e3e8
7
- data.tar.gz: 61623d25f36496dd227025c4c415557b1853a83e4e75588b1284484a9149856fb8c4379304c32376dca0fc55cf44b8fb274f1ad692425a7dce1a41efd8a71734
6
+ metadata.gz: 8032ab96d92f191b7a3c6923104d656a5edb451a0498b57d339fc823084d3041b3da618ed106d015d60d17c99fb50d11a1b0228d8c1ee61ab80876feaf535a43
7
+ data.tar.gz: a4bdca985bb3cf4389fd045711a2f7a3bcea9f15ddc4902a3ccb4c5e1e624d50140ae2ee1b0438fb23eb95f5e9e98e39c3316b060c877d6b22a27a45cb093df4
data/lib/tron/abi/type.rb CHANGED
@@ -233,24 +233,24 @@ module Tron
233
233
  def split_tuple_types(str)
234
234
  types = []
235
235
  depth = 0
236
- current = ""
236
+ current = String.new
237
237
  str.each_char do |ch|
238
238
  case ch
239
239
  when "("
240
240
  depth += 1
241
- current += ch
241
+ current << ch
242
242
  when ")"
243
243
  depth -= 1
244
- current += ch
244
+ current << ch
245
245
  when ","
246
246
  if depth.zero?
247
247
  types << current
248
- current = ""
248
+ current = String.new
249
249
  else
250
- current += ch
250
+ current << ch
251
251
  end
252
252
  else
253
- current += ch
253
+ current << ch
254
254
  end
255
255
  end
256
256
  types << current unless current.empty?
data/lib/tron/abi.rb CHANGED
@@ -113,7 +113,7 @@ module Tron
113
113
  def self.split_function_params(params_str)
114
114
  types = []
115
115
  depth = 0
116
- current = ""
116
+ current = String.new
117
117
 
118
118
  params_str.each_char do |ch|
119
119
  case ch
@@ -126,7 +126,7 @@ module Tron
126
126
  when ","
127
127
  if depth.zero?
128
128
  types << current.strip
129
- current = ""
129
+ current = String.new
130
130
  else
131
131
  current << ch
132
132
  end
data/lib/tron/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  # lib/tron/version.rb
4
4
  module Tron
5
- VERSION = "1.1.8".freeze
5
+ VERSION = "1.1.9".freeze
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tron.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bolo Michelin