istox 0.1.60 → 0.1.60.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/istox/consumers/blockchain_hash_handler.rb +8 -9
- data/lib/istox/consumers/blockchain_status_handler.rb +13 -13
- data/lib/istox/helpers/blockchain_receipt_service.rb +49 -15
- data/lib/istox/version.rb +1 -1
- metadata +3 -11
- data/.idea/.rakeTasks +0 -7
- data/.idea/encodings.xml +0 -4
- data/.idea/inspectionProfiles/Project_Default.xml +0 -6
- data/.idea/istox-gem.iml +0 -12
- data/.idea/misc.xml +0 -7
- data/.idea/modules.xml +0 -8
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -323
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44a6639fd18a4699f0a4498213ae8e7ad2c75cf5f9984f999d91532c0e5d1f7e
|
4
|
+
data.tar.gz: 728b0381b06bebdeb07beb6166aca968c4efa2badfd3ed131e250f09374e60f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a702e0290595487237fce55ce9f6f3dfdba6c7330adcadeac748d245413abdc2cec630da82056bce308342ff293dfe3b37ad91118e99f390e2b569f13c876585
|
7
|
+
data.tar.gz: e70461a73a765046f003d9c84e91ccab30a76f059c25ce3f3a48d749aa28943a7a562cb53b648e5a9e3e652e6b1c8350ec4ede063aa8664400b523e74617c5e6
|
data/README.md
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
module Istox
|
2
2
|
class BlockchainHashHandler
|
3
3
|
class << self
|
4
|
-
def hash_generated(data, payload_target
|
5
|
-
|
6
|
-
|
4
|
+
def hash_generated(data, payload_target)
|
5
|
+
receipt = ::Istox::BlockchainReceipt.where(txid: data.uuid).first
|
6
|
+
if receipt.nil?
|
7
|
+
puts 'Transaction doesnt belong here, skipping...'
|
7
8
|
return
|
8
|
-
end
|
9
|
-
|
10
|
-
receipt = ::Istox::BlockchainReceipt.where(txid: data.uuid, txhash: nil).first
|
11
|
-
if receipt.nil?
|
12
|
-
raise 'Unable to find receipt, will retry later.'
|
13
9
|
end
|
14
|
-
|
10
|
+
|
11
|
+
# sid cannot be nil
|
12
|
+
update_receipt = ::Istox::BlockchainReceipt.where(txid: data.uuid, txhash: nil).where.not(sid: nil).first
|
13
|
+
update_receipt.update!(txhash: data.txnHash)
|
15
14
|
end
|
16
15
|
end
|
17
16
|
end
|
@@ -1,21 +1,21 @@
|
|
1
1
|
module Istox
|
2
2
|
class BlockchainStatusHandler
|
3
3
|
class << self
|
4
|
-
def txn_status_changed(transactions, payload_target
|
5
|
-
if payload_target != target
|
6
|
-
puts 'Transaction doesnt belong to this target, skipping...'
|
7
|
-
return
|
8
|
-
end
|
9
|
-
|
4
|
+
def txn_status_changed(transactions, payload_target)
|
10
5
|
# pre check all transaction does exists
|
11
|
-
transactions.each do |transaction|
|
12
|
-
receipt = ::Istox::BlockchainReceipt.where(
|
13
|
-
if receipt.nil?
|
14
|
-
|
6
|
+
found_txns = transactions.each do |transaction|
|
7
|
+
receipt = ::Istox::BlockchainReceipt.where(txid: transaction.uuid).first
|
8
|
+
if !receipt.nil?
|
9
|
+
handling_receipt = ::Istox::BlockchainReceipt.where(txhash: transaction.id).first
|
10
|
+
raise 'Unable to find receipt' if handling_receipt.blank?
|
11
|
+
return transaction
|
12
|
+
else
|
13
|
+
puts 'Transaction doesnt belong here, skipping...'
|
14
|
+
return nil
|
15
15
|
end
|
16
|
-
end
|
16
|
+
end.compact
|
17
17
|
|
18
|
-
|
18
|
+
found_txns.each do |transaction|
|
19
19
|
receipt = ::Istox::BlockchainReceipt.where(txhash: transaction.id).first
|
20
20
|
|
21
21
|
next if !(%w[failed confirmed pending].include?(transaction.status))
|
@@ -24,7 +24,7 @@ module Istox
|
|
24
24
|
resource = begin
|
25
25
|
class_eval("::#{receipt.resource_name}").find(receipt.resource_id)
|
26
26
|
rescue => e
|
27
|
-
puts
|
27
|
+
puts "Class not found, skipping..."
|
28
28
|
next
|
29
29
|
end
|
30
30
|
|
@@ -9,29 +9,63 @@ module Istox
|
|
9
9
|
@@blockchain_receipt_klass
|
10
10
|
end
|
11
11
|
|
12
|
-
def
|
13
|
-
|
12
|
+
def generate_uuid
|
13
|
+
klass = get_blockchain_receipt_class
|
14
|
+
uuid = SecureRandom.uuid
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
klass.create!({
|
17
|
+
txid: uuid
|
18
|
+
})
|
19
|
+
|
20
|
+
uuid
|
21
|
+
end
|
22
|
+
|
23
|
+
def create!(tx_message, model, sid, action)
|
24
|
+
klass = get_blockchain_receipt_class
|
20
25
|
|
21
26
|
# delete the previous existing blockchain receipts
|
22
27
|
klass.where(resource_name: model.class.name,
|
23
28
|
resource_id: model.id).destroy_all
|
24
29
|
|
25
30
|
(0...tx_message.txnCount).each do |i|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
if i == 0
|
32
|
+
blockchain_receipt = klass.find_by_txid(tx_message.uuid)
|
33
|
+
|
34
|
+
raise "Unable to find blockchain receipt with uuid #{tx_message.uuid}, have you forgetten to generate uuid?" if blockchain_receipt.blank?
|
35
|
+
|
36
|
+
blockchain_receipt.update!({
|
37
|
+
sid: sid,
|
38
|
+
txid: tx_message.uuid,
|
39
|
+
resource_name: model.class.name,
|
40
|
+
resource_id: model.id,
|
41
|
+
resource_action: action
|
42
|
+
})
|
43
|
+
else
|
44
|
+
blockchain_receipt = klass.new(
|
45
|
+
sid: sid,
|
46
|
+
txid: tx_message.uuid,
|
47
|
+
resource_name: model.class.name,
|
48
|
+
resource_id: model.id,
|
49
|
+
resource_action: action
|
50
|
+
)
|
51
|
+
blockchain_receipt.save!
|
52
|
+
end
|
34
53
|
end
|
35
54
|
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
def get_blockchain_receipt_class
|
59
|
+
raise "Have you forgetten to init blockchain receipt service?" if ::Istox::BlockchainReceiptService.get_blockchain_receipt_klass == nil
|
60
|
+
|
61
|
+
blockchain_receipt_klass = ::Istox::BlockchainReceiptService.get_blockchain_receipt_klass
|
62
|
+
klass = class_eval("::#{blockchain_receipt_klass.name}")
|
63
|
+
unless klass <= ::Istox::BlockchainReceipt
|
64
|
+
raise RuntimeError, "#{blockchain_receipt_klass.name} does not inherit istox blockchain receipt"
|
65
|
+
end
|
66
|
+
|
67
|
+
return klass
|
68
|
+
end
|
69
|
+
|
36
70
|
end
|
37
71
|
end
|
data/lib/istox/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: istox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.60
|
4
|
+
version: 0.1.60.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Siong Leng
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -256,14 +256,6 @@ extensions: []
|
|
256
256
|
extra_rdoc_files: []
|
257
257
|
files:
|
258
258
|
- ".gitignore"
|
259
|
-
- ".idea/.rakeTasks"
|
260
|
-
- ".idea/encodings.xml"
|
261
|
-
- ".idea/inspectionProfiles/Project_Default.xml"
|
262
|
-
- ".idea/istox-gem.iml"
|
263
|
-
- ".idea/misc.xml"
|
264
|
-
- ".idea/modules.xml"
|
265
|
-
- ".idea/vcs.xml"
|
266
|
-
- ".idea/workspace.xml"
|
267
259
|
- CODE_OF_CONDUCT.md
|
268
260
|
- Gemfile
|
269
261
|
- Gemfile.lock
|
@@ -308,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
308
300
|
version: '0'
|
309
301
|
requirements: []
|
310
302
|
rubyforge_project:
|
311
|
-
rubygems_version: 2.7.
|
303
|
+
rubygems_version: 2.7.7
|
312
304
|
signing_key:
|
313
305
|
specification_version: 4
|
314
306
|
summary: istox backend shared gem
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Remove rake task
|
5
|
-
2. Add existing rake tasks
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
data/.idea/encodings.xml
DELETED
data/.idea/istox-gem.iml
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$" />
|
8
|
-
<orderEntry type="inheritedJdk" />
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.6, RVM: ruby-2.5.3 [global]) [gem]" level="application" />
|
11
|
-
</component>
|
12
|
-
</module>
|
data/.idea/misc.xml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="JavaScriptSettings">
|
4
|
-
<option name="languageLevel" value="ES6" />
|
5
|
-
</component>
|
6
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.5.3 [global]" project-jdk-type="RUBY_SDK" />
|
7
|
-
</project>
|
data/.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/istox-gem.iml" filepath="$PROJECT_DIR$/.idea/istox-gem.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,323 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="34535e85-0c20-4dc0-afa1-48a1220ef350" name="Default Changelist" comment="">
|
5
|
-
<change afterPath="$PROJECT_DIR$/lib/istox/helpers/vault.rb" afterDir="false" />
|
6
|
-
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
|
7
|
-
<change beforePath="$PROJECT_DIR$/istox.gemspec" beforeDir="false" afterPath="$PROJECT_DIR$/istox.gemspec" afterDir="false" />
|
8
|
-
<change beforePath="$PROJECT_DIR$/lib/istox.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/istox.rb" afterDir="false" />
|
9
|
-
<change beforePath="$PROJECT_DIR$/lib/istox/version.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/istox/version.rb" afterDir="false" />
|
10
|
-
</list>
|
11
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
12
|
-
<option name="SHOW_DIALOG" value="false" />
|
13
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
14
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
15
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
16
|
-
</component>
|
17
|
-
<component name="FileEditorManager">
|
18
|
-
<leaf>
|
19
|
-
<file pinned="false" current-in-tab="false">
|
20
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/version.rb">
|
21
|
-
<provider selected="true" editor-type-id="text-editor">
|
22
|
-
<state relative-caret-position="45">
|
23
|
-
<caret line="3" selection-start-line="3" selection-end-line="3" />
|
24
|
-
</state>
|
25
|
-
</provider>
|
26
|
-
</entry>
|
27
|
-
</file>
|
28
|
-
<file pinned="false" current-in-tab="false">
|
29
|
-
<entry file="file://$PROJECT_DIR$/lib/istox.rb">
|
30
|
-
<provider selected="true" editor-type-id="text-editor">
|
31
|
-
<state relative-caret-position="45">
|
32
|
-
<caret line="3" selection-start-line="3" selection-end-line="3" />
|
33
|
-
</state>
|
34
|
-
</provider>
|
35
|
-
</entry>
|
36
|
-
</file>
|
37
|
-
<file pinned="false" current-in-tab="false">
|
38
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/grpc_client.rb">
|
39
|
-
<provider selected="true" editor-type-id="text-editor">
|
40
|
-
<state relative-caret-position="105">
|
41
|
-
<caret line="7" selection-start-line="7" selection-end-line="7" />
|
42
|
-
</state>
|
43
|
-
</provider>
|
44
|
-
</entry>
|
45
|
-
</file>
|
46
|
-
<file pinned="false" current-in-tab="false">
|
47
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/models/blockchain_receipt.rb">
|
48
|
-
<provider selected="true" editor-type-id="text-editor">
|
49
|
-
<state relative-caret-position="165">
|
50
|
-
<caret line="11" column="3" selection-start-line="11" selection-start-column="3" selection-end-line="11" selection-end-column="3" />
|
51
|
-
</state>
|
52
|
-
</provider>
|
53
|
-
</entry>
|
54
|
-
</file>
|
55
|
-
<file pinned="false" current-in-tab="false">
|
56
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
57
|
-
<provider selected="true" editor-type-id="text-editor">
|
58
|
-
<state relative-caret-position="90">
|
59
|
-
<caret line="6" selection-start-line="6" selection-end-line="6" />
|
60
|
-
</state>
|
61
|
-
</provider>
|
62
|
-
</entry>
|
63
|
-
</file>
|
64
|
-
<file pinned="false" current-in-tab="false">
|
65
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
66
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
67
|
-
<state split_layout="SPLIT">
|
68
|
-
<first_editor relative-caret-position="120">
|
69
|
-
<caret line="8" column="52" selection-start-line="8" selection-start-column="19" selection-end-line="8" selection-end-column="52" />
|
70
|
-
</first_editor>
|
71
|
-
<second_editor />
|
72
|
-
</state>
|
73
|
-
</provider>
|
74
|
-
</entry>
|
75
|
-
</file>
|
76
|
-
<file pinned="false" current-in-tab="false">
|
77
|
-
<entry file="file://$PROJECT_DIR$/istox.gemspec">
|
78
|
-
<provider selected="true" editor-type-id="text-editor">
|
79
|
-
<state relative-caret-position="735">
|
80
|
-
<caret line="49" selection-start-line="49" selection-end-line="49" />
|
81
|
-
</state>
|
82
|
-
</provider>
|
83
|
-
</entry>
|
84
|
-
</file>
|
85
|
-
<file pinned="false" current-in-tab="true">
|
86
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/vault.rb">
|
87
|
-
<provider selected="true" editor-type-id="text-editor">
|
88
|
-
<state relative-caret-position="-320">
|
89
|
-
<caret line="28" column="60" lean-forward="true" selection-start-line="28" selection-start-column="60" selection-end-line="28" selection-end-column="60" />
|
90
|
-
</state>
|
91
|
-
</provider>
|
92
|
-
</entry>
|
93
|
-
</file>
|
94
|
-
<file pinned="false" current-in-tab="false">
|
95
|
-
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
96
|
-
<provider selected="true" editor-type-id="text-editor" />
|
97
|
-
</entry>
|
98
|
-
</file>
|
99
|
-
</leaf>
|
100
|
-
</component>
|
101
|
-
<component name="Git.Settings">
|
102
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
103
|
-
</component>
|
104
|
-
<component name="IdeDocumentHistory">
|
105
|
-
<option name="CHANGED_PATHS">
|
106
|
-
<list>
|
107
|
-
<option value="$PROJECT_DIR$/istox.gemspec" />
|
108
|
-
<option value="$PROJECT_DIR$/lib/istox.rb" />
|
109
|
-
<option value="$PROJECT_DIR$/README.md" />
|
110
|
-
<option value="$PROJECT_DIR$/lib/istox/version.rb" />
|
111
|
-
<option value="$PROJECT_DIR$/lib/istox/helpers/vault.rb" />
|
112
|
-
</list>
|
113
|
-
</option>
|
114
|
-
</component>
|
115
|
-
<component name="ProjectFrameBounds" extendedState="6">
|
116
|
-
<option name="y" value="23" />
|
117
|
-
<option name="width" value="1440" />
|
118
|
-
<option name="height" value="852" />
|
119
|
-
</component>
|
120
|
-
<component name="ProjectView">
|
121
|
-
<navigator proportions="" version="1">
|
122
|
-
<foldersAlwaysOnTop value="true" />
|
123
|
-
</navigator>
|
124
|
-
<panes>
|
125
|
-
<pane id="ProjectPane">
|
126
|
-
<subPane>
|
127
|
-
<expand>
|
128
|
-
<path>
|
129
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
130
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
131
|
-
</path>
|
132
|
-
<path>
|
133
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
134
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
135
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
136
|
-
</path>
|
137
|
-
<path>
|
138
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
139
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
140
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
141
|
-
<item name="istox" type="462c0819:PsiDirectoryNode" />
|
142
|
-
</path>
|
143
|
-
<path>
|
144
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
145
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
146
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
147
|
-
<item name="istox" type="462c0819:PsiDirectoryNode" />
|
148
|
-
<item name="helpers" type="462c0819:PsiDirectoryNode" />
|
149
|
-
</path>
|
150
|
-
<path>
|
151
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
152
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
153
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
154
|
-
<item name="istox" type="462c0819:PsiDirectoryNode" />
|
155
|
-
<item name="interfaces" type="462c0819:PsiDirectoryNode" />
|
156
|
-
</path>
|
157
|
-
<path>
|
158
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
159
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
160
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
161
|
-
<item name="istox" type="462c0819:PsiDirectoryNode" />
|
162
|
-
<item name="models" type="462c0819:PsiDirectoryNode" />
|
163
|
-
</path>
|
164
|
-
<path>
|
165
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
166
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
167
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
168
|
-
<item name="istox" type="462c0819:PsiDirectoryNode" />
|
169
|
-
<item name="models" type="462c0819:PsiDirectoryNode" />
|
170
|
-
<item name="concerns" type="462c0819:PsiDirectoryNode" />
|
171
|
-
</path>
|
172
|
-
<path>
|
173
|
-
<item name="istox-gem" type="b2602c69:ProjectViewProjectNode" />
|
174
|
-
<item name="istox-gem" type="462c0819:PsiDirectoryNode" />
|
175
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
176
|
-
</path>
|
177
|
-
</expand>
|
178
|
-
<select />
|
179
|
-
</subPane>
|
180
|
-
</pane>
|
181
|
-
<pane id="Scope" />
|
182
|
-
</panes>
|
183
|
-
</component>
|
184
|
-
<component name="PropertiesComponent">
|
185
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
186
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
187
|
-
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
188
|
-
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
189
|
-
</component>
|
190
|
-
<component name="RunDashboard">
|
191
|
-
<option name="ruleStates">
|
192
|
-
<list>
|
193
|
-
<RuleState>
|
194
|
-
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
195
|
-
</RuleState>
|
196
|
-
<RuleState>
|
197
|
-
<option name="name" value="StatusDashboardGroupingRule" />
|
198
|
-
</RuleState>
|
199
|
-
</list>
|
200
|
-
</option>
|
201
|
-
</component>
|
202
|
-
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
203
|
-
<component name="SvnConfiguration">
|
204
|
-
<configuration />
|
205
|
-
</component>
|
206
|
-
<component name="TaskManager">
|
207
|
-
<task active="true" id="Default" summary="Default task">
|
208
|
-
<changelist id="34535e85-0c20-4dc0-afa1-48a1220ef350" name="Default Changelist" comment="" />
|
209
|
-
<created>1560334369924</created>
|
210
|
-
<option name="number" value="Default" />
|
211
|
-
<option name="presentableId" value="Default" />
|
212
|
-
<updated>1560334369924</updated>
|
213
|
-
<workItem from="1560334371589" duration="14024000" />
|
214
|
-
</task>
|
215
|
-
<servers />
|
216
|
-
</component>
|
217
|
-
<component name="TimeTrackingManager">
|
218
|
-
<option name="totallyTimeSpent" value="14024000" />
|
219
|
-
</component>
|
220
|
-
<component name="ToolWindowManager">
|
221
|
-
<frame x="0" y="23" width="1440" height="852" extended-state="6" />
|
222
|
-
<editor active="true" />
|
223
|
-
<layout>
|
224
|
-
<window_info id="Favorites" side_tool="true" />
|
225
|
-
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.24964234" />
|
226
|
-
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
227
|
-
<window_info anchor="bottom" id="Docker" show_stripe_button="false" />
|
228
|
-
<window_info anchor="bottom" id="Database Changes" />
|
229
|
-
<window_info anchor="bottom" id="Version Control" />
|
230
|
-
<window_info anchor="bottom" id="Messages" visible="true" weight="0.32971507" />
|
231
|
-
<window_info anchor="bottom" id="Terminal" />
|
232
|
-
<window_info anchor="bottom" id="Event Log" side_tool="true" />
|
233
|
-
<window_info anchor="bottom" id="Message" order="0" />
|
234
|
-
<window_info anchor="bottom" id="Find" order="1" />
|
235
|
-
<window_info anchor="bottom" id="Run" order="2" />
|
236
|
-
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
237
|
-
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
238
|
-
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
239
|
-
<window_info anchor="bottom" id="TODO" order="6" />
|
240
|
-
<window_info anchor="right" id="Database" />
|
241
|
-
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
242
|
-
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
243
|
-
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
244
|
-
</layout>
|
245
|
-
</component>
|
246
|
-
<component name="TypeScriptGeneratedFilesManager">
|
247
|
-
<option name="version" value="1" />
|
248
|
-
</component>
|
249
|
-
<component name="editorHistoryManager">
|
250
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/models/blockchain_receipt.rb">
|
251
|
-
<provider selected="true" editor-type-id="text-editor">
|
252
|
-
<state relative-caret-position="165">
|
253
|
-
<caret line="11" column="3" selection-start-line="11" selection-start-column="3" selection-end-line="11" selection-end-column="3" />
|
254
|
-
</state>
|
255
|
-
</provider>
|
256
|
-
</entry>
|
257
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/order_book.rb">
|
258
|
-
<provider selected="true" editor-type-id="text-editor" />
|
259
|
-
</entry>
|
260
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
261
|
-
<provider selected="true" editor-type-id="text-editor">
|
262
|
-
<state relative-caret-position="90">
|
263
|
-
<caret line="6" selection-start-line="6" selection-end-line="6" />
|
264
|
-
</state>
|
265
|
-
</provider>
|
266
|
-
</entry>
|
267
|
-
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
268
|
-
<provider selected="true" editor-type-id="text-editor" />
|
269
|
-
</entry>
|
270
|
-
<entry file="file://$PROJECT_DIR$/istox.gemspec">
|
271
|
-
<provider selected="true" editor-type-id="text-editor">
|
272
|
-
<state relative-caret-position="735">
|
273
|
-
<caret line="49" selection-start-line="49" selection-end-line="49" />
|
274
|
-
</state>
|
275
|
-
</provider>
|
276
|
-
</entry>
|
277
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
278
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
279
|
-
<state split_layout="SPLIT">
|
280
|
-
<first_editor relative-caret-position="120">
|
281
|
-
<caret line="8" column="52" selection-start-line="8" selection-start-column="19" selection-end-line="8" selection-end-column="52" />
|
282
|
-
</first_editor>
|
283
|
-
<second_editor />
|
284
|
-
</state>
|
285
|
-
</provider>
|
286
|
-
</entry>
|
287
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/version.rb">
|
288
|
-
<provider selected="true" editor-type-id="text-editor">
|
289
|
-
<state relative-caret-position="45">
|
290
|
-
<caret line="3" selection-start-line="3" selection-end-line="3" />
|
291
|
-
</state>
|
292
|
-
</provider>
|
293
|
-
</entry>
|
294
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/message_service.rb">
|
295
|
-
<provider selected="true" editor-type-id="text-editor">
|
296
|
-
<state relative-caret-position="285">
|
297
|
-
<caret line="17" column="74" lean-forward="true" selection-start-line="17" selection-start-column="74" selection-end-line="17" selection-end-column="74" />
|
298
|
-
</state>
|
299
|
-
</provider>
|
300
|
-
</entry>
|
301
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/grpc_client.rb">
|
302
|
-
<provider selected="true" editor-type-id="text-editor">
|
303
|
-
<state relative-caret-position="105">
|
304
|
-
<caret line="7" selection-start-line="7" selection-end-line="7" />
|
305
|
-
</state>
|
306
|
-
</provider>
|
307
|
-
</entry>
|
308
|
-
<entry file="file://$PROJECT_DIR$/lib/istox.rb">
|
309
|
-
<provider selected="true" editor-type-id="text-editor">
|
310
|
-
<state relative-caret-position="45">
|
311
|
-
<caret line="3" selection-start-line="3" selection-end-line="3" />
|
312
|
-
</state>
|
313
|
-
</provider>
|
314
|
-
</entry>
|
315
|
-
<entry file="file://$PROJECT_DIR$/lib/istox/helpers/vault.rb">
|
316
|
-
<provider selected="true" editor-type-id="text-editor">
|
317
|
-
<state relative-caret-position="-320">
|
318
|
-
<caret line="28" column="60" lean-forward="true" selection-start-line="28" selection-start-column="60" selection-end-line="28" selection-end-column="60" />
|
319
|
-
</state>
|
320
|
-
</provider>
|
321
|
-
</entry>
|
322
|
-
</component>
|
323
|
-
</project>
|