cns 0.9.2 → 0.9.4
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 +4 -4
- data/Gemfile.lock +3 -3
- data/lib/cns/bigquery.rb +42 -20
- data/lib/cns/bitcoinde.rb +78 -72
- data/lib/cns/etherscan.rb +178 -183
- data/lib/cns/greymass.rb +85 -86
- data/lib/cns/kraken.rb +82 -73
- data/lib/cns/version.rb +1 -1
- metadata +2 -2
data/lib/cns/greymass.rb
CHANGED
@@ -7,11 +7,17 @@ module Cns
|
|
7
7
|
# classe para processar transacoes do greymass
|
8
8
|
class Greymass
|
9
9
|
# @return [Apibc] API blockchains
|
10
|
-
attr_reader :api
|
11
10
|
# @return [Array<Hash>] todos os dados bigquery
|
12
|
-
attr_reader :bqd
|
13
11
|
# @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
14
|
-
attr_reader :ops
|
12
|
+
attr_reader :api, :bqd, :ops
|
13
|
+
|
14
|
+
TT = {
|
15
|
+
new: :novneost,
|
16
|
+
format: :fol,
|
17
|
+
header: "\nsequence num from to accao data valor moeda",
|
18
|
+
sork: :itx,
|
19
|
+
adjk: :itx
|
20
|
+
}
|
15
21
|
|
16
22
|
# @param [Hash] dad todos os dados bigquery
|
17
23
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
|
@@ -25,29 +31,38 @@ module Cns
|
|
25
31
|
@ops = pop.transform_keys(&:to_sym)
|
26
32
|
end
|
27
33
|
|
28
|
-
TT = {
|
29
|
-
new: :novneost,
|
30
|
-
format: :formata_ledger,
|
31
|
-
header: "\nsequence num from to accao data valor moeda",
|
32
|
-
sork: :itx,
|
33
|
-
adjk: :itx
|
34
|
-
}
|
35
|
-
|
36
34
|
# @return [String] texto carteiras & transacoes & ajuste dias
|
37
35
|
def mresumo
|
38
36
|
return unless dados.any?
|
39
37
|
|
40
38
|
puts("\naddress greymass ntx bigquery ntx")
|
41
|
-
dados.each { |
|
39
|
+
dados.each { |o| puts(foct(o)) }
|
42
40
|
mtransacoes_novas
|
43
41
|
mconfiguracao_ajuste_dias
|
44
42
|
end
|
45
43
|
|
46
44
|
private
|
47
45
|
|
46
|
+
# mosta transacoes novas
|
47
|
+
def mtransacoes_novas
|
48
|
+
ntx = send(TT[:new])
|
49
|
+
return unless ops[:v] && ntx.any?
|
50
|
+
|
51
|
+
puts(TT[:header])
|
52
|
+
ntx.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(send(TT[:format], t)) }
|
53
|
+
end
|
54
|
+
|
55
|
+
# mostra configuration text for adjusting days
|
56
|
+
def mconfiguracao_ajuste_dias
|
57
|
+
ntx = send(TT[:new])
|
58
|
+
return unless ntx.any?
|
59
|
+
|
60
|
+
puts("\nstring ajuste dias\n-h=#{ntx.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
|
61
|
+
end
|
62
|
+
|
48
63
|
# @param [Hash] hjn dados juntos bigquery & greymass
|
49
64
|
# @return [String] texto formatado duma carteira
|
50
|
-
def
|
65
|
+
def foct(hjn)
|
51
66
|
format(
|
52
67
|
'%<s1>-12.12s %<v1>14.4f %<n1>4i %<v2>14.4f %<n2>4i %<ok>-3s',
|
53
68
|
s1: hjn[:ax],
|
@@ -59,16 +74,15 @@ module Cns
|
|
59
74
|
)
|
60
75
|
end
|
61
76
|
|
62
|
-
# @param (see
|
77
|
+
# @param (see foct)
|
63
78
|
# @return [Boolean] carteira tem transacoes novas(sim=NOK, nao=OK)?
|
64
79
|
def ok?(hjn)
|
65
80
|
hjn[:bs] == hjn[:es] && hjn[:bt].count == hjn[:et].count
|
66
81
|
end
|
67
82
|
|
68
|
-
# @example (see Apibc#ledger_gm)
|
69
83
|
# @param [Hash] hlx ledger greymass
|
70
|
-
# @return [String] texto formatado
|
71
|
-
def
|
84
|
+
# @return [String] texto formatado
|
85
|
+
def fol(hlx)
|
72
86
|
format(
|
73
87
|
'%<bn>12i %<fr>-12.12s %<to>-12.12s %<ac>-10.10s %<dt>10.10s %<vl>12.4f %<sy>-6.6s',
|
74
88
|
ac: hlx[:name],
|
@@ -81,102 +95,87 @@ module Cns
|
|
81
95
|
)
|
82
96
|
end
|
83
97
|
|
84
|
-
# @return [
|
85
|
-
def mtransacoes_novas
|
86
|
-
ntx = send(TT[:new])
|
87
|
-
return unless ops[:v] && ntx.any?
|
88
|
-
|
89
|
-
puts(TT[:header])
|
90
|
-
ntx.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(send(TT[:format], t)) }
|
91
|
-
end
|
92
|
-
|
93
|
-
# @return [String] texto configuracao ajuste dias das transacoes
|
94
|
-
def mconfiguracao_ajuste_dias
|
95
|
-
ntx = send(TT[:new])
|
96
|
-
return unless ntx.any?
|
97
|
-
|
98
|
-
puts("\nstring ajuste dias\n-h=#{ntx.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
|
99
|
-
end
|
100
|
-
|
101
|
-
# @return [Array<Hash>] todos os dados greymass - saldos & transacoes
|
102
|
-
def bcd
|
103
|
-
@bcd ||= bqd[:wb].map { |obj| base_bc(obj) }
|
104
|
-
end
|
105
|
-
|
106
|
-
# @return [Array<Hash>] todos os dados juntos bigquery & greymass
|
107
|
-
def dados
|
108
|
-
@dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |g| b[:ax] == g[:ax] }) }
|
109
|
-
end
|
110
|
-
|
98
|
+
# @return [Boolean] mostra todas/novas transacoes
|
111
99
|
def show_all?
|
112
100
|
ops[:t] || false
|
113
101
|
end
|
114
102
|
|
115
|
-
|
116
|
-
|
103
|
+
# @param [String] add EOS account name
|
104
|
+
# @return [Array<BigDecimal>] lista recursos - liquido, net, spu
|
105
|
+
def peosa(add)
|
106
|
+
hac = api.account_gm(add)
|
107
|
+
htr = hac[:total_resources]
|
108
|
+
[hac[:core_liquid_balance].to_d, htr[:net_weight].to_d, htr[:cpu_weight].to_d]
|
117
109
|
end
|
118
110
|
|
119
|
-
# @
|
120
|
-
|
121
|
-
|
111
|
+
# @param add (see peosa)
|
112
|
+
# @param [Array<Hash>] ary lista transacoes
|
113
|
+
# @return [Array<Hash>] lista transacoes filtrada
|
114
|
+
def peost(add, ary)
|
115
|
+
ary.map do |t|
|
116
|
+
act = t[:action_trace][:act]
|
117
|
+
adt = act[:data]
|
118
|
+
qtd = adt[:quantity].to_s
|
119
|
+
t.merge(
|
120
|
+
name: act[:name],
|
121
|
+
from: adt[:from],
|
122
|
+
quantity: qtd.to_d,
|
123
|
+
account: act[:account],
|
124
|
+
to: adt[:to],
|
125
|
+
memo: String(adt[:memo]).gsub(/\p{C}/, ''), # remove Non-Printable Characters
|
126
|
+
moe: qtd[/[[:upper:]]+/],
|
127
|
+
itx: t[:global_action_seq],
|
128
|
+
iax: add,
|
129
|
+
block_time: Time.parse(t[:block_time])
|
130
|
+
)
|
131
|
+
end
|
122
132
|
end
|
123
133
|
|
124
|
-
# @example (see Apibc#account_gm)
|
125
134
|
# @param [Hash] wbq wallet bigquery
|
126
135
|
# @return [Hash] dados greymass - address, saldo & transacoes
|
127
|
-
def
|
136
|
+
def bsgm(wbq)
|
128
137
|
xbq = wbq[:ax]
|
129
138
|
{ax: xbq, sl: peosa(xbq).reduce(:+), tx: peost(xbq, api.ledger_gm(xbq))}
|
130
139
|
end
|
131
140
|
|
132
|
-
# @param wbq (see
|
133
|
-
# @param [Hash]
|
141
|
+
# @param wbq (see bsgm)
|
142
|
+
# @param [Hash] hgm dados greymass - address, saldo & transacoes
|
134
143
|
# @return [Hash] dados juntos bigquery & greymass
|
135
|
-
def
|
144
|
+
def bqgm(wbq, hgm)
|
136
145
|
xbq = wbq[:ax]
|
137
146
|
{
|
138
147
|
id: wbq[:id],
|
139
148
|
ax: xbq,
|
140
149
|
bs: wbq[:sl],
|
141
|
-
bt: bqd[:nt].select { |
|
142
|
-
es:
|
143
|
-
et:
|
150
|
+
bt: bqd[:nt].select { |o| o[:iax] == xbq },
|
151
|
+
es: hgm[:sl],
|
152
|
+
et: hgm[:tx]
|
144
153
|
}
|
145
154
|
end
|
146
155
|
|
147
|
-
# @return [Array<Hash>]
|
148
|
-
def
|
149
|
-
@
|
156
|
+
# @return [Array<Hash>] todos os dados greymass - saldos & transacoes
|
157
|
+
def gmd
|
158
|
+
@gmd ||= bqd[:wb].map { |o| bsgm(o) }
|
150
159
|
end
|
151
160
|
|
152
|
-
# @return [Array<
|
153
|
-
def
|
154
|
-
|
155
|
-
htr = hac[:total_resources]
|
156
|
-
[hac[:core_liquid_balance].to_d, htr[:net_weight].to_d, htr[:cpu_weight].to_d]
|
161
|
+
# @return [Array<Hash>] todos os dados juntos bigquery & greymass
|
162
|
+
def dados
|
163
|
+
@dados ||= bqd[:wb].map { |b| bqgm(b, gmd.find { |g| b[:ax] == g[:ax] }) }
|
157
164
|
end
|
158
165
|
|
159
|
-
# @
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
to: adt[:to],
|
173
|
-
memo: String(adt[:memo]).gsub(/\p{C}/, ''), # remove Non-Printable Characters
|
174
|
-
moe: qtd[/[[:upper:]]+/],
|
175
|
-
itx: omp[:global_action_seq],
|
176
|
-
iax: add,
|
177
|
-
block_time: Time.parse(omp[:block_time])
|
178
|
-
)
|
179
|
-
end
|
166
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
167
|
+
def bqidt
|
168
|
+
@bqidt ||= show_all? ? [] : bqd[:nt].map { |i| i[:itx] }
|
169
|
+
end
|
170
|
+
|
171
|
+
# @return [Array<Integer>] indices transacoes novas (greymass - bigquery)
|
172
|
+
def idt
|
173
|
+
@idt ||= gmd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
|
174
|
+
end
|
175
|
+
|
176
|
+
# @return [Array<Hash>] lista transacoes novas
|
177
|
+
def novneost
|
178
|
+
@novneost ||= gmd.map { |t| t[:tx].select { |o| idt.include?(o[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
180
179
|
end
|
181
180
|
end
|
182
181
|
end
|
data/lib/cns/kraken.rb
CHANGED
@@ -7,11 +7,9 @@ module Cns
|
|
7
7
|
# classe para processar transacoes trades/ledger do kraken
|
8
8
|
class Kraken
|
9
9
|
# @return [Apius] API kraken
|
10
|
-
attr_reader :api
|
11
10
|
# @return [Array<Hash>] todos os dados bigquery
|
12
|
-
attr_reader :bqd
|
13
11
|
# @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
14
|
-
attr_reader :ops
|
12
|
+
attr_reader :api, :bqd, :ops
|
15
13
|
|
16
14
|
# @param [Hash] dad todos os dados bigquery
|
17
15
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
|
@@ -25,15 +23,10 @@ module Cns
|
|
25
23
|
@ops = pop.transform_keys(&:to_sym)
|
26
24
|
end
|
27
25
|
|
28
|
-
# @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
|
29
|
-
def exd
|
30
|
-
@exd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
|
31
|
-
end
|
32
|
-
|
33
26
|
# @return [String] texto saldos & transacoes & ajuste dias
|
34
27
|
def mresumo
|
35
28
|
puts("\nKRAKEN\ntipo kraken bigquery")
|
36
|
-
|
29
|
+
usd[:sl].sort.each { |key, val| puts(fos(key, val)) }
|
37
30
|
mtotais
|
38
31
|
|
39
32
|
mtrades
|
@@ -43,45 +36,44 @@ module Cns
|
|
43
36
|
puts("\nstring ajuste dias dos trades\n-h=#{novcust.sort_by { |_, v| -v[:srx] }.map { |k, _v| "#{k}:0" }.join(' ')}")
|
44
37
|
end
|
45
38
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
ops[:t] || false
|
39
|
+
# @return [Hash] ledgers exchange kraken
|
40
|
+
def uskl
|
41
|
+
usd[:kl]
|
50
42
|
end
|
51
43
|
|
52
|
-
|
53
|
-
@bqkyt ||= show_all? ? [] : (bqd[:nt]&.map { |t| t[:txid].to_sym } || [])
|
54
|
-
end
|
44
|
+
private
|
55
45
|
|
56
|
-
|
57
|
-
|
58
|
-
|
46
|
+
# mosta contadores transacoes
|
47
|
+
def mtotais
|
48
|
+
vkt = usd[:kt].count
|
49
|
+
vnt = bqd[:nt].count
|
50
|
+
vkl = usd[:kl].count
|
51
|
+
vnl = bqd[:nl].count
|
59
52
|
|
60
|
-
|
61
|
-
|
62
|
-
@kyt ||= exd[:kt].keys - bqkyt
|
53
|
+
puts("TRADES #{format('%<a>20i %<b>21i %<o>3.3s', a: vkt, b: vnt, o: vkt == vnt ? 'OK' : 'NOK')}")
|
54
|
+
puts("LEDGER #{format('%<c>20i %<d>21i %<o>3.3s', c: vkl, d: vnl, o: vkl == vnl ? 'OK' : 'NOK')}")
|
63
55
|
end
|
64
56
|
|
65
|
-
#
|
66
|
-
def
|
67
|
-
|
68
|
-
end
|
57
|
+
# mosta transacoes trades
|
58
|
+
def mtrades
|
59
|
+
return unless ops[:v] && novcust.any?
|
69
60
|
|
70
|
-
|
71
|
-
|
72
|
-
@novcust ||= exd[:kt].slice(*kyt)
|
61
|
+
puts("\ntrade data hora tipo par preco volume custo")
|
62
|
+
novcust.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(fot(k, t)) }
|
73
63
|
end
|
74
64
|
|
75
|
-
#
|
76
|
-
def
|
77
|
-
|
65
|
+
# mosta transacoes ledger
|
66
|
+
def mledger
|
67
|
+
return unless ops[:v] && novcusl.any?
|
68
|
+
|
69
|
+
puts("\nledger data hora tipo moeda quantidade custo")
|
70
|
+
novcusl.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(fol(k, t)) }
|
78
71
|
end
|
79
72
|
|
80
|
-
# @example (see Apice#account_us)
|
81
73
|
# @param [String] moe codigo kraken da moeda
|
82
74
|
# @param [BigDecimal] sal saldo kraken da moeda
|
83
75
|
# @return [String] texto formatado saldos
|
84
|
-
def
|
76
|
+
def fos(moe, sal)
|
85
77
|
vbq = bqd[:sl][moe.downcase.to_sym].to_d
|
86
78
|
format(
|
87
79
|
'%<mo>-5.5s %<kr>21.9f %<bq>21.9f %<ok>3.3s',
|
@@ -92,10 +84,10 @@ module Cns
|
|
92
84
|
)
|
93
85
|
end
|
94
86
|
|
95
|
-
# @
|
96
|
-
# @param
|
87
|
+
# @param [Symbol] idx id da transacao
|
88
|
+
# @param [Hash] htn trades kraken
|
97
89
|
# @return [String] texto formatado trade
|
98
|
-
def
|
90
|
+
def fot(idx, htx)
|
99
91
|
format(
|
100
92
|
'%<ky>-6.6s %<dt>19.19s %<ty>-10.10s %<mo>-8.8s %<pr>8.2f %<vl>10.4f %<co>13.2f',
|
101
93
|
ky: idx,
|
@@ -108,10 +100,10 @@ module Cns
|
|
108
100
|
)
|
109
101
|
end
|
110
102
|
|
111
|
-
# @
|
112
|
-
# @param
|
103
|
+
# @param idx (see fot)
|
104
|
+
# @param [Hash] hln ledger kraken
|
113
105
|
# @return [String] texto formatado ledger
|
114
|
-
def
|
106
|
+
def fol(idx, hlx)
|
115
107
|
format(
|
116
108
|
'%<ky>-6.6s %<dt>19.19s %<ty>-10.10s %<mo>-4.4s %<pr>18.7f %<vl>18.7f',
|
117
109
|
ky: idx,
|
@@ -123,39 +115,19 @@ module Cns
|
|
123
115
|
)
|
124
116
|
end
|
125
117
|
|
126
|
-
# @return [
|
127
|
-
def
|
128
|
-
|
129
|
-
vnt = bqd[:nt].count
|
130
|
-
vkl = exd[:kl].count
|
131
|
-
vnl = bqd[:nl].count
|
132
|
-
|
133
|
-
puts("TRADES #{format('%<a>20i %<b>21i %<o>3.3s', a: vkt, b: vnt, o: vkt == vnt ? 'OK' : 'NOK')}")
|
134
|
-
puts("LEDGER #{format('%<c>20i %<d>21i %<o>3.3s', c: vkl, d: vnl, o: vkl == vnl ? 'OK' : 'NOK')}")
|
135
|
-
end
|
136
|
-
|
137
|
-
# @return [String] texto transacoes trades
|
138
|
-
def mtrades
|
139
|
-
return unless ops[:v] && novcust.any?
|
140
|
-
|
141
|
-
puts("\ntrade data hora tipo par preco volume custo")
|
142
|
-
novcust.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(formata_trades(k, t)) }
|
143
|
-
end
|
144
|
-
|
145
|
-
# @return [String] texto transacoes ledger
|
146
|
-
def mledger
|
147
|
-
return unless ops[:v] && novcusl.any?
|
148
|
-
|
149
|
-
puts("\nledger data hora tipo moeda quantidade custo")
|
150
|
-
novcusl.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(formata_ledger(k, t)) }
|
118
|
+
# @return [Boolean] mostra todas/novas transacoes
|
119
|
+
def show_all?
|
120
|
+
ops[:t] || false
|
151
121
|
end
|
152
122
|
|
153
|
-
#
|
123
|
+
# @param [Hash] itm recursos kraken
|
124
|
+
# @return [Hash<BigDecimal>] moedas & sados
|
154
125
|
def pusa(itm)
|
155
126
|
itm.select { |k, _| EM.include?(k) }.transform_values { |v| v.to_d }
|
156
127
|
end
|
157
128
|
|
158
|
-
#
|
129
|
+
# @param [Hash] itm transacao kraken
|
130
|
+
# @return [Hash] transaccao filtrada
|
159
131
|
def pusk(itm)
|
160
132
|
itm.map do |k, v|
|
161
133
|
t = Integer(v[:time])
|
@@ -163,14 +135,51 @@ module Cns
|
|
163
135
|
end.to_h
|
164
136
|
end
|
165
137
|
|
166
|
-
#
|
167
|
-
|
168
|
-
|
138
|
+
# @param [Hash] htx trade kraken
|
139
|
+
# @return [Hash] transaccao filtrada
|
140
|
+
def pust(htx)
|
141
|
+
pusk(htx).transform_values { |t| t.merge(pair: t[:pair].upcase, price: t[:price].to_d, vol: t[:vol].to_d, cost: t[:cost].to_d) }
|
142
|
+
end
|
143
|
+
|
144
|
+
# @param [Hash] hlx ledger kraken
|
145
|
+
# @return [Hash] transaccao filtrada
|
146
|
+
def pusl(hlx)
|
147
|
+
pusk(hlx).transform_values { |t| t.merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
|
148
|
+
end
|
149
|
+
|
150
|
+
# @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
|
151
|
+
def usd
|
152
|
+
@usd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
|
169
153
|
end
|
170
154
|
|
171
|
-
#
|
172
|
-
def
|
173
|
-
|
155
|
+
# @return [Array<Symbol>] indices trades bigquery
|
156
|
+
def bqkyt
|
157
|
+
@bqkyt ||= show_all? ? [] : bqd[:nt].map { |t| t[:txid].to_sym }
|
158
|
+
end
|
159
|
+
|
160
|
+
# @return [Array<Symbol>] indices ledger bigquery
|
161
|
+
def bqkyl
|
162
|
+
@bqkyl ||= show_all? ? [] : bqd[:nl].map { |l| l[:txid].to_sym }
|
163
|
+
end
|
164
|
+
|
165
|
+
# @return [Array<Symbol>] lista txid trades novos
|
166
|
+
def kyt
|
167
|
+
@kyt ||= usd[:kt].keys - bqkyt
|
168
|
+
end
|
169
|
+
|
170
|
+
# @return [Array<Symbol>] lista txid ledger novos
|
171
|
+
def kyl
|
172
|
+
@kyl ||= usd[:kl].keys - bqkyl
|
173
|
+
end
|
174
|
+
|
175
|
+
# @return [Hash] trades kraken novos
|
176
|
+
def novcust
|
177
|
+
@novcust ||= usd[:kt].slice(*kyt)
|
178
|
+
end
|
179
|
+
|
180
|
+
# @return [Hash] ledger kraken novos
|
181
|
+
def novcusl
|
182
|
+
@novcusl ||= usd[:kl].slice(*kyl)
|
174
183
|
end
|
175
184
|
end
|
176
185
|
end
|
data/lib/cns/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hernâni Rodrigues Vaz
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|