balanced-ach 0.1 → 0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +29 -0
- data/Gemfile +1 -1
- data/balanced.gemspec +1 -1
- data/lib/{balanced.rb → balanced_ach.rb} +7 -7
- data/lib/{balanced → balanced_ach}/client.rb +1 -1
- data/lib/{balanced → balanced_ach}/error.rb +0 -0
- data/lib/{balanced → balanced_ach}/pager.rb +2 -2
- data/lib/{balanced → balanced_ach}/resources.rb +1 -1
- data/lib/{balanced → balanced_ach}/resources/bank_account.rb +0 -0
- data/lib/{balanced → balanced_ach}/resources/credit.rb +0 -0
- data/lib/{balanced → balanced_ach}/resources/debit.rb +0 -0
- data/lib/{balanced → balanced_ach}/resources/resource.rb +0 -0
- data/lib/{balanced → balanced_ach}/response/balanced_exception_middleware.rb +1 -1
- data/lib/{balanced → balanced_ach}/utils.rb +0 -0
- data/lib/{balanced → balanced_ach}/version.rb +1 -1
- data/x.rb +2 -7
- metadata +15 -114
- data/.idea/.name +0 -1
- data/.idea/.rakeTasks +0 -7
- data/.idea/balanced-ach.iml +0 -9
- data/.idea/encodings.xml +0 -5
- data/.idea/misc.xml +0 -5
- data/.idea/modules.xml +0 -9
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/vcs.xml +0 -7
- data/.idea/workspace.xml +0 -561
- data/spec/balanced/pager_spec.rb +0 -42
- data/spec/balanced/resources/account_spec.rb +0 -571
- data/spec/balanced/resources/api_key_spec.rb +0 -55
- data/spec/balanced/resources/hold_spec.rb +0 -55
- data/spec/balanced/resources/marketplace_spec.rb +0 -97
- data/spec/balanced/resources/transactions_spec.rb +0 -72
- data/spec/balanced/response/balanced_exception_middleware_spec.rb +0 -47
- data/spec/balanced_spec.rb +0 -77
- data/spec/cassettes/Balanced/configure.yml +0 -48
- data/spec/cassettes/Balanced/configure/reconfigure_with_new_api_key.yml +0 -48
- data/spec/cassettes/Balanced_Account.yml +0 -110
- data/spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_configured.yml +0 -240
- data/spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_not_configured.yml +0 -44
- data/spec/cassettes/Balanced_Account/_find.yml +0 -400
- data/spec/cassettes/Balanced_Account/_find/_all_some_field_op_.yml +0 -186
- data/spec/cassettes/Balanced_Account/_find/_first_some_field_op_.yml +0 -186
- data/spec/cassettes/Balanced_Account/_find_by_email.yml +0 -400
- data/spec/cassettes/Balanced_Account/_find_by_email/email_address_does_not_exist.yml +0 -175
- data/spec/cassettes/Balanced_Account/_find_by_email/email_address_is_in_system.yml +0 -186
- data/spec/cassettes/Balanced_Account/buyer/_add_card/after_executing.yml +0 -530
- data/spec/cassettes/Balanced_Account/buyer/_add_card/when_executing.yml +0 -455
- data/spec/cassettes/Balanced_Account/buyer/_debit.yml +0 -363
- data/spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/after_executing.yml +0 -281
- data/spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/when_executing.yml +0 -281
- data/spec/cassettes/Balanced_Account/buyer/_save/after_save/attributes.yml +0 -1013
- data/spec/cassettes/Balanced_Account/buyer/_save/when_creating.yml +0 -229
- data/spec/cassettes/Balanced_Account/merchant/_add_bank_account/after_executing.yml +0 -536
- data/spec/cassettes/Balanced_Account/merchant/_add_bank_account/when_executing.yml +0 -460
- data/spec/cassettes/Balanced_Account/merchant/_save/after_save/attributes.yml +0 -232
- data/spec/cassettes/Balanced_Account/merchant/_save/when_creating.yml +0 -232
- data/spec/cassettes/Balanced_Account/merchant/new.yml +0 -179
- data/spec/cassettes/Balanced_ApiKey/attributes.yml +0 -48
- data/spec/cassettes/Balanced_ApiKey/new_key/after_configure.yml +0 -93
- data/spec/cassettes/Balanced_ApiKey/new_key/before_configure.yml +0 -48
- data/spec/cassettes/Balanced_Hold.yml +0 -335
- data/spec/cassettes/Balanced_Hold/_void.yml +0 -62
- data/spec/cassettes/Balanced_Hold/_void/after.yml +0 -62
- data/spec/cassettes/Balanced_Hold/_void/when_exception_is_thrown.yml +0 -306
- data/spec/cassettes/Balanced_Marketplace.yml +0 -339
- data/spec/cassettes/Balanced_Transaction.yml +0 -1261
- data/spec/cassettes/Balanced_Transaction/Transaction.yml +0 -634
- data/spec/cassettes/Balanced_Transaction/Transaction_paginate.yml +0 -634
- data/spec/client_spec.rb +0 -12
- data/spec/spec_helper.rb +0 -31
- data/spec/utils_spec.rb +0 -8
- data/upload_docs.rb +0 -39
data/.gitignore
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
*~
|
4
|
+
.bundle
|
5
|
+
.config
|
6
|
+
coverage
|
7
|
+
InstalledFiles
|
8
|
+
lib/bundler/man
|
9
|
+
pkg
|
10
|
+
rdoc
|
11
|
+
spec/reports
|
12
|
+
test/tmp
|
13
|
+
test/version_tmp
|
14
|
+
tmp
|
15
|
+
|
16
|
+
# YARD artifacts
|
17
|
+
.yardoc
|
18
|
+
_yardoc
|
19
|
+
doc/
|
20
|
+
|
21
|
+
# env
|
22
|
+
.idea
|
23
|
+
werk
|
24
|
+
|
25
|
+
# lib
|
26
|
+
Gemfile.lock
|
27
|
+
|
28
|
+
# vcr cassettes
|
29
|
+
spec/cassettes
|
data/Gemfile
CHANGED
data/balanced.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env gem build
|
2
2
|
# -*- encoding: utf-8 -*-
|
3
3
|
require "base64"
|
4
|
-
require File.expand_path('../lib/
|
4
|
+
require File.expand_path('../lib/balanced_ach/version', __FILE__)
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
7
|
gem.authors = ["Mahmoud Abdelkader"]
|
@@ -1,12 +1,12 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), "
|
2
|
-
$:.unshift File.join(File.dirname(__FILE__), "
|
1
|
+
$:.unshift File.join(File.dirname(__FILE__), "balanced_ach", "resources")
|
2
|
+
$:.unshift File.join(File.dirname(__FILE__), "balanced_ach", "response")
|
3
3
|
|
4
4
|
require 'uri'
|
5
|
-
require '
|
6
|
-
require '
|
7
|
-
require '
|
8
|
-
require '
|
9
|
-
require '
|
5
|
+
require 'balanced_ach/version' unless defined? Balanced::VERSION
|
6
|
+
require 'balanced_ach/client'
|
7
|
+
require 'balanced_ach/utils'
|
8
|
+
require 'balanced_ach/resources'
|
9
|
+
require 'balanced_ach/error'
|
10
10
|
|
11
11
|
module Balanced
|
12
12
|
|
File without changes
|
@@ -150,11 +150,11 @@ module Balanced
|
|
150
150
|
|
151
151
|
unless parsed_uri.query.nil?
|
152
152
|
# The reason we don't use CGI::parse here is because
|
153
|
-
# the
|
153
|
+
# the balanced_ach api currently can't handle variable[]=value.
|
154
154
|
# Faraday ends up encoding a simple query string like:
|
155
155
|
# {"limit"=>["10"], "offset"=>["0"]}
|
156
156
|
# to limit[]=10&offset[]=0 and that's cool, but
|
157
|
-
# we have to make sure
|
157
|
+
# we have to make sure balanced_ach supports it.
|
158
158
|
query_params = parse_query(parsed_uri.query)
|
159
159
|
params.merge! query_params
|
160
160
|
parsed_uri.query = nil
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/x.rb
CHANGED
@@ -2,13 +2,8 @@
|
|
2
2
|
require 'ruby-debug'
|
3
3
|
|
4
4
|
$:.unshift("/Users/mahmoud/code/poundpay/ruby/balanced-ach/lib")
|
5
|
-
require "
|
6
|
-
|
7
|
-
:scheme => 'http',
|
8
|
-
:host => 'localhost',
|
9
|
-
:port => 9000,
|
10
|
-
:version => 'a0',
|
11
|
-
})
|
5
|
+
require "balanced_ach"
|
6
|
+
|
12
7
|
ba = Balanced::BankAccount.new(
|
13
8
|
:name => "Gottfried Leibniz",
|
14
9
|
:account_number => "3819372930",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: balanced-ach
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.2'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -50,15 +50,7 @@ executables: []
|
|
50
50
|
extensions: []
|
51
51
|
extra_rdoc_files: []
|
52
52
|
files:
|
53
|
-
- .
|
54
|
-
- .idea/.rakeTasks
|
55
|
-
- .idea/balanced-ach.iml
|
56
|
-
- .idea/encodings.xml
|
57
|
-
- .idea/misc.xml
|
58
|
-
- .idea/modules.xml
|
59
|
-
- .idea/scopes/scope_settings.xml
|
60
|
-
- .idea/vcs.xml
|
61
|
-
- .idea/workspace.xml
|
53
|
+
- .gitignore
|
62
54
|
- CONTRIBUTORS
|
63
55
|
- Gemfile
|
64
56
|
- Gemfile.lock
|
@@ -67,64 +59,18 @@ files:
|
|
67
59
|
- README.md
|
68
60
|
- Rakefile
|
69
61
|
- balanced.gemspec
|
70
|
-
- lib/
|
71
|
-
- lib/
|
72
|
-
- lib/
|
73
|
-
- lib/
|
74
|
-
- lib/
|
75
|
-
- lib/
|
76
|
-
- lib/
|
77
|
-
- lib/
|
78
|
-
- lib/
|
79
|
-
- lib/
|
80
|
-
- lib/
|
81
|
-
- lib/
|
82
|
-
- spec/balanced/pager_spec.rb
|
83
|
-
- spec/balanced/resources/account_spec.rb
|
84
|
-
- spec/balanced/resources/api_key_spec.rb
|
85
|
-
- spec/balanced/resources/hold_spec.rb
|
86
|
-
- spec/balanced/resources/marketplace_spec.rb
|
87
|
-
- spec/balanced/resources/transactions_spec.rb
|
88
|
-
- spec/balanced/response/balanced_exception_middleware_spec.rb
|
89
|
-
- spec/balanced_spec.rb
|
90
|
-
- spec/cassettes/Balanced/configure.yml
|
91
|
-
- spec/cassettes/Balanced/configure/reconfigure_with_new_api_key.yml
|
92
|
-
- spec/cassettes/Balanced_Account.yml
|
93
|
-
- spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_configured.yml
|
94
|
-
- spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_not_configured.yml
|
95
|
-
- spec/cassettes/Balanced_Account/_find.yml
|
96
|
-
- spec/cassettes/Balanced_Account/_find/_all_some_field_op_.yml
|
97
|
-
- spec/cassettes/Balanced_Account/_find/_first_some_field_op_.yml
|
98
|
-
- spec/cassettes/Balanced_Account/_find_by_email.yml
|
99
|
-
- spec/cassettes/Balanced_Account/_find_by_email/email_address_does_not_exist.yml
|
100
|
-
- spec/cassettes/Balanced_Account/_find_by_email/email_address_is_in_system.yml
|
101
|
-
- spec/cassettes/Balanced_Account/buyer/_add_card/after_executing.yml
|
102
|
-
- spec/cassettes/Balanced_Account/buyer/_add_card/when_executing.yml
|
103
|
-
- spec/cassettes/Balanced_Account/buyer/_debit.yml
|
104
|
-
- spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/after_executing.yml
|
105
|
-
- spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/when_executing.yml
|
106
|
-
- spec/cassettes/Balanced_Account/buyer/_save/after_save/attributes.yml
|
107
|
-
- spec/cassettes/Balanced_Account/buyer/_save/when_creating.yml
|
108
|
-
- spec/cassettes/Balanced_Account/merchant/_add_bank_account/after_executing.yml
|
109
|
-
- spec/cassettes/Balanced_Account/merchant/_add_bank_account/when_executing.yml
|
110
|
-
- spec/cassettes/Balanced_Account/merchant/_save/after_save/attributes.yml
|
111
|
-
- spec/cassettes/Balanced_Account/merchant/_save/when_creating.yml
|
112
|
-
- spec/cassettes/Balanced_Account/merchant/new.yml
|
113
|
-
- spec/cassettes/Balanced_ApiKey/attributes.yml
|
114
|
-
- spec/cassettes/Balanced_ApiKey/new_key/after_configure.yml
|
115
|
-
- spec/cassettes/Balanced_ApiKey/new_key/before_configure.yml
|
116
|
-
- spec/cassettes/Balanced_Hold.yml
|
117
|
-
- spec/cassettes/Balanced_Hold/_void.yml
|
118
|
-
- spec/cassettes/Balanced_Hold/_void/after.yml
|
119
|
-
- spec/cassettes/Balanced_Hold/_void/when_exception_is_thrown.yml
|
120
|
-
- spec/cassettes/Balanced_Marketplace.yml
|
121
|
-
- spec/cassettes/Balanced_Transaction.yml
|
122
|
-
- spec/cassettes/Balanced_Transaction/Transaction.yml
|
123
|
-
- spec/cassettes/Balanced_Transaction/Transaction_paginate.yml
|
124
|
-
- spec/client_spec.rb
|
125
|
-
- spec/spec_helper.rb
|
126
|
-
- spec/utils_spec.rb
|
127
|
-
- upload_docs.rb
|
62
|
+
- lib/balanced_ach.rb
|
63
|
+
- lib/balanced_ach/client.rb
|
64
|
+
- lib/balanced_ach/error.rb
|
65
|
+
- lib/balanced_ach/pager.rb
|
66
|
+
- lib/balanced_ach/resources.rb
|
67
|
+
- lib/balanced_ach/resources/bank_account.rb
|
68
|
+
- lib/balanced_ach/resources/credit.rb
|
69
|
+
- lib/balanced_ach/resources/debit.rb
|
70
|
+
- lib/balanced_ach/resources/resource.rb
|
71
|
+
- lib/balanced_ach/response/balanced_exception_middleware.rb
|
72
|
+
- lib/balanced_ach/utils.rb
|
73
|
+
- lib/balanced_ach/version.rb
|
128
74
|
- x.rb
|
129
75
|
homepage: https://balancedpayments.com
|
130
76
|
licenses: []
|
@@ -150,50 +96,5 @@ rubygems_version: 1.8.23
|
|
150
96
|
signing_key:
|
151
97
|
specification_version: 3
|
152
98
|
summary: Sign up on https://balancedpayments.com/
|
153
|
-
test_files:
|
154
|
-
- spec/balanced/pager_spec.rb
|
155
|
-
- spec/balanced/resources/account_spec.rb
|
156
|
-
- spec/balanced/resources/api_key_spec.rb
|
157
|
-
- spec/balanced/resources/hold_spec.rb
|
158
|
-
- spec/balanced/resources/marketplace_spec.rb
|
159
|
-
- spec/balanced/resources/transactions_spec.rb
|
160
|
-
- spec/balanced/response/balanced_exception_middleware_spec.rb
|
161
|
-
- spec/balanced_spec.rb
|
162
|
-
- spec/cassettes/Balanced/configure.yml
|
163
|
-
- spec/cassettes/Balanced/configure/reconfigure_with_new_api_key.yml
|
164
|
-
- spec/cassettes/Balanced_Account.yml
|
165
|
-
- spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_configured.yml
|
166
|
-
- spec/cassettes/Balanced_Account/Account_uri/when_ApiKey_is_not_configured.yml
|
167
|
-
- spec/cassettes/Balanced_Account/_find.yml
|
168
|
-
- spec/cassettes/Balanced_Account/_find/_all_some_field_op_.yml
|
169
|
-
- spec/cassettes/Balanced_Account/_find/_first_some_field_op_.yml
|
170
|
-
- spec/cassettes/Balanced_Account/_find_by_email.yml
|
171
|
-
- spec/cassettes/Balanced_Account/_find_by_email/email_address_does_not_exist.yml
|
172
|
-
- spec/cassettes/Balanced_Account/_find_by_email/email_address_is_in_system.yml
|
173
|
-
- spec/cassettes/Balanced_Account/buyer/_add_card/after_executing.yml
|
174
|
-
- spec/cassettes/Balanced_Account/buyer/_add_card/when_executing.yml
|
175
|
-
- spec/cassettes/Balanced_Account/buyer/_debit.yml
|
176
|
-
- spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/after_executing.yml
|
177
|
-
- spec/cassettes/Balanced_Account/buyer/_promote_to_merchant/when_executing.yml
|
178
|
-
- spec/cassettes/Balanced_Account/buyer/_save/after_save/attributes.yml
|
179
|
-
- spec/cassettes/Balanced_Account/buyer/_save/when_creating.yml
|
180
|
-
- spec/cassettes/Balanced_Account/merchant/_add_bank_account/after_executing.yml
|
181
|
-
- spec/cassettes/Balanced_Account/merchant/_add_bank_account/when_executing.yml
|
182
|
-
- spec/cassettes/Balanced_Account/merchant/_save/after_save/attributes.yml
|
183
|
-
- spec/cassettes/Balanced_Account/merchant/_save/when_creating.yml
|
184
|
-
- spec/cassettes/Balanced_Account/merchant/new.yml
|
185
|
-
- spec/cassettes/Balanced_ApiKey/attributes.yml
|
186
|
-
- spec/cassettes/Balanced_ApiKey/new_key/after_configure.yml
|
187
|
-
- spec/cassettes/Balanced_ApiKey/new_key/before_configure.yml
|
188
|
-
- spec/cassettes/Balanced_Hold.yml
|
189
|
-
- spec/cassettes/Balanced_Hold/_void.yml
|
190
|
-
- spec/cassettes/Balanced_Hold/_void/after.yml
|
191
|
-
- spec/cassettes/Balanced_Hold/_void/when_exception_is_thrown.yml
|
192
|
-
- spec/cassettes/Balanced_Marketplace.yml
|
193
|
-
- spec/cassettes/Balanced_Transaction.yml
|
194
|
-
- spec/cassettes/Balanced_Transaction/Transaction.yml
|
195
|
-
- spec/cassettes/Balanced_Transaction/Transaction_paginate.yml
|
196
|
-
- spec/client_spec.rb
|
197
|
-
- spec/spec_helper.rb
|
198
|
-
- spec/utils_spec.rb
|
99
|
+
test_files: []
|
199
100
|
has_rdoc:
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
balanced-ach
|
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/balanced-ach.iml
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="NewModuleRootManager">
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
5
|
-
<orderEntry type="inheritedJdk" />
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
7
|
-
</component>
|
8
|
-
</module>
|
9
|
-
|
data/.idea/encodings.xml
DELETED
data/.idea/misc.xml
DELETED
data/.idea/modules.xml
DELETED
@@ -1,9 +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/balanced-ach.iml" filepath="$PROJECT_DIR$/.idea/balanced-ach.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
9
|
-
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,561 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="fc79159d-6965-4147-90f7-50a19b2224d4" name="Default" comment="" />
|
5
|
-
<ignored path="balanced-ach.iws" />
|
6
|
-
<ignored path=".idea/workspace.xml" />
|
7
|
-
<option name="TRACKING_ENABLED" value="true" />
|
8
|
-
<option name="SHOW_DIALOG" value="false" />
|
9
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
10
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
11
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
12
|
-
</component>
|
13
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
14
|
-
<component name="CreatePatchCommitExecutor">
|
15
|
-
<option name="PATCH_PATH" value="" />
|
16
|
-
</component>
|
17
|
-
<component name="DaemonCodeAnalyzer">
|
18
|
-
<disable_hints />
|
19
|
-
</component>
|
20
|
-
<component name="FileEditorManager">
|
21
|
-
<leaf>
|
22
|
-
<file leaf-file-name="error.rb" pinned="false" current="false" current-in-tab="false">
|
23
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/error.rb">
|
24
|
-
<provider selected="true" editor-type-id="text-editor">
|
25
|
-
<state line="38" column="71" selection-start="1012" selection-end="1012" vertical-scroll-proportion="0.0">
|
26
|
-
<folding />
|
27
|
-
</state>
|
28
|
-
</provider>
|
29
|
-
</entry>
|
30
|
-
</file>
|
31
|
-
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
32
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
33
|
-
<provider selected="true" editor-type-id="text-editor">
|
34
|
-
<state line="19" column="13" selection-start="325" selection-end="325" vertical-scroll-proportion="0.0">
|
35
|
-
<folding />
|
36
|
-
</state>
|
37
|
-
</provider>
|
38
|
-
</entry>
|
39
|
-
</file>
|
40
|
-
<file leaf-file-name="Guardfile" pinned="false" current="false" current-in-tab="false">
|
41
|
-
<entry file="file://$PROJECT_DIR$/Guardfile">
|
42
|
-
<provider selected="true" editor-type-id="text-editor">
|
43
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
44
|
-
<folding />
|
45
|
-
</state>
|
46
|
-
</provider>
|
47
|
-
</entry>
|
48
|
-
</file>
|
49
|
-
<file leaf-file-name="balanced_exception_middleware.rb" pinned="false" current="false" current-in-tab="false">
|
50
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/response/balanced_exception_middleware.rb">
|
51
|
-
<provider selected="true" editor-type-id="text-editor">
|
52
|
-
<state line="5" column="66" selection-start="74" selection-end="74" vertical-scroll-proportion="0.0">
|
53
|
-
<folding />
|
54
|
-
</state>
|
55
|
-
</provider>
|
56
|
-
</entry>
|
57
|
-
</file>
|
58
|
-
<file leaf-file-name="client.rb" pinned="false" current="false" current-in-tab="false">
|
59
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/client.rb">
|
60
|
-
<provider selected="true" editor-type-id="text-editor">
|
61
|
-
<state line="24" column="15" selection-start="459" selection-end="459" vertical-scroll-proportion="0.0">
|
62
|
-
<folding />
|
63
|
-
</state>
|
64
|
-
</provider>
|
65
|
-
</entry>
|
66
|
-
</file>
|
67
|
-
<file leaf-file-name="pager.rb" pinned="false" current="false" current-in-tab="false">
|
68
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/pager.rb">
|
69
|
-
<provider selected="true" editor-type-id="text-editor">
|
70
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
71
|
-
<folding />
|
72
|
-
</state>
|
73
|
-
</provider>
|
74
|
-
</entry>
|
75
|
-
</file>
|
76
|
-
<file leaf-file-name="resources.rb" pinned="false" current="false" current-in-tab="false">
|
77
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/resources.rb">
|
78
|
-
<provider selected="true" editor-type-id="text-editor">
|
79
|
-
<state line="5" column="38" selection-start="145" selection-end="145" vertical-scroll-proportion="0.0">
|
80
|
-
<folding />
|
81
|
-
</state>
|
82
|
-
</provider>
|
83
|
-
</entry>
|
84
|
-
</file>
|
85
|
-
<file leaf-file-name="utils.rb" pinned="false" current="false" current-in-tab="false">
|
86
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/utils.rb">
|
87
|
-
<provider selected="true" editor-type-id="text-editor">
|
88
|
-
<state line="52" column="106" selection-start="1324" selection-end="1324" vertical-scroll-proportion="0.0">
|
89
|
-
<folding />
|
90
|
-
</state>
|
91
|
-
</provider>
|
92
|
-
</entry>
|
93
|
-
</file>
|
94
|
-
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
95
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/version.rb">
|
96
|
-
<provider selected="true" editor-type-id="text-editor">
|
97
|
-
<state line="1" column="16" selection-start="32" selection-end="32" vertical-scroll-proportion="0.0">
|
98
|
-
<folding />
|
99
|
-
</state>
|
100
|
-
</provider>
|
101
|
-
</entry>
|
102
|
-
</file>
|
103
|
-
<file leaf-file-name="balanced.gemspec" pinned="false" current="true" current-in-tab="true">
|
104
|
-
<entry file="file://$PROJECT_DIR$/balanced.gemspec">
|
105
|
-
<provider selected="true" editor-type-id="text-editor">
|
106
|
-
<state line="21" column="50" selection-start="867" selection-end="867" vertical-scroll-proportion="0.28">
|
107
|
-
<folding />
|
108
|
-
</state>
|
109
|
-
</provider>
|
110
|
-
</entry>
|
111
|
-
</file>
|
112
|
-
</leaf>
|
113
|
-
</component>
|
114
|
-
<component name="FindManager">
|
115
|
-
<FindUsagesManager>
|
116
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
117
|
-
</FindUsagesManager>
|
118
|
-
</component>
|
119
|
-
<component name="IdeDocumentHistory">
|
120
|
-
<option name="changedFiles">
|
121
|
-
<list>
|
122
|
-
<option value="$PROJECT_DIR$/lib/balanced.rb" />
|
123
|
-
<option value="$PROJECT_DIR$/lib/balanced/version.rb" />
|
124
|
-
<option value="$PROJECT_DIR$/lib/balanced/resources.rb" />
|
125
|
-
<option value="$PROJECT_DIR$/lib/balanced/resources/debit.rb" />
|
126
|
-
<option value="$PROJECT_DIR$/lib/balanced/resources/resource.rb" />
|
127
|
-
<option value="$PROJECT_DIR$/lib/balanced/client.rb" />
|
128
|
-
<option value="$PROJECT_DIR$/x.rb" />
|
129
|
-
<option value="$PROJECT_DIR$/lib/balanced/resources/bank_account.rb" />
|
130
|
-
<option value="$PROJECT_DIR$/CONTRIBUTORS" />
|
131
|
-
<option value="$PROJECT_DIR$/balanced.gemspec" />
|
132
|
-
</list>
|
133
|
-
</option>
|
134
|
-
</component>
|
135
|
-
<component name="ProjectFrameBounds">
|
136
|
-
<option name="y" value="22" />
|
137
|
-
<option name="width" value="1920" />
|
138
|
-
<option name="height" value="1174" />
|
139
|
-
</component>
|
140
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
141
|
-
<OptionsSetting value="true" id="Add" />
|
142
|
-
<OptionsSetting value="true" id="Remove" />
|
143
|
-
<OptionsSetting value="true" id="Checkout" />
|
144
|
-
<OptionsSetting value="true" id="Update" />
|
145
|
-
<OptionsSetting value="true" id="Status" />
|
146
|
-
<OptionsSetting value="true" id="Edit" />
|
147
|
-
<ConfirmationsSetting value="0" id="Add" />
|
148
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
149
|
-
</component>
|
150
|
-
<component name="ProjectReloadState">
|
151
|
-
<option name="STATE" value="0" />
|
152
|
-
</component>
|
153
|
-
<component name="ProjectView">
|
154
|
-
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
155
|
-
<flattenPackages />
|
156
|
-
<showMembers />
|
157
|
-
<showModules />
|
158
|
-
<showLibraryContents />
|
159
|
-
<hideEmptyPackages />
|
160
|
-
<abbreviatePackageNames />
|
161
|
-
<autoscrollToSource />
|
162
|
-
<autoscrollFromSource />
|
163
|
-
<sortByType />
|
164
|
-
</navigator>
|
165
|
-
<panes>
|
166
|
-
<pane id="Scope" />
|
167
|
-
<pane id="ProjectPane">
|
168
|
-
<subPane>
|
169
|
-
<PATH>
|
170
|
-
<PATH_ELEMENT>
|
171
|
-
<option name="myItemId" value="balanced-ach" />
|
172
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
173
|
-
</PATH_ELEMENT>
|
174
|
-
</PATH>
|
175
|
-
<PATH>
|
176
|
-
<PATH_ELEMENT>
|
177
|
-
<option name="myItemId" value="balanced-ach" />
|
178
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
179
|
-
</PATH_ELEMENT>
|
180
|
-
<PATH_ELEMENT>
|
181
|
-
<option name="myItemId" value="balanced-ach" />
|
182
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
183
|
-
</PATH_ELEMENT>
|
184
|
-
</PATH>
|
185
|
-
<PATH>
|
186
|
-
<PATH_ELEMENT>
|
187
|
-
<option name="myItemId" value="balanced-ach" />
|
188
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
189
|
-
</PATH_ELEMENT>
|
190
|
-
<PATH_ELEMENT>
|
191
|
-
<option name="myItemId" value="balanced-ach" />
|
192
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
193
|
-
</PATH_ELEMENT>
|
194
|
-
<PATH_ELEMENT>
|
195
|
-
<option name="myItemId" value="spec" />
|
196
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
197
|
-
</PATH_ELEMENT>
|
198
|
-
</PATH>
|
199
|
-
<PATH>
|
200
|
-
<PATH_ELEMENT>
|
201
|
-
<option name="myItemId" value="balanced-ach" />
|
202
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
203
|
-
</PATH_ELEMENT>
|
204
|
-
<PATH_ELEMENT>
|
205
|
-
<option name="myItemId" value="balanced-ach" />
|
206
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
207
|
-
</PATH_ELEMENT>
|
208
|
-
<PATH_ELEMENT>
|
209
|
-
<option name="myItemId" value="lib" />
|
210
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
211
|
-
</PATH_ELEMENT>
|
212
|
-
</PATH>
|
213
|
-
<PATH>
|
214
|
-
<PATH_ELEMENT>
|
215
|
-
<option name="myItemId" value="balanced-ach" />
|
216
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
217
|
-
</PATH_ELEMENT>
|
218
|
-
<PATH_ELEMENT>
|
219
|
-
<option name="myItemId" value="balanced-ach" />
|
220
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
221
|
-
</PATH_ELEMENT>
|
222
|
-
<PATH_ELEMENT>
|
223
|
-
<option name="myItemId" value="lib" />
|
224
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
225
|
-
</PATH_ELEMENT>
|
226
|
-
<PATH_ELEMENT>
|
227
|
-
<option name="myItemId" value="balanced" />
|
228
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
229
|
-
</PATH_ELEMENT>
|
230
|
-
</PATH>
|
231
|
-
<PATH>
|
232
|
-
<PATH_ELEMENT>
|
233
|
-
<option name="myItemId" value="balanced-ach" />
|
234
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
235
|
-
</PATH_ELEMENT>
|
236
|
-
<PATH_ELEMENT>
|
237
|
-
<option name="myItemId" value="balanced-ach" />
|
238
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
239
|
-
</PATH_ELEMENT>
|
240
|
-
<PATH_ELEMENT>
|
241
|
-
<option name="myItemId" value="lib" />
|
242
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
243
|
-
</PATH_ELEMENT>
|
244
|
-
<PATH_ELEMENT>
|
245
|
-
<option name="myItemId" value="balanced" />
|
246
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
247
|
-
</PATH_ELEMENT>
|
248
|
-
<PATH_ELEMENT>
|
249
|
-
<option name="myItemId" value="response" />
|
250
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
251
|
-
</PATH_ELEMENT>
|
252
|
-
</PATH>
|
253
|
-
<PATH>
|
254
|
-
<PATH_ELEMENT>
|
255
|
-
<option name="myItemId" value="balanced-ach" />
|
256
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
257
|
-
</PATH_ELEMENT>
|
258
|
-
<PATH_ELEMENT>
|
259
|
-
<option name="myItemId" value="balanced-ach" />
|
260
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
261
|
-
</PATH_ELEMENT>
|
262
|
-
<PATH_ELEMENT>
|
263
|
-
<option name="myItemId" value="lib" />
|
264
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
265
|
-
</PATH_ELEMENT>
|
266
|
-
<PATH_ELEMENT>
|
267
|
-
<option name="myItemId" value="balanced" />
|
268
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
269
|
-
</PATH_ELEMENT>
|
270
|
-
<PATH_ELEMENT>
|
271
|
-
<option name="myItemId" value="resources" />
|
272
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
273
|
-
</PATH_ELEMENT>
|
274
|
-
</PATH>
|
275
|
-
</subPane>
|
276
|
-
</pane>
|
277
|
-
</panes>
|
278
|
-
</component>
|
279
|
-
<component name="PropertiesComponent">
|
280
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
281
|
-
</component>
|
282
|
-
<component name="RunManager">
|
283
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
284
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
285
|
-
<module name="" />
|
286
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
287
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
288
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
289
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
290
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
291
|
-
<envs />
|
292
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
293
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
294
|
-
<COVERAGE_PATTERN ENABLED="true">
|
295
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
296
|
-
</COVERAGE_PATTERN>
|
297
|
-
</EXTENSION>
|
298
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
299
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
300
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
301
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
302
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
303
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
304
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
305
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
306
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
307
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
308
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
309
|
-
<method />
|
310
|
-
</configuration>
|
311
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
312
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
313
|
-
<module name="" />
|
314
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
315
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
316
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
317
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
318
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
319
|
-
<envs />
|
320
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
321
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
322
|
-
<COVERAGE_PATTERN ENABLED="true">
|
323
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
324
|
-
</COVERAGE_PATTERN>
|
325
|
-
</EXTENSION>
|
326
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
327
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
328
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
329
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
330
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
331
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
332
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
333
|
-
<method />
|
334
|
-
</configuration>
|
335
|
-
<list size="0" />
|
336
|
-
</component>
|
337
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
338
|
-
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
|
339
|
-
<option name="USER" value="" />
|
340
|
-
<option name="PASSWORD" value="" />
|
341
|
-
<option name="mySSHConnectionTimeout" value="30000" />
|
342
|
-
<option name="mySSHReadTimeout" value="30000" />
|
343
|
-
<option name="LAST_MERGED_REVISION" />
|
344
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
345
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
346
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
347
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
348
|
-
<option name="DETECT_NESTED_COPIES" value="true" />
|
349
|
-
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
350
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
351
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
352
|
-
<option name="FORCE_UPDATE" value="false" />
|
353
|
-
<option name="IGNORE_EXTERNALS" value="false" />
|
354
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
355
|
-
</component>
|
356
|
-
<component name="TaskManager">
|
357
|
-
<task active="true" id="Default" summary="Default task">
|
358
|
-
<created>1348783670039</created>
|
359
|
-
<updated>1348783670039</updated>
|
360
|
-
</task>
|
361
|
-
<servers />
|
362
|
-
</component>
|
363
|
-
<component name="ToolWindowManager">
|
364
|
-
<frame x="0" y="22" width="1920" height="1174" extended-state="0" />
|
365
|
-
<editor active="true" />
|
366
|
-
<layout>
|
367
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32961932" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
368
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
369
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
370
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32961932" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
371
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
372
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
|
373
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.2497332" sideWeight="0.6703807" order="0" side_tool="false" content_ui="combo" />
|
374
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
375
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
376
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
377
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
378
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
379
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
380
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
381
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
382
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
383
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
384
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
385
|
-
</layout>
|
386
|
-
</component>
|
387
|
-
<component name="VcsContentAnnotationSettings">
|
388
|
-
<option name="myLimit" value="2678400000" />
|
389
|
-
</component>
|
390
|
-
<component name="VcsManagerConfiguration">
|
391
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
392
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
393
|
-
<option name="CHECK_NEW_TODO" value="true" />
|
394
|
-
<option name="myTodoPanelSettings">
|
395
|
-
<value>
|
396
|
-
<are-packages-shown value="false" />
|
397
|
-
<are-modules-shown value="false" />
|
398
|
-
<flatten-packages value="false" />
|
399
|
-
<is-autoscroll-to-source value="false" />
|
400
|
-
</value>
|
401
|
-
</option>
|
402
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
403
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
404
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
405
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
406
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
407
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
408
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
409
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
410
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
411
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
412
|
-
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
413
|
-
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
414
|
-
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
415
|
-
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
416
|
-
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
417
|
-
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
418
|
-
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
419
|
-
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
420
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
421
|
-
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
422
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
423
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
424
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
425
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
426
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
427
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
428
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
429
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
430
|
-
<option name="ACTIVE_VCS_NAME" />
|
431
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
432
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
433
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
434
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
435
|
-
</component>
|
436
|
-
<component name="XDebuggerManager">
|
437
|
-
<breakpoint-manager>
|
438
|
-
<breakpoints>
|
439
|
-
<line-breakpoint enabled="true" type="ruby-line">
|
440
|
-
<url>file://$PROJECT_DIR$/x.rb</url>
|
441
|
-
<line>16</line>
|
442
|
-
</line-breakpoint>
|
443
|
-
</breakpoints>
|
444
|
-
</breakpoint-manager>
|
445
|
-
</component>
|
446
|
-
<component name="editorHistoryManager">
|
447
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/resources/debit.rb">
|
448
|
-
<provider selected="true" editor-type-id="text-editor">
|
449
|
-
<state line="24" column="0" selection-start="839" selection-end="839" vertical-scroll-proportion="0.0">
|
450
|
-
<folding />
|
451
|
-
</state>
|
452
|
-
</provider>
|
453
|
-
</entry>
|
454
|
-
<entry file="file://$PROJECT_DIR$/upload_docs.rb">
|
455
|
-
<provider selected="true" editor-type-id="text-editor">
|
456
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
457
|
-
<folding />
|
458
|
-
</state>
|
459
|
-
</provider>
|
460
|
-
</entry>
|
461
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced.rb">
|
462
|
-
<provider selected="true" editor-type-id="text-editor">
|
463
|
-
<state line="23" column="103" selection-start="552" selection-end="552" vertical-scroll-proportion="0.0">
|
464
|
-
<folding />
|
465
|
-
</state>
|
466
|
-
</provider>
|
467
|
-
</entry>
|
468
|
-
<entry file="file://$PROJECT_DIR$/x.rb">
|
469
|
-
<provider selected="true" editor-type-id="text-editor">
|
470
|
-
<state line="0" column="151" selection-start="19" selection-end="19" vertical-scroll-proportion="0.0">
|
471
|
-
<folding />
|
472
|
-
</state>
|
473
|
-
</provider>
|
474
|
-
</entry>
|
475
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/resources/bank_account.rb">
|
476
|
-
<provider selected="true" editor-type-id="text-editor">
|
477
|
-
<state line="32" column="44" selection-start="855" selection-end="855" vertical-scroll-proportion="0.0">
|
478
|
-
<folding />
|
479
|
-
</state>
|
480
|
-
</provider>
|
481
|
-
</entry>
|
482
|
-
<entry file="file://$PROJECT_DIR$/CONTRIBUTORS">
|
483
|
-
<provider selected="true" editor-type-id="text-editor">
|
484
|
-
<state line="0" column="18" selection-start="18" selection-end="18" vertical-scroll-proportion="0.0">
|
485
|
-
<folding />
|
486
|
-
</state>
|
487
|
-
</provider>
|
488
|
-
</entry>
|
489
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
490
|
-
<provider selected="true" editor-type-id="text-editor">
|
491
|
-
<state line="19" column="13" selection-start="325" selection-end="325" vertical-scroll-proportion="0.0">
|
492
|
-
<folding />
|
493
|
-
</state>
|
494
|
-
</provider>
|
495
|
-
</entry>
|
496
|
-
<entry file="file://$PROJECT_DIR$/Guardfile">
|
497
|
-
<provider selected="true" editor-type-id="text-editor">
|
498
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
499
|
-
<folding />
|
500
|
-
</state>
|
501
|
-
</provider>
|
502
|
-
</entry>
|
503
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/response/balanced_exception_middleware.rb">
|
504
|
-
<provider selected="true" editor-type-id="text-editor">
|
505
|
-
<state line="5" column="66" selection-start="74" selection-end="74" vertical-scroll-proportion="0.0">
|
506
|
-
<folding />
|
507
|
-
</state>
|
508
|
-
</provider>
|
509
|
-
</entry>
|
510
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/client.rb">
|
511
|
-
<provider selected="true" editor-type-id="text-editor">
|
512
|
-
<state line="24" column="15" selection-start="459" selection-end="459" vertical-scroll-proportion="0.0">
|
513
|
-
<folding />
|
514
|
-
</state>
|
515
|
-
</provider>
|
516
|
-
</entry>
|
517
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/error.rb">
|
518
|
-
<provider selected="true" editor-type-id="text-editor">
|
519
|
-
<state line="38" column="71" selection-start="1012" selection-end="1012" vertical-scroll-proportion="0.0">
|
520
|
-
<folding />
|
521
|
-
</state>
|
522
|
-
</provider>
|
523
|
-
</entry>
|
524
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/pager.rb">
|
525
|
-
<provider selected="true" editor-type-id="text-editor">
|
526
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
527
|
-
<folding />
|
528
|
-
</state>
|
529
|
-
</provider>
|
530
|
-
</entry>
|
531
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/resources.rb">
|
532
|
-
<provider selected="true" editor-type-id="text-editor">
|
533
|
-
<state line="5" column="38" selection-start="145" selection-end="145" vertical-scroll-proportion="0.0">
|
534
|
-
<folding />
|
535
|
-
</state>
|
536
|
-
</provider>
|
537
|
-
</entry>
|
538
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/utils.rb">
|
539
|
-
<provider selected="true" editor-type-id="text-editor">
|
540
|
-
<state line="52" column="106" selection-start="1324" selection-end="1324" vertical-scroll-proportion="0.0">
|
541
|
-
<folding />
|
542
|
-
</state>
|
543
|
-
</provider>
|
544
|
-
</entry>
|
545
|
-
<entry file="file://$PROJECT_DIR$/lib/balanced/version.rb">
|
546
|
-
<provider selected="true" editor-type-id="text-editor">
|
547
|
-
<state line="1" column="16" selection-start="32" selection-end="32" vertical-scroll-proportion="0.0">
|
548
|
-
<folding />
|
549
|
-
</state>
|
550
|
-
</provider>
|
551
|
-
</entry>
|
552
|
-
<entry file="file://$PROJECT_DIR$/balanced.gemspec">
|
553
|
-
<provider selected="true" editor-type-id="text-editor">
|
554
|
-
<state line="21" column="50" selection-start="867" selection-end="867" vertical-scroll-proportion="0.28">
|
555
|
-
<folding />
|
556
|
-
</state>
|
557
|
-
</provider>
|
558
|
-
</entry>
|
559
|
-
</component>
|
560
|
-
</project>
|
561
|
-
|