cubepay 1.0.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.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.idea/cubepay-ruby.iml +13 -0
- data/.idea/inspectionProfiles/Project_Default.xml +6 -0
- data/.idea/misc.xml +7 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +586 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cubepay.gemspec +38 -0
- data/example/_config.rb +9 -0
- data/example/do_payment.rb +32 -0
- data/example/do_payment_by_coin_id.rb +35 -0
- data/example/get_coin_list.rb +6 -0
- data/example/get_fiat_list.rb +6 -0
- data/example/query_payment.rb +11 -0
- data/lib/cubepay.rb +1 -0
- data/lib/cubepay/client.rb +113 -0
- data/lib/cubepay/http_request.rb +26 -0
- data/lib/cubepay/signature.rb +41 -0
- data/lib/cubepay/version.rb +3 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: de69c73036b32e3a2d6bd020ab55b8364c93aa938152debd80202e6d6e30cea1
|
4
|
+
data.tar.gz: 06ed9f09ee31542d5eacc5747a5660a3b48e5f88c833bbe5a9b902566a1029be
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0a28230f0c7e76bce9632bed4c8793f6d3404e2b0fec3d23a31b69bd41457b1ae71a69c844306288e28071eff77391bf3a9d3d6e41ee54176d2fb1ab6c96a2ca
|
7
|
+
data.tar.gz: 4a15a644a51b4efe61e565477afbf101288114fbde7dd4c03a32ca5c723d854425f3291a5128affdd730729612edd296c1a6a129772c550b6090b1d0c8f2f5d3
|
data/.gitignore
ADDED
@@ -0,0 +1,13 @@
|
|
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="jdk" jdkName="RVM: ruby-2.5.1" jdkType="RUBY_SDK" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.2, RVM: ruby-2.5.1) [gem]" level="application" />
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.10.3, RVM: ruby-2.5.1) [gem]" level="application" />
|
12
|
+
</component>
|
13
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,7 @@
|
|
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="ruby-2.0.0-p648" project-jdk-type="RUBY_SDK" />
|
7
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
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/cubepay-ruby.iml" filepath="$PROJECT_DIR$/.idea/cubepay-ruby.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,586 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="60e96d40-236a-4ced-8117-38a62fbbe43f" name="Default Changelist" comment="">
|
5
|
+
<change afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
|
6
|
+
<change afterPath="$PROJECT_DIR$/.idea/cubepay-ruby.iml" afterDir="false" />
|
7
|
+
<change afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" afterDir="false" />
|
8
|
+
<change afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
|
9
|
+
<change afterPath="$PROJECT_DIR$/.idea/modules.xml" afterDir="false" />
|
10
|
+
<change afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
|
11
|
+
<change afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
12
|
+
<change afterPath="$PROJECT_DIR$/.travis.yml" afterDir="false" />
|
13
|
+
<change afterPath="$PROJECT_DIR$/CODE_OF_CONDUCT.md" afterDir="false" />
|
14
|
+
<change afterPath="$PROJECT_DIR$/Gemfile" afterDir="false" />
|
15
|
+
<change afterPath="$PROJECT_DIR$/LICENSE.txt" afterDir="false" />
|
16
|
+
<change afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
|
17
|
+
<change afterPath="$PROJECT_DIR$/Rakefile" afterDir="false" />
|
18
|
+
<change afterPath="$PROJECT_DIR$/bin/console" afterDir="false" />
|
19
|
+
<change afterPath="$PROJECT_DIR$/bin/setup" afterDir="false" />
|
20
|
+
<change afterPath="$PROJECT_DIR$/cubepay.gemspec" afterDir="false" />
|
21
|
+
<change afterPath="$PROJECT_DIR$/example/_config.rb" afterDir="false" />
|
22
|
+
<change afterPath="$PROJECT_DIR$/example/do_payment.rb" afterDir="false" />
|
23
|
+
<change afterPath="$PROJECT_DIR$/example/do_payment_by_coin_id.rb" afterDir="false" />
|
24
|
+
<change afterPath="$PROJECT_DIR$/example/get_coin_list.rb" afterDir="false" />
|
25
|
+
<change afterPath="$PROJECT_DIR$/example/get_fiat_list.rb" afterDir="false" />
|
26
|
+
<change afterPath="$PROJECT_DIR$/example/query_payment.rb" afterDir="false" />
|
27
|
+
<change afterPath="$PROJECT_DIR$/lib/cubepay.rb" afterDir="false" />
|
28
|
+
<change afterPath="$PROJECT_DIR$/lib/cubepay/client.rb" afterDir="false" />
|
29
|
+
<change afterPath="$PROJECT_DIR$/lib/cubepay/http_request.rb" afterDir="false" />
|
30
|
+
<change afterPath="$PROJECT_DIR$/lib/cubepay/signature.rb" afterDir="false" />
|
31
|
+
<change afterPath="$PROJECT_DIR$/lib/cubepay/version.rb" afterDir="false" />
|
32
|
+
<change afterPath="$PROJECT_DIR$/test/cubepay/ruby_test.rb" afterDir="false" />
|
33
|
+
<change afterPath="$PROJECT_DIR$/test/test_helper.rb" afterDir="false" />
|
34
|
+
</list>
|
35
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
36
|
+
<option name="SHOW_DIALOG" value="false" />
|
37
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
38
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
39
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
40
|
+
</component>
|
41
|
+
<component name="CoverageDataManager">
|
42
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@get_fiat_list.rcov" NAME="get_fiat_list Coverage Results" MODIFIED="1538475315366" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
43
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@get_coin_list.rcov" NAME="get_coin_list Coverage Results" MODIFIED="1538569111679" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
44
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@do_payment.rcov" NAME="do_payment Coverage Results" MODIFIED="1538476189499" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
45
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@do_payment_by_coin_id.rcov" NAME="do_payment_by_coin_id Coverage Results" MODIFIED="1538476073787" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
46
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@test.rcov" NAME="get_coin_list Coverage Results" MODIFIED="1538475366171" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
47
|
+
<SUITE FILE_PATH="coverage/cubepay_ruby@query_payment.rcov" NAME="query_payment Coverage Results" MODIFIED="1538567494912" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/example" MODULE_NAME="cubepay-ruby" />
|
48
|
+
</component>
|
49
|
+
<component name="FUSProjectUsageTrigger">
|
50
|
+
<session id="127933910">
|
51
|
+
<usages-collector id="statistics.lifecycle.project">
|
52
|
+
<counts>
|
53
|
+
<entry key="project.closed" value="2" />
|
54
|
+
<entry key="project.open.time.1" value="1" />
|
55
|
+
<entry key="project.open.time.3" value="1" />
|
56
|
+
<entry key="project.open.time.8" value="1" />
|
57
|
+
<entry key="project.opened" value="3" />
|
58
|
+
</counts>
|
59
|
+
</usages-collector>
|
60
|
+
<usages-collector id="statistics.file.extensions.open">
|
61
|
+
<counts>
|
62
|
+
<entry key="Gemfile" value="2" />
|
63
|
+
<entry key="Rakefile" value="3" />
|
64
|
+
<entry key="console" value="1" />
|
65
|
+
<entry key="cubepay" value="1" />
|
66
|
+
<entry key="gemspec" value="3" />
|
67
|
+
<entry key="md" value="3" />
|
68
|
+
<entry key="rb" value="41" />
|
69
|
+
<entry key="setup" value="1" />
|
70
|
+
<entry key="test" value="1" />
|
71
|
+
<entry key="txt" value="1" />
|
72
|
+
<entry key="yml" value="1" />
|
73
|
+
</counts>
|
74
|
+
</usages-collector>
|
75
|
+
<usages-collector id="statistics.file.types.open">
|
76
|
+
<counts>
|
77
|
+
<entry key="Markdown" value="3" />
|
78
|
+
<entry key="PLAIN_TEXT" value="2" />
|
79
|
+
<entry key="Ruby" value="52" />
|
80
|
+
<entry key="YAML" value="1" />
|
81
|
+
</counts>
|
82
|
+
</usages-collector>
|
83
|
+
<usages-collector id="statistics.file.extensions.edit">
|
84
|
+
<counts>
|
85
|
+
<entry key="cubepay" value="4" />
|
86
|
+
<entry key="gemspec" value="32" />
|
87
|
+
<entry key="get_coin" value="6" />
|
88
|
+
<entry key="rb" value="1221" />
|
89
|
+
<entry key="test" value="30" />
|
90
|
+
</counts>
|
91
|
+
</usages-collector>
|
92
|
+
<usages-collector id="statistics.file.types.edit">
|
93
|
+
<counts>
|
94
|
+
<entry key="PLAIN_TEXT" value="6" />
|
95
|
+
<entry key="Ruby" value="1287" />
|
96
|
+
</counts>
|
97
|
+
</usages-collector>
|
98
|
+
</session>
|
99
|
+
</component>
|
100
|
+
<component name="FileEditorManager">
|
101
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
102
|
+
<file pinned="false" current-in-tab="true">
|
103
|
+
<entry file="file://$PROJECT_DIR$/cubepay.gemspec">
|
104
|
+
<provider selected="true" editor-type-id="text-editor">
|
105
|
+
<state relative-caret-position="285">
|
106
|
+
<caret line="19" column="36" selection-start-line="19" selection-start-column="19" selection-end-line="19" selection-end-column="36" />
|
107
|
+
</state>
|
108
|
+
</provider>
|
109
|
+
</entry>
|
110
|
+
</file>
|
111
|
+
</leaf>
|
112
|
+
</component>
|
113
|
+
<component name="FileTemplateManagerImpl">
|
114
|
+
<option name="RECENT_TEMPLATES">
|
115
|
+
<list>
|
116
|
+
<option value="Ruby Class Template" />
|
117
|
+
<option value="Ruby Module Template" />
|
118
|
+
</list>
|
119
|
+
</option>
|
120
|
+
</component>
|
121
|
+
<component name="FindInProjectRecents">
|
122
|
+
<findStrings>
|
123
|
+
<find>OP_NO_SSLv3</find>
|
124
|
+
</findStrings>
|
125
|
+
</component>
|
126
|
+
<component name="Git.Settings">
|
127
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
128
|
+
</component>
|
129
|
+
<component name="IdeDocumentHistory">
|
130
|
+
<option name="CHANGED_PATHS">
|
131
|
+
<list>
|
132
|
+
<option value="$PROJECT_DIR$/example/test" />
|
133
|
+
<option value="$PROJECT_DIR$/lib/cubepay" />
|
134
|
+
<option value="$PROJECT_DIR$/example/get_coin" />
|
135
|
+
<option value="$PROJECT_DIR$/example/get_coin.rb" />
|
136
|
+
<option value="$PROJECT_DIR$/lib/cubepay.rb" />
|
137
|
+
<option value="$PROJECT_DIR$/lib/cube_pay.rb" />
|
138
|
+
<option value="$PROJECT_DIR$/lib/cube_pay/signature.rb" />
|
139
|
+
<option value="$PROJECT_DIR$/lib/cube_pay/client.rb" />
|
140
|
+
<option value="$PROJECT_DIR$/lib/cube_pay/http_request.rb" />
|
141
|
+
<option value="$PROJECT_DIR$/lib/cube_pay/version.rb" />
|
142
|
+
<option value="$PROJECT_DIR$/example/_config.rb" />
|
143
|
+
<option value="$PROJECT_DIR$/lib/cubepay/client.rb" />
|
144
|
+
<option value="$PROJECT_DIR$/lib/cubepay/http_request.rb" />
|
145
|
+
<option value="$PROJECT_DIR$/lib/cubepay/signature.rb" />
|
146
|
+
<option value="$PROJECT_DIR$/lib/cubepay/version.rb" />
|
147
|
+
<option value="$PROJECT_DIR$/example/get_coin_list.rb" />
|
148
|
+
<option value="$PROJECT_DIR$/example/get_fiat_list.rb" />
|
149
|
+
<option value="$PROJECT_DIR$/example/query_payment.rb" />
|
150
|
+
<option value="$PROJECT_DIR$/example/do_payment_by_coin_id.rb" />
|
151
|
+
<option value="$PROJECT_DIR$/example/do_payment.rb" />
|
152
|
+
<option value="$PROJECT_DIR$/test/cubepay/ruby_test.rb" />
|
153
|
+
<option value="$PROJECT_DIR$/test/test_helper.rb" />
|
154
|
+
<option value="$PROJECT_DIR$/bin/console" />
|
155
|
+
<option value="$PROJECT_DIR$/cubepay-ruby.gemspec" />
|
156
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
157
|
+
<option value="$PROJECT_DIR$/README.md" />
|
158
|
+
<option value="$PROJECT_DIR$/cubepay.gemspec" />
|
159
|
+
</list>
|
160
|
+
</option>
|
161
|
+
</component>
|
162
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
163
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
164
|
+
<component name="JsGulpfileManager">
|
165
|
+
<detection-done>true</detection-done>
|
166
|
+
<sorting>DEFINITION_ORDER</sorting>
|
167
|
+
</component>
|
168
|
+
<component name="ProjectFrameBounds">
|
169
|
+
<option name="x" value="71" />
|
170
|
+
<option name="y" value="23" />
|
171
|
+
<option name="width" value="1544" />
|
172
|
+
<option name="height" value="952" />
|
173
|
+
</component>
|
174
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
175
|
+
<ConfirmationsSetting value="1" id="Add" />
|
176
|
+
</component>
|
177
|
+
<component name="ProjectView">
|
178
|
+
<navigator proportions="" version="1">
|
179
|
+
<foldersAlwaysOnTop value="true" />
|
180
|
+
</navigator>
|
181
|
+
<panes>
|
182
|
+
<pane id="ProjectPane">
|
183
|
+
<subPane>
|
184
|
+
<expand>
|
185
|
+
<path>
|
186
|
+
<item name="cubepay-ruby" type="b2602c69:ProjectViewProjectNode" />
|
187
|
+
<item name="cubepay-ruby" type="462c0819:PsiDirectoryNode" />
|
188
|
+
</path>
|
189
|
+
<path>
|
190
|
+
<item name="cubepay-ruby" type="b2602c69:ProjectViewProjectNode" />
|
191
|
+
<item name="cubepay-ruby" type="462c0819:PsiDirectoryNode" />
|
192
|
+
<item name="example" type="462c0819:PsiDirectoryNode" />
|
193
|
+
</path>
|
194
|
+
<path>
|
195
|
+
<item name="cubepay-ruby" type="b2602c69:ProjectViewProjectNode" />
|
196
|
+
<item name="cubepay-ruby" type="462c0819:PsiDirectoryNode" />
|
197
|
+
<item name="test" type="462c0819:PsiDirectoryNode" />
|
198
|
+
</path>
|
199
|
+
<path>
|
200
|
+
<item name="cubepay-ruby" type="b2602c69:ProjectViewProjectNode" />
|
201
|
+
<item name="cubepay-ruby" type="462c0819:PsiDirectoryNode" />
|
202
|
+
<item name="test" type="462c0819:PsiDirectoryNode" />
|
203
|
+
<item name="cubepay" type="462c0819:PsiDirectoryNode" />
|
204
|
+
</path>
|
205
|
+
</expand>
|
206
|
+
<select />
|
207
|
+
</subPane>
|
208
|
+
</pane>
|
209
|
+
<pane id="Scope" />
|
210
|
+
</panes>
|
211
|
+
</component>
|
212
|
+
<component name="PropertiesComponent">
|
213
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
214
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
215
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
216
|
+
</component>
|
217
|
+
<component name="RecentsManager">
|
218
|
+
<key name="MoveFile.RECENT_KEYS">
|
219
|
+
<recent name="$PROJECT_DIR$/lib/cube_pay" />
|
220
|
+
</key>
|
221
|
+
<key name="CopyFile.RECENT_KEYS">
|
222
|
+
<recent name="$PROJECT_DIR$/example" />
|
223
|
+
<recent name="$PROJECT_DIR$/lib/cubepay" />
|
224
|
+
</key>
|
225
|
+
</component>
|
226
|
+
<component name="RunDashboard">
|
227
|
+
<option name="ruleStates">
|
228
|
+
<list>
|
229
|
+
<RuleState>
|
230
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
231
|
+
</RuleState>
|
232
|
+
<RuleState>
|
233
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
234
|
+
</RuleState>
|
235
|
+
</list>
|
236
|
+
</option>
|
237
|
+
</component>
|
238
|
+
<component name="RunManager" selected="Ruby.get_coin_list">
|
239
|
+
<configuration name="do_payment" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
240
|
+
<module name="cubepay-ruby" />
|
241
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="" />
|
242
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/example" />
|
243
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
244
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
245
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
246
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
247
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
248
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
249
|
+
<COVERAGE_PATTERN ENABLED="true">
|
250
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
251
|
+
</COVERAGE_PATTERN>
|
252
|
+
</EXTENSION>
|
253
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/example/do_payment.rb" />
|
254
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
255
|
+
<method v="2" />
|
256
|
+
</configuration>
|
257
|
+
<configuration name="do_payment_by_coin_id" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
258
|
+
<module name="cubepay-ruby" />
|
259
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="" />
|
260
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/example" />
|
261
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
262
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
263
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
264
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
265
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
266
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
267
|
+
<COVERAGE_PATTERN ENABLED="true">
|
268
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
269
|
+
</COVERAGE_PATTERN>
|
270
|
+
</EXTENSION>
|
271
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/example/do_payment_by_coin_id.rb" />
|
272
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
273
|
+
<method v="2" />
|
274
|
+
</configuration>
|
275
|
+
<configuration name="get_coin_list" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
276
|
+
<module name="cubepay-ruby" />
|
277
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="" />
|
278
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/example" />
|
279
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
280
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
281
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
282
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
283
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
284
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
285
|
+
<COVERAGE_PATTERN ENABLED="true">
|
286
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
287
|
+
</COVERAGE_PATTERN>
|
288
|
+
</EXTENSION>
|
289
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/example/get_coin_list.rb" />
|
290
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
291
|
+
<method v="2" />
|
292
|
+
</configuration>
|
293
|
+
<configuration name="get_fiat_list" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
294
|
+
<module name="cubepay-ruby" />
|
295
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="" />
|
296
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/example" />
|
297
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
298
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
299
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
300
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
301
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
302
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
303
|
+
<COVERAGE_PATTERN ENABLED="true">
|
304
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
305
|
+
</COVERAGE_PATTERN>
|
306
|
+
</EXTENSION>
|
307
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/example/get_fiat_list.rb" />
|
308
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
309
|
+
<method v="2" />
|
310
|
+
</configuration>
|
311
|
+
<configuration name="query_payment" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
312
|
+
<module name="cubepay-ruby" />
|
313
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="" />
|
314
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/example" />
|
315
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
316
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
317
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
318
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
319
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
320
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
321
|
+
<COVERAGE_PATTERN ENABLED="true">
|
322
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
323
|
+
</COVERAGE_PATTERN>
|
324
|
+
</EXTENSION>
|
325
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/example/query_payment.rb" />
|
326
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
327
|
+
<method v="2" />
|
328
|
+
</configuration>
|
329
|
+
<list>
|
330
|
+
<item itemvalue="Ruby.get_coin_list" />
|
331
|
+
<item itemvalue="Ruby.get_fiat_list" />
|
332
|
+
<item itemvalue="Ruby.do_payment" />
|
333
|
+
<item itemvalue="Ruby.do_payment_by_coin_id" />
|
334
|
+
<item itemvalue="Ruby.query_payment" />
|
335
|
+
</list>
|
336
|
+
<recent_temporary>
|
337
|
+
<list>
|
338
|
+
<item itemvalue="Ruby.get_coin_list" />
|
339
|
+
<item itemvalue="Ruby.query_payment" />
|
340
|
+
<item itemvalue="Ruby.do_payment" />
|
341
|
+
<item itemvalue="Ruby.do_payment_by_coin_id" />
|
342
|
+
<item itemvalue="Ruby.get_fiat_list" />
|
343
|
+
</list>
|
344
|
+
</recent_temporary>
|
345
|
+
</component>
|
346
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
347
|
+
<component name="SvnConfiguration">
|
348
|
+
<configuration />
|
349
|
+
</component>
|
350
|
+
<component name="TaskManager">
|
351
|
+
<task active="true" id="Default" summary="Default task">
|
352
|
+
<changelist id="60e96d40-236a-4ced-8117-38a62fbbe43f" name="Default Changelist" comment="" />
|
353
|
+
<created>1538453126933</created>
|
354
|
+
<option name="number" value="Default" />
|
355
|
+
<option name="presentableId" value="Default" />
|
356
|
+
<updated>1538453126933</updated>
|
357
|
+
<workItem from="1538453129506" duration="15099000" />
|
358
|
+
<workItem from="1538567474318" duration="197000" />
|
359
|
+
<workItem from="1538567674115" duration="1403000" />
|
360
|
+
</task>
|
361
|
+
<servers />
|
362
|
+
</component>
|
363
|
+
<component name="TimeTrackingManager">
|
364
|
+
<option name="totallyTimeSpent" value="16699000" />
|
365
|
+
</component>
|
366
|
+
<component name="ToolWindowManager">
|
367
|
+
<frame x="71" y="23" width="1544" height="952" extended-state="0" />
|
368
|
+
<editor active="true" />
|
369
|
+
<layout>
|
370
|
+
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.2310253" />
|
371
|
+
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
372
|
+
<window_info id="Favorites" order="2" side_tool="true" />
|
373
|
+
<window_info anchor="bottom" id="Message" order="0" />
|
374
|
+
<window_info anchor="bottom" id="Find" order="1" weight="0.31548312" />
|
375
|
+
<window_info anchor="bottom" id="Run" order="2" weight="0.3282887" />
|
376
|
+
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
377
|
+
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
378
|
+
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
379
|
+
<window_info anchor="bottom" id="TODO" order="6" />
|
380
|
+
<window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
|
381
|
+
<window_info anchor="bottom" id="Database Changes" order="8" show_stripe_button="false" />
|
382
|
+
<window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
|
383
|
+
<window_info anchor="bottom" id="Terminal" order="10" weight="0.32945284" />
|
384
|
+
<window_info anchor="bottom" id="Event Log" order="11" side_tool="true" />
|
385
|
+
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
386
|
+
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
387
|
+
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
388
|
+
<window_info anchor="right" id="Database" order="3" />
|
389
|
+
</layout>
|
390
|
+
</component>
|
391
|
+
<component name="TypeScriptGeneratedFilesManager">
|
392
|
+
<option name="version" value="1" />
|
393
|
+
</component>
|
394
|
+
<component name="VcsContentAnnotationSettings">
|
395
|
+
<option name="myLimit" value="2678400000" />
|
396
|
+
</component>
|
397
|
+
<component name="editorHistoryManager">
|
398
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay">
|
399
|
+
<provider selected="true" editor-type-id="text-editor">
|
400
|
+
<state relative-caret-position="15">
|
401
|
+
<caret line="1" column="14" lean-forward="true" selection-end-line="1" selection-end-column="14" />
|
402
|
+
</state>
|
403
|
+
</provider>
|
404
|
+
</entry>
|
405
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/openssl/digest.rb">
|
406
|
+
<provider selected="true" editor-type-id="text-editor">
|
407
|
+
<state relative-caret-position="175">
|
408
|
+
<caret line="63" column="10" selection-start-line="63" selection-start-column="10" selection-end-line="63" selection-end-column="10" />
|
409
|
+
</state>
|
410
|
+
</provider>
|
411
|
+
</entry>
|
412
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/digest.rb">
|
413
|
+
<provider selected="true" editor-type-id="text-editor">
|
414
|
+
<state relative-caret-position="30">
|
415
|
+
<caret line="2" column="7" selection-start-line="2" selection-start-column="7" selection-end-line="2" selection-end-column="7" />
|
416
|
+
</state>
|
417
|
+
</provider>
|
418
|
+
</entry>
|
419
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/net/http.rb">
|
420
|
+
<provider selected="true" editor-type-id="text-editor">
|
421
|
+
<state relative-caret-position="184">
|
422
|
+
<caret line="501" column="13" selection-start-line="501" selection-start-column="13" selection-end-line="501" selection-end-column="13" />
|
423
|
+
</state>
|
424
|
+
</provider>
|
425
|
+
</entry>
|
426
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/uri/common.rb">
|
427
|
+
<provider selected="true" editor-type-id="text-editor">
|
428
|
+
<state relative-caret-position="280">
|
429
|
+
<caret line="931" column="11" selection-start-line="931" selection-start-column="11" selection-end-line="931" selection-end-column="11" />
|
430
|
+
</state>
|
431
|
+
</provider>
|
432
|
+
</entry>
|
433
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs20/open_ssl.rb">
|
434
|
+
<provider selected="true" editor-type-id="text-editor">
|
435
|
+
<state relative-caret-position="246">
|
436
|
+
<caret line="3251" column="46" lean-forward="true" selection-start-line="3251" selection-start-column="46" selection-end-line="3251" selection-end-column="46" />
|
437
|
+
</state>
|
438
|
+
</provider>
|
439
|
+
</entry>
|
440
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay/ruby.rb">
|
441
|
+
<provider selected="true" editor-type-id="text-editor" />
|
442
|
+
</entry>
|
443
|
+
<entry file="file://$PROJECT_DIR$/example/_config.rb">
|
444
|
+
<provider selected="true" editor-type-id="text-editor">
|
445
|
+
<state relative-caret-position="120">
|
446
|
+
<caret line="8" column="30" lean-forward="true" selection-start-line="8" selection-start-column="30" selection-end-line="8" selection-end-column="30" />
|
447
|
+
</state>
|
448
|
+
</provider>
|
449
|
+
</entry>
|
450
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay/client.rb">
|
451
|
+
<provider selected="true" editor-type-id="text-editor">
|
452
|
+
<state relative-caret-position="45">
|
453
|
+
<caret line="3" column="14" selection-start-line="3" selection-start-column="7" selection-end-line="3" selection-end-column="14" />
|
454
|
+
</state>
|
455
|
+
</provider>
|
456
|
+
</entry>
|
457
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay/http_request.rb">
|
458
|
+
<provider selected="true" editor-type-id="text-editor">
|
459
|
+
<state relative-caret-position="60">
|
460
|
+
<caret line="4" column="14" selection-start-line="4" selection-start-column="14" selection-end-line="4" selection-end-column="14" />
|
461
|
+
</state>
|
462
|
+
</provider>
|
463
|
+
</entry>
|
464
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay/signature.rb">
|
465
|
+
<provider selected="true" editor-type-id="text-editor">
|
466
|
+
<state relative-caret-position="52">
|
467
|
+
<caret line="5" column="14" selection-start-line="5" selection-start-column="14" selection-end-line="5" selection-end-column="14" />
|
468
|
+
</state>
|
469
|
+
</provider>
|
470
|
+
</entry>
|
471
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay.rb">
|
472
|
+
<provider selected="true" editor-type-id="text-editor">
|
473
|
+
<state relative-caret-position="15">
|
474
|
+
<caret line="1" lean-forward="true" selection-start-line="1" selection-end-line="1" />
|
475
|
+
</state>
|
476
|
+
</provider>
|
477
|
+
</entry>
|
478
|
+
<entry file="file://$PROJECT_DIR$/example/get_fiat_list.rb">
|
479
|
+
<provider selected="true" editor-type-id="text-editor">
|
480
|
+
<state relative-caret-position="60">
|
481
|
+
<caret line="4" column="24" lean-forward="true" selection-start-line="4" selection-start-column="24" selection-end-line="4" selection-end-column="24" />
|
482
|
+
</state>
|
483
|
+
</provider>
|
484
|
+
</entry>
|
485
|
+
<entry file="file://$PROJECT_DIR$/example/query_payment.rb">
|
486
|
+
<provider selected="true" editor-type-id="text-editor">
|
487
|
+
<state relative-caret-position="30">
|
488
|
+
<caret line="2" column="16" selection-start-line="2" selection-start-column="16" selection-end-line="2" selection-end-column="16" />
|
489
|
+
</state>
|
490
|
+
</provider>
|
491
|
+
</entry>
|
492
|
+
<entry file="file://$PROJECT_DIR$/example/do_payment_by_coin_id.rb">
|
493
|
+
<provider selected="true" editor-type-id="text-editor">
|
494
|
+
<state relative-caret-position="45">
|
495
|
+
<caret line="3" column="16" selection-start-line="3" selection-start-column="16" selection-end-line="3" selection-end-column="16" />
|
496
|
+
</state>
|
497
|
+
</provider>
|
498
|
+
</entry>
|
499
|
+
<entry file="file://$PROJECT_DIR$/example/do_payment.rb">
|
500
|
+
<provider selected="true" editor-type-id="text-editor">
|
501
|
+
<state relative-caret-position="45">
|
502
|
+
<caret line="3" column="16" selection-start-line="3" selection-start-column="16" selection-end-line="3" selection-end-column="16" />
|
503
|
+
</state>
|
504
|
+
</provider>
|
505
|
+
</entry>
|
506
|
+
<entry file="file://$PROJECT_DIR$/example/get_coin_list.rb">
|
507
|
+
<provider selected="true" editor-type-id="text-editor">
|
508
|
+
<state relative-caret-position="30">
|
509
|
+
<caret line="2" column="16" selection-start-line="2" selection-start-column="9" selection-end-line="2" selection-end-column="16" />
|
510
|
+
</state>
|
511
|
+
</provider>
|
512
|
+
</entry>
|
513
|
+
<entry file="file://$PROJECT_DIR$/test/cubepay/ruby_test.rb">
|
514
|
+
<provider selected="true" editor-type-id="text-editor">
|
515
|
+
<state relative-caret-position="30">
|
516
|
+
<caret line="2" column="13" selection-start-line="2" selection-start-column="13" selection-end-line="2" selection-end-column="13" />
|
517
|
+
</state>
|
518
|
+
</provider>
|
519
|
+
</entry>
|
520
|
+
<entry file="file://$PROJECT_DIR$/test/test_helper.rb">
|
521
|
+
<provider selected="true" editor-type-id="text-editor">
|
522
|
+
<state relative-caret-position="60">
|
523
|
+
<caret line="4" lean-forward="true" selection-start-line="4" selection-end-line="4" />
|
524
|
+
</state>
|
525
|
+
</provider>
|
526
|
+
</entry>
|
527
|
+
<entry file="file://$PROJECT_DIR$/bin/console">
|
528
|
+
<provider selected="true" editor-type-id="text-editor">
|
529
|
+
<state relative-caret-position="45">
|
530
|
+
<caret line="3" column="16" selection-start-line="3" selection-start-column="16" selection-end-line="3" selection-end-column="16" />
|
531
|
+
</state>
|
532
|
+
</provider>
|
533
|
+
</entry>
|
534
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
535
|
+
<provider selected="true" editor-type-id="text-editor" />
|
536
|
+
</entry>
|
537
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
538
|
+
<provider selected="true" editor-type-id="text-editor" />
|
539
|
+
</entry>
|
540
|
+
<entry file="file://$PROJECT_DIR$/CODE_OF_CONDUCT.md">
|
541
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
542
|
+
<state split_layout="SPLIT">
|
543
|
+
<first_editor />
|
544
|
+
<second_editor />
|
545
|
+
</state>
|
546
|
+
</provider>
|
547
|
+
</entry>
|
548
|
+
<entry file="file://$PROJECT_DIR$/lib/cubepay/version.rb">
|
549
|
+
<provider selected="true" editor-type-id="text-editor">
|
550
|
+
<state>
|
551
|
+
<caret column="14" selection-start-column="14" selection-end-column="14" />
|
552
|
+
</state>
|
553
|
+
</provider>
|
554
|
+
</entry>
|
555
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
556
|
+
<provider selected="true" editor-type-id="text-editor">
|
557
|
+
<state relative-caret-position="60">
|
558
|
+
<caret line="4" column="44" selection-start-line="4" selection-start-column="44" selection-end-line="4" selection-end-column="44" />
|
559
|
+
</state>
|
560
|
+
</provider>
|
561
|
+
</entry>
|
562
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
563
|
+
<provider selected="true" editor-type-id="text-editor" />
|
564
|
+
</entry>
|
565
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
566
|
+
<provider selected="true" editor-type-id="text-editor" />
|
567
|
+
</entry>
|
568
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
569
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
570
|
+
<state split_layout="SPLIT">
|
571
|
+
<first_editor>
|
572
|
+
<caret column="9" selection-start-column="9" selection-end-column="9" />
|
573
|
+
</first_editor>
|
574
|
+
<second_editor />
|
575
|
+
</state>
|
576
|
+
</provider>
|
577
|
+
</entry>
|
578
|
+
<entry file="file://$PROJECT_DIR$/cubepay.gemspec">
|
579
|
+
<provider selected="true" editor-type-id="text-editor">
|
580
|
+
<state relative-caret-position="285">
|
581
|
+
<caret line="19" column="36" selection-start-line="19" selection-start-column="19" selection-end-line="19" selection-end-column="36" />
|
582
|
+
</state>
|
583
|
+
</provider>
|
584
|
+
</entry>
|
585
|
+
</component>
|
586
|
+
</project>
|