for-all-payment-gateway 0.1.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 +11 -0
- data/.idea/for-all-payment-gateway.iml +12 -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 +500 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +76 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/for-all-payment-gateway-0.1.0.gem +0 -0
- data/for-all-payment-gateway.gemspec +43 -0
- data/lib/for/all/payment/gateway.rb +12 -0
- data/lib/for/all/payment/gateway/version.rb +9 -0
- data/lib/payment_gateway.rb +6 -0
- data/lib/payment_gateway/for_all.rb +33 -0
- data/lib/payment_gateway/for_all/base.rb +37 -0
- data/lib/payment_gateway/for_all/card.rb +55 -0
- data/lib/payment_gateway/for_all/transaction.rb +68 -0
- data/lib/payment_gateway/for_all/vault.rb +18 -0
- metadata +155 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ae52dfe09a5c9c1bcc621056de5b093589536d0ea54359e2f9d16e5a34e48160
|
4
|
+
data.tar.gz: efe0b8709c9b6752fd114470e528ed3516ef6d66057507b26750be8d3d98b57b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ffbf1b213722ecceaf0fbc8729a5d4e451f67ab28a9a9f60c08b3b3516d04cb7381b5192b47226bbf215edda1d0f74beb5ce1295b90114aca4e9a26dc5af7520
|
7
|
+
data.tar.gz: 65023493502972f85b29580f6698295fe56a8ab8d95e2b874c5592fa9f09bfa79d0a54f40c348408ea6fdb456ef3e01cb476469653723985a9cc52cd00ef8e78
|
data/.gitignore
ADDED
@@ -0,0 +1,12 @@
|
|
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.4.1 [global]" jdkType="RUBY_SDK" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.17.0.pre.1, RVM: ruby-2.4.1 [global]) [gem]" level="application" />
|
11
|
+
</component>
|
12
|
+
</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="RVM: ruby-2.5.0" 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/for-all-payment-gateway.iml" filepath="$PROJECT_DIR$/.idea/for-all-payment-gateway.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,500 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="bb91f9e5-dcd0-4c27-bcd5-0888d2ca02ae" name="Default" comment="">
|
5
|
+
<change afterPath="$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb" afterDir="false" />
|
6
|
+
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
7
|
+
<change beforePath="$PROJECT_DIR$/for-all-payment-gateway.gemspec" beforeDir="false" afterPath="$PROJECT_DIR$/for-all-payment-gateway.gemspec" afterDir="false" />
|
8
|
+
<change beforePath="$PROJECT_DIR$/lib/payment_gateway.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/payment_gateway.rb" afterDir="false" />
|
9
|
+
<change beforePath="$PROJECT_DIR$/lib/payment_gateway/for_all.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/payment_gateway/for_all.rb" afterDir="false" />
|
10
|
+
<change beforePath="$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb" afterDir="false" />
|
11
|
+
<change beforePath="$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb" afterDir="false" />
|
12
|
+
<change beforePath="$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb" afterDir="false" />
|
13
|
+
<change beforePath="$PROJECT_DIR$/spec/for/all/payment/gateway_spec.rb" beforeDir="false" />
|
14
|
+
</list>
|
15
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
16
|
+
<option name="TRACKING_ENABLED" value="true" />
|
17
|
+
<option name="SHOW_DIALOG" value="false" />
|
18
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
19
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
20
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
21
|
+
</component>
|
22
|
+
<component name="CoverageDataManager">
|
23
|
+
<SUITE FILE_PATH="coverage/for_all_payment_gateway@console.rcov" NAME="console Coverage Results" MODIFIED="1538676731764" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/bin" MODULE_NAME="for-all-payment-gateway" />
|
24
|
+
</component>
|
25
|
+
<component name="FileEditorManager">
|
26
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
27
|
+
<file leaf-file-name="card.rb" pinned="false" current-in-tab="false">
|
28
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb">
|
29
|
+
<provider selected="true" editor-type-id="text-editor">
|
30
|
+
<state relative-caret-position="418">
|
31
|
+
<caret line="19" column="19" selection-start-line="19" selection-start-column="19" selection-end-line="19" selection-end-column="19" />
|
32
|
+
</state>
|
33
|
+
</provider>
|
34
|
+
</entry>
|
35
|
+
</file>
|
36
|
+
<file leaf-file-name="for-all-payment-gateway.gemspec" pinned="false" current-in-tab="true">
|
37
|
+
<entry file="file://$PROJECT_DIR$/for-all-payment-gateway.gemspec">
|
38
|
+
<provider selected="true" editor-type-id="text-editor">
|
39
|
+
<state relative-caret-position="110">
|
40
|
+
<caret line="5" column="32" lean-forward="true" selection-start-line="5" selection-start-column="32" selection-end-line="5" selection-end-column="32" />
|
41
|
+
</state>
|
42
|
+
</provider>
|
43
|
+
</entry>
|
44
|
+
</file>
|
45
|
+
</leaf>
|
46
|
+
</component>
|
47
|
+
<component name="FileTemplateManagerImpl">
|
48
|
+
<option name="RECENT_TEMPLATES">
|
49
|
+
<list>
|
50
|
+
<option value="Ruby Class Template" />
|
51
|
+
</list>
|
52
|
+
</option>
|
53
|
+
</component>
|
54
|
+
<component name="Git.Settings">
|
55
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
56
|
+
</component>
|
57
|
+
<component name="IdeDocumentHistory">
|
58
|
+
<option name="CHANGED_PATHS">
|
59
|
+
<list>
|
60
|
+
<option value="$PROJECT_DIR$/bin/console" />
|
61
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway-for-all.rb" />
|
62
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/test.rb" />
|
63
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/vault.rb" />
|
64
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/teste.rb" />
|
65
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb" />
|
66
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb" />
|
67
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all.rb" />
|
68
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway.rb" />
|
69
|
+
<option value="$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb" />
|
70
|
+
<option value="$PROJECT_DIR$/for-all-payment-gateway.gemspec" />
|
71
|
+
</list>
|
72
|
+
</option>
|
73
|
+
</component>
|
74
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
75
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
76
|
+
<component name="JsGulpfileManager">
|
77
|
+
<detection-done>true</detection-done>
|
78
|
+
<sorting>DEFINITION_ORDER</sorting>
|
79
|
+
</component>
|
80
|
+
<component name="NodePackageJsonFileManager">
|
81
|
+
<packageJsonPaths />
|
82
|
+
</component>
|
83
|
+
<component name="ProjectFrameBounds" fullScreen="true">
|
84
|
+
<option name="y" value="119" />
|
85
|
+
<option name="width" value="1280" />
|
86
|
+
<option name="height" value="731" />
|
87
|
+
</component>
|
88
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
89
|
+
<component name="ProjectView">
|
90
|
+
<navigator proportions="" version="1">
|
91
|
+
<foldersAlwaysOnTop value="true" />
|
92
|
+
</navigator>
|
93
|
+
<panes>
|
94
|
+
<pane id="ProjectPane">
|
95
|
+
<subPane>
|
96
|
+
<expand>
|
97
|
+
<path>
|
98
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
99
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
100
|
+
</path>
|
101
|
+
<path>
|
102
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
103
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
104
|
+
<item name="bin" type="462c0819:PsiDirectoryNode" />
|
105
|
+
</path>
|
106
|
+
<path>
|
107
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
108
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
109
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
110
|
+
</path>
|
111
|
+
<path>
|
112
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
113
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
114
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
115
|
+
<item name="payment_gateway" type="462c0819:PsiDirectoryNode" />
|
116
|
+
</path>
|
117
|
+
<path>
|
118
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
119
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
120
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
121
|
+
<item name="payment_gateway" type="462c0819:PsiDirectoryNode" />
|
122
|
+
<item name="for_all" type="462c0819:PsiDirectoryNode" />
|
123
|
+
</path>
|
124
|
+
<path>
|
125
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
126
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
127
|
+
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
128
|
+
</path>
|
129
|
+
<path>
|
130
|
+
<item name="for-all-payment-gateway" type="b2602c69:ProjectViewProjectNode" />
|
131
|
+
<item name="for-all-payment-gateway" type="462c0819:PsiDirectoryNode" />
|
132
|
+
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
133
|
+
<item name="payment_gateway" type="462c0819:PsiDirectoryNode" />
|
134
|
+
</path>
|
135
|
+
</expand>
|
136
|
+
<select />
|
137
|
+
</subPane>
|
138
|
+
</pane>
|
139
|
+
<pane id="Scope" />
|
140
|
+
</panes>
|
141
|
+
</component>
|
142
|
+
<component name="PropertiesComponent">
|
143
|
+
<property name="SearchEverywhereHistoryKey" value="gemfi	FILE	file:///Users/admin/Documents/for-all-payment-gateway/Gemfile" />
|
144
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
145
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
146
|
+
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
147
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
148
|
+
</component>
|
149
|
+
<component name="RecentsManager">
|
150
|
+
<key name="CopyFile.RECENT_KEYS">
|
151
|
+
<recent name="$PROJECT_DIR$/lib/payment_gateway/for_all" />
|
152
|
+
</key>
|
153
|
+
</component>
|
154
|
+
<component name="RunDashboard">
|
155
|
+
<option name="ruleStates">
|
156
|
+
<list>
|
157
|
+
<RuleState>
|
158
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
159
|
+
</RuleState>
|
160
|
+
<RuleState>
|
161
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
162
|
+
</RuleState>
|
163
|
+
</list>
|
164
|
+
</option>
|
165
|
+
</component>
|
166
|
+
<component name="RunManager">
|
167
|
+
<configuration name="console" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
168
|
+
<module name="for-all-payment-gateway" />
|
169
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
170
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/bin" />
|
171
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
172
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
173
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
174
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
175
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
176
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
177
|
+
<COVERAGE_PATTERN ENABLED="true">
|
178
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
179
|
+
</COVERAGE_PATTERN>
|
180
|
+
</EXTENSION>
|
181
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/bin/console" />
|
182
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
183
|
+
</configuration>
|
184
|
+
<recent_temporary>
|
185
|
+
<list>
|
186
|
+
<item itemvalue="Ruby.console" />
|
187
|
+
</list>
|
188
|
+
</recent_temporary>
|
189
|
+
</component>
|
190
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
191
|
+
<component name="SvnConfiguration">
|
192
|
+
<configuration />
|
193
|
+
</component>
|
194
|
+
<component name="TaskManager">
|
195
|
+
<task active="true" id="Default" summary="Default task">
|
196
|
+
<changelist id="bb91f9e5-dcd0-4c27-bcd5-0888d2ca02ae" name="Default" comment="" />
|
197
|
+
<created>1538675820377</created>
|
198
|
+
<option name="number" value="Default" />
|
199
|
+
<option name="presentableId" value="Default" />
|
200
|
+
<updated>1538675820377</updated>
|
201
|
+
<workItem from="1538675821982" duration="13859000" />
|
202
|
+
<workItem from="1539009790194" duration="9077000" />
|
203
|
+
<workItem from="1539113643976" duration="1260000" />
|
204
|
+
<workItem from="1539174885385" duration="2400000" />
|
205
|
+
<workItem from="1539194960138" duration="6586000" />
|
206
|
+
<workItem from="1539266349830" duration="209000" />
|
207
|
+
</task>
|
208
|
+
<servers />
|
209
|
+
</component>
|
210
|
+
<component name="TimeTrackingManager">
|
211
|
+
<option name="totallyTimeSpent" value="33391000" />
|
212
|
+
</component>
|
213
|
+
<component name="ToolWindowManager">
|
214
|
+
<frame x="0" y="0" width="1280" height="800" extended-state="0" />
|
215
|
+
<editor active="true" />
|
216
|
+
<layout>
|
217
|
+
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.22578125" />
|
218
|
+
<window_info anchor="bottom" id="TODO" order="6" />
|
219
|
+
<window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
|
220
|
+
<window_info anchor="bottom" id="Event Log" order="7" side_tool="true" />
|
221
|
+
<window_info anchor="right" id="Database" order="3" />
|
222
|
+
<window_info anchor="bottom" id="Database Changes" order="7" show_stripe_button="false" />
|
223
|
+
<window_info anchor="bottom" id="Run" order="2" weight="0.20588236" />
|
224
|
+
<window_info anchor="bottom" id="Version Control" order="7" />
|
225
|
+
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
226
|
+
<window_info anchor="bottom" id="Terminal" order="7" />
|
227
|
+
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
228
|
+
<window_info id="Favorites" order="2" side_tool="true" />
|
229
|
+
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
230
|
+
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
231
|
+
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
232
|
+
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
233
|
+
<window_info anchor="bottom" id="Messages" order="7" weight="0.328877" />
|
234
|
+
<window_info anchor="bottom" id="Message" order="0" />
|
235
|
+
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
236
|
+
<window_info anchor="bottom" id="Find" order="1" />
|
237
|
+
</layout>
|
238
|
+
</component>
|
239
|
+
<component name="TypeScriptGeneratedFilesManager">
|
240
|
+
<option name="version" value="1" />
|
241
|
+
</component>
|
242
|
+
<component name="VcsContentAnnotationSettings">
|
243
|
+
<option name="myLimit" value="2678400000" />
|
244
|
+
</component>
|
245
|
+
<component name="editorHistoryManager">
|
246
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
247
|
+
<provider selected="true" editor-type-id="text-editor">
|
248
|
+
<state relative-caret-position="110">
|
249
|
+
<caret line="5" column="44" selection-start-line="5" selection-start-column="44" selection-end-line="5" selection-end-column="44" />
|
250
|
+
</state>
|
251
|
+
</provider>
|
252
|
+
</entry>
|
253
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/vault.rb">
|
254
|
+
<provider selected="true" editor-type-id="text-editor">
|
255
|
+
<state relative-caret-position="88">
|
256
|
+
<caret line="4" column="6" selection-start-line="4" selection-start-column="6" selection-end-line="4" selection-end-column="6" />
|
257
|
+
</state>
|
258
|
+
</provider>
|
259
|
+
</entry>
|
260
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all.rb">
|
261
|
+
<provider selected="true" editor-type-id="text-editor">
|
262
|
+
<state relative-caret-position="462">
|
263
|
+
<caret line="21" column="8" selection-start-line="21" selection-start-column="8" selection-end-line="21" selection-end-column="8" />
|
264
|
+
</state>
|
265
|
+
</provider>
|
266
|
+
</entry>
|
267
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb">
|
268
|
+
<provider selected="true" editor-type-id="text-editor">
|
269
|
+
<state relative-caret-position="418">
|
270
|
+
<caret line="19" column="19" lean-forward="true" selection-start-line="19" selection-start-column="19" selection-end-line="19" selection-end-column="19" />
|
271
|
+
</state>
|
272
|
+
</provider>
|
273
|
+
</entry>
|
274
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb">
|
275
|
+
<provider selected="true" editor-type-id="text-editor">
|
276
|
+
<state relative-caret-position="176">
|
277
|
+
<caret line="8" column="48" selection-start-line="8" selection-start-column="48" selection-end-line="8" selection-end-column="48" />
|
278
|
+
</state>
|
279
|
+
</provider>
|
280
|
+
</entry>
|
281
|
+
<entry file="file://$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb">
|
282
|
+
<provider selected="true" editor-type-id="text-editor" />
|
283
|
+
</entry>
|
284
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb">
|
285
|
+
<provider selected="true" editor-type-id="text-editor">
|
286
|
+
<state relative-caret-position="308">
|
287
|
+
<caret line="14" column="49" selection-start-line="14" selection-start-column="49" selection-end-line="14" selection-end-column="49" />
|
288
|
+
</state>
|
289
|
+
</provider>
|
290
|
+
</entry>
|
291
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
292
|
+
<provider selected="true" editor-type-id="text-editor">
|
293
|
+
<state relative-caret-position="110">
|
294
|
+
<caret line="5" column="44" selection-start-line="5" selection-start-column="44" selection-end-line="5" selection-end-column="44" />
|
295
|
+
</state>
|
296
|
+
</provider>
|
297
|
+
</entry>
|
298
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb">
|
299
|
+
<provider selected="true" editor-type-id="text-editor">
|
300
|
+
<state relative-caret-position="176">
|
301
|
+
<caret line="8" column="17" selection-start-line="8" selection-start-column="17" selection-end-line="8" selection-end-column="17" />
|
302
|
+
</state>
|
303
|
+
</provider>
|
304
|
+
</entry>
|
305
|
+
<entry file="file://$PROJECT_DIR$/for-all-payment-gateway.gemspec">
|
306
|
+
<provider selected="true" editor-type-id="text-editor">
|
307
|
+
<state relative-caret-position="902">
|
308
|
+
<caret line="41" column="22" lean-forward="true" selection-start-line="41" selection-start-column="22" selection-end-line="41" selection-end-column="22" />
|
309
|
+
</state>
|
310
|
+
</provider>
|
311
|
+
</entry>
|
312
|
+
<entry file="file://$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb">
|
313
|
+
<provider selected="true" editor-type-id="text-editor" />
|
314
|
+
</entry>
|
315
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb">
|
316
|
+
<provider selected="true" editor-type-id="text-editor">
|
317
|
+
<state relative-caret-position="440">
|
318
|
+
<caret line="20" column="19" selection-start-line="20" selection-start-column="19" selection-end-line="20" selection-end-column="19" />
|
319
|
+
</state>
|
320
|
+
</provider>
|
321
|
+
</entry>
|
322
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
323
|
+
<provider selected="true" editor-type-id="text-editor">
|
324
|
+
<state relative-caret-position="110">
|
325
|
+
<caret line="5" column="44" selection-start-line="5" selection-start-column="44" selection-end-line="5" selection-end-column="44" />
|
326
|
+
</state>
|
327
|
+
</provider>
|
328
|
+
</entry>
|
329
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all.rb">
|
330
|
+
<provider selected="true" editor-type-id="text-editor">
|
331
|
+
<state relative-caret-position="198">
|
332
|
+
<caret line="9" lean-forward="true" selection-start-line="9" selection-end-line="9" />
|
333
|
+
</state>
|
334
|
+
</provider>
|
335
|
+
</entry>
|
336
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb">
|
337
|
+
<provider selected="true" editor-type-id="text-editor">
|
338
|
+
<state relative-caret-position="440">
|
339
|
+
<caret line="20" column="19" selection-start-line="20" selection-start-column="19" selection-end-line="20" selection-end-column="19" />
|
340
|
+
</state>
|
341
|
+
</provider>
|
342
|
+
</entry>
|
343
|
+
<entry file="file://$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb">
|
344
|
+
<provider selected="true" editor-type-id="text-editor" />
|
345
|
+
</entry>
|
346
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb">
|
347
|
+
<provider selected="true" editor-type-id="text-editor">
|
348
|
+
<state relative-caret-position="528">
|
349
|
+
<caret line="24" column="8" selection-start-line="24" selection-start-column="8" selection-end-line="24" selection-end-column="8" />
|
350
|
+
</state>
|
351
|
+
</provider>
|
352
|
+
</entry>
|
353
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
354
|
+
<provider selected="true" editor-type-id="text-editor">
|
355
|
+
<state relative-caret-position="110">
|
356
|
+
<caret line="5" column="44" selection-start-line="5" selection-start-column="44" selection-end-line="5" selection-end-column="44" />
|
357
|
+
</state>
|
358
|
+
</provider>
|
359
|
+
</entry>
|
360
|
+
<entry file="file://$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb">
|
361
|
+
<provider selected="true" editor-type-id="text-editor" />
|
362
|
+
</entry>
|
363
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb">
|
364
|
+
<provider selected="true" editor-type-id="text-editor">
|
365
|
+
<state relative-caret-position="176">
|
366
|
+
<caret line="8" column="8" selection-start-line="8" selection-start-column="8" selection-end-line="8" selection-end-column="8" />
|
367
|
+
</state>
|
368
|
+
</provider>
|
369
|
+
</entry>
|
370
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
371
|
+
<provider selected="true" editor-type-id="text-editor">
|
372
|
+
<state relative-caret-position="66">
|
373
|
+
<caret line="3" column="23" selection-start-line="3" selection-start-column="23" selection-end-line="3" selection-end-column="23" />
|
374
|
+
</state>
|
375
|
+
</provider>
|
376
|
+
</entry>
|
377
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb">
|
378
|
+
<provider selected="true" editor-type-id="text-editor">
|
379
|
+
<state relative-caret-position="110">
|
380
|
+
<caret line="5" column="21" lean-forward="true" selection-start-line="5" selection-start-column="21" selection-end-line="5" selection-end-column="21" />
|
381
|
+
</state>
|
382
|
+
</provider>
|
383
|
+
</entry>
|
384
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/vault.rb">
|
385
|
+
<provider selected="true" editor-type-id="text-editor">
|
386
|
+
<state relative-caret-position="110">
|
387
|
+
<caret line="5" column="14" selection-start-line="5" selection-start-column="14" selection-end-line="5" selection-end-column="14" />
|
388
|
+
</state>
|
389
|
+
</provider>
|
390
|
+
</entry>
|
391
|
+
<entry file="file://$PROJECT_DIR$/for-all-payment-gateway.gemspec">
|
392
|
+
<provider selected="true" editor-type-id="text-editor">
|
393
|
+
<state relative-caret-position="748">
|
394
|
+
<caret line="34" column="41" selection-start-line="34" selection-start-column="41" selection-end-line="34" selection-end-column="41" />
|
395
|
+
</state>
|
396
|
+
</provider>
|
397
|
+
</entry>
|
398
|
+
<entry file="file://$PROJECT_DIR$/bin/console">
|
399
|
+
<provider selected="true" editor-type-id="text-editor">
|
400
|
+
<state relative-caret-position="66">
|
401
|
+
<caret line="3" column="32" selection-start-line="3" selection-start-column="32" selection-end-line="3" selection-end-column="32" />
|
402
|
+
</state>
|
403
|
+
</provider>
|
404
|
+
</entry>
|
405
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb">
|
406
|
+
<provider selected="true" editor-type-id="text-editor">
|
407
|
+
<state relative-caret-position="220">
|
408
|
+
<caret line="10" column="20" lean-forward="true" selection-start-line="10" selection-start-column="20" selection-end-line="10" selection-end-column="20" />
|
409
|
+
</state>
|
410
|
+
</provider>
|
411
|
+
</entry>
|
412
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs24/module.rb">
|
413
|
+
<provider selected="true" editor-type-id="text-editor">
|
414
|
+
<state relative-caret-position="175">
|
415
|
+
<caret line="1218" column="8" selection-start-line="1218" selection-start-column="8" selection-end-line="1218" selection-end-column="8" />
|
416
|
+
</state>
|
417
|
+
</provider>
|
418
|
+
</entry>
|
419
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/test.rb" />
|
420
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/valt.rb" />
|
421
|
+
<entry file="file://$USER_HOME$/.rvm/rubies/ruby-2.4.1/lib/ruby/2.4.0/irb.rb">
|
422
|
+
<provider selected="true" editor-type-id="text-editor">
|
423
|
+
<state relative-caret-position="283">
|
424
|
+
<caret line="710" column="6" selection-start-line="710" selection-start-column="6" selection-end-line="710" selection-end-column="6" />
|
425
|
+
</state>
|
426
|
+
</provider>
|
427
|
+
</entry>
|
428
|
+
<entry file="file://$PROJECT_DIR$/bin/console">
|
429
|
+
<provider selected="true" editor-type-id="text-editor">
|
430
|
+
<state relative-caret-position="66">
|
431
|
+
<caret line="3" column="32" selection-start-line="3" selection-start-column="32" selection-end-line="3" selection-end-column="32" />
|
432
|
+
</state>
|
433
|
+
</provider>
|
434
|
+
</entry>
|
435
|
+
<entry file="file://$PROJECT_DIR$/spec/for/all/payment/gateway_spec.rb" />
|
436
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.4.1@global/gems/bundler-1.17.0.pre.1/lib/bundler/errors.rb">
|
437
|
+
<provider selected="true" editor-type-id="text-editor">
|
438
|
+
<state relative-caret-position="241">
|
439
|
+
<caret line="19" column="8" selection-start-line="19" selection-start-column="8" selection-end-line="19" selection-end-column="8" />
|
440
|
+
</state>
|
441
|
+
</provider>
|
442
|
+
</entry>
|
443
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
444
|
+
<provider selected="true" editor-type-id="text-editor" />
|
445
|
+
</entry>
|
446
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/teste.rb" />
|
447
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/transaction.rb">
|
448
|
+
<provider selected="true" editor-type-id="text-editor">
|
449
|
+
<state relative-caret-position="-619">
|
450
|
+
<caret line="14" column="25" selection-start-line="14" selection-start-column="25" selection-end-line="14" selection-end-column="25" />
|
451
|
+
</state>
|
452
|
+
</provider>
|
453
|
+
</entry>
|
454
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway.rb">
|
455
|
+
<provider selected="true" editor-type-id="text-editor">
|
456
|
+
<state relative-caret-position="110">
|
457
|
+
<caret line="5" column="45" selection-start-line="5" selection-start-column="45" selection-end-line="5" selection-end-column="45" />
|
458
|
+
</state>
|
459
|
+
</provider>
|
460
|
+
</entry>
|
461
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all.rb">
|
462
|
+
<provider selected="true" editor-type-id="text-editor">
|
463
|
+
<state relative-caret-position="462">
|
464
|
+
<caret line="21" column="8" selection-start-line="21" selection-start-column="8" selection-end-line="21" selection-end-column="8" />
|
465
|
+
</state>
|
466
|
+
</provider>
|
467
|
+
</entry>
|
468
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/base.rb">
|
469
|
+
<provider selected="true" editor-type-id="text-editor">
|
470
|
+
<state relative-caret-position="60">
|
471
|
+
<caret line="8" column="25" selection-start-line="8" selection-start-column="25" selection-end-line="8" selection-end-column="25" />
|
472
|
+
</state>
|
473
|
+
</provider>
|
474
|
+
</entry>
|
475
|
+
<entry file="file://$PROJECT_DIR$/spec/payment_gateway/for_all/vault.rb">
|
476
|
+
<provider selected="true" editor-type-id="text-editor" />
|
477
|
+
</entry>
|
478
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/vault.rb">
|
479
|
+
<provider selected="true" editor-type-id="text-editor">
|
480
|
+
<state relative-caret-position="88">
|
481
|
+
<caret line="4" column="6" selection-start-line="4" selection-start-column="6" selection-end-line="4" selection-end-column="6" />
|
482
|
+
</state>
|
483
|
+
</provider>
|
484
|
+
</entry>
|
485
|
+
<entry file="file://$PROJECT_DIR$/lib/payment_gateway/for_all/card.rb">
|
486
|
+
<provider selected="true" editor-type-id="text-editor">
|
487
|
+
<state relative-caret-position="418">
|
488
|
+
<caret line="19" column="19" selection-start-line="19" selection-start-column="19" selection-end-line="19" selection-end-column="19" />
|
489
|
+
</state>
|
490
|
+
</provider>
|
491
|
+
</entry>
|
492
|
+
<entry file="file://$PROJECT_DIR$/for-all-payment-gateway.gemspec">
|
493
|
+
<provider selected="true" editor-type-id="text-editor">
|
494
|
+
<state relative-caret-position="110">
|
495
|
+
<caret line="5" column="32" lean-forward="true" selection-start-line="5" selection-start-column="32" selection-end-line="5" selection-end-column="32" />
|
496
|
+
</state>
|
497
|
+
</provider>
|
498
|
+
</entry>
|
499
|
+
</component>
|
500
|
+
</project>
|