metatron_ruby_client 0.0.1 → 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 +4 -4
- data/README.md +28 -28
- data/config.json +1 -1
- data/docs/Asset.md +1 -1
- data/docs/AssetResultSet.md +1 -1
- data/docs/DefaultApi.md +159 -145
- data/docs/WorkAttributes.md +3 -1
- data/lib/metatron_ruby_client.rb +8 -3
- data/lib/metatron_ruby_client/api/default_api.rb +439 -241
- data/lib/metatron_ruby_client/api_client.rb +6 -2
- data/lib/metatron_ruby_client/api_error.rb +4 -2
- data/lib/metatron_ruby_client/configuration.rb +3 -3
- data/lib/metatron_ruby_client/models/asset.rb +45 -3
- data/lib/metatron_ruby_client/models/asset_data.rb +61 -2
- data/lib/metatron_ruby_client/models/asset_meta.rb +23 -0
- data/lib/metatron_ruby_client/models/asset_result_set.rb +60 -3
- data/lib/metatron_ruby_client/models/error.rb +61 -2
- data/lib/metatron_ruby_client/models/errors.rb +27 -2
- data/lib/metatron_ruby_client/models/item.rb +40 -0
- data/lib/metatron_ruby_client/models/item_data.rb +28 -2
- data/lib/metatron_ruby_client/models/item_result_set.rb +60 -2
- data/lib/metatron_ruby_client/models/links.rb +60 -2
- data/lib/metatron_ruby_client/models/manifestation.rb +40 -0
- data/lib/metatron_ruby_client/models/manifestation_attributes.rb +75 -2
- data/lib/metatron_ruby_client/models/manifestation_data.rb +78 -2
- data/lib/metatron_ruby_client/models/manifestation_relationships.rb +59 -2
- data/lib/metatron_ruby_client/models/manifestation_result_set.rb +62 -2
- data/lib/metatron_ruby_client/models/one_to_many_relationship.rb +60 -2
- data/lib/metatron_ruby_client/models/one_to_one_relationship.rb +60 -2
- data/lib/metatron_ruby_client/models/resource_data.rb +78 -2
- data/lib/metatron_ruby_client/models/resource_link.rb +45 -2
- data/lib/metatron_ruby_client/models/result_set_meta.rb +59 -2
- data/lib/metatron_ruby_client/models/work.rb +40 -0
- data/lib/metatron_ruby_client/models/work_attributes.rb +90 -10
- data/lib/metatron_ruby_client/models/work_data.rb +78 -2
- data/lib/metatron_ruby_client/models/work_relationships.rb +27 -2
- data/lib/metatron_ruby_client/models/work_result_set.rb +75 -2
- data/lib/metatron_ruby_client/version.rb +5 -3
- data/metatron_ruby_client-0.0.1.gem +0 -0
- data/spec/api/default_api_spec.rb +11 -0
- data/spec/models/work_attributes_spec.rb +21 -1
- data/stub-service/.idea/.name +1 -0
- data/stub-service/.idea/encodings.xml +5 -0
- data/stub-service/.idea/metatron-dummy-server.iml +11 -0
- data/stub-service/.idea/misc.xml +5 -0
- data/stub-service/.idea/modules.xml +9 -0
- data/stub-service/.idea/scopes/scope_settings.xml +5 -0
- data/stub-service/.idea/vcs.xml +7 -0
- data/stub-service/.idea/workspace.xml +534 -0
- metadata +32 -24
- data/swagger-codegen-cli.jar +0 -0
@@ -1,7 +1,9 @@
|
|
1
1
|
=begin
|
2
|
-
|
2
|
+
Metatron Server
|
3
3
|
|
4
|
-
|
4
|
+
A primitive modelling bibliographic metadata
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0.0
|
5
7
|
|
6
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
7
9
|
|
@@ -9,5 +11,5 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
11
|
=end
|
10
12
|
|
11
13
|
module MetatronClient
|
12
|
-
VERSION = "0.
|
14
|
+
VERSION = "0.1.1"
|
13
15
|
end
|
Binary file
|
@@ -35,6 +35,7 @@ describe 'DefaultApi' do
|
|
35
35
|
# unit tests for add_manifestation_asset
|
36
36
|
#
|
37
37
|
# Add an asset to the relevant manifestation
|
38
|
+
# @param authorization Bearer token
|
38
39
|
# @param manifestation_id
|
39
40
|
# @param body node
|
40
41
|
# @param [Hash] opts the optional parameters
|
@@ -52,6 +53,7 @@ describe 'DefaultApi' do
|
|
52
53
|
# unit tests for get_holdings
|
53
54
|
# Get local holdings for a given manifestation
|
54
55
|
#
|
56
|
+
# @param authorization Bearer token
|
55
57
|
# @param manifestation_id
|
56
58
|
# @param tenant_code
|
57
59
|
# @param [Hash] opts the optional parameters
|
@@ -69,6 +71,7 @@ describe 'DefaultApi' do
|
|
69
71
|
# unit tests for get_manifestation
|
70
72
|
# Get a specific Manifestation from the dataset
|
71
73
|
#
|
74
|
+
# @param authorization Bearer token
|
72
75
|
# @param manifestation_id
|
73
76
|
# @param [Hash] opts the optional parameters
|
74
77
|
# @return [nil]
|
@@ -85,6 +88,7 @@ describe 'DefaultApi' do
|
|
85
88
|
# unit tests for get_manifestation_assets
|
86
89
|
# Get a set of Assets that are associated with a specific Manifestation
|
87
90
|
#
|
91
|
+
# @param authorization Bearer token
|
88
92
|
# @param manifestation_id
|
89
93
|
# @param [Hash] opts the optional parameters
|
90
94
|
# @return [AssetResultSet]
|
@@ -101,6 +105,7 @@ describe 'DefaultApi' do
|
|
101
105
|
# unit tests for get_manifestation_works
|
102
106
|
# Get a set of Works relating to a given Manifestation. Usually there will be one current work, but due to previous titles there might be more than one Work.
|
103
107
|
#
|
108
|
+
# @param authorization Bearer token
|
104
109
|
# @param manifestation_id
|
105
110
|
# @param [Hash] opts the optional parameters
|
106
111
|
# @return [nil]
|
@@ -117,6 +122,7 @@ describe 'DefaultApi' do
|
|
117
122
|
# unit tests for get_work
|
118
123
|
# Get a set of Works that are similar to a specific Work
|
119
124
|
#
|
125
|
+
# @param authorization Bearer token
|
120
126
|
# @param work_id
|
121
127
|
# @param [Hash] opts the optional parameters
|
122
128
|
# @return [WorkResultSet]
|
@@ -133,6 +139,7 @@ describe 'DefaultApi' do
|
|
133
139
|
# unit tests for get_work_assets
|
134
140
|
# Get a set of Assets that are associated with a specific Work
|
135
141
|
#
|
142
|
+
# @param authorization Bearer token
|
136
143
|
# @param work_id
|
137
144
|
# @param [Hash] opts the optional parameters
|
138
145
|
# @return [AssetResultSet]
|
@@ -149,6 +156,7 @@ describe 'DefaultApi' do
|
|
149
156
|
# unit tests for get_work_manifestations
|
150
157
|
# Get a set of Manifestations that encompass a specific Work
|
151
158
|
#
|
159
|
+
# @param authorization Bearer token
|
152
160
|
# @param work_id
|
153
161
|
# @param [Hash] opts the optional parameters
|
154
162
|
# @return [nil]
|
@@ -165,6 +173,7 @@ describe 'DefaultApi' do
|
|
165
173
|
# unit tests for manifestation
|
166
174
|
#
|
167
175
|
# Get the manifestation set best matching the given bibliographic data
|
176
|
+
# @param authorization Bearer token
|
168
177
|
# @param [Hash] opts the optional parameters
|
169
178
|
# @option opts [String] :isbn The isbn
|
170
179
|
# @option opts [String] :work_id The ID of a work
|
@@ -182,6 +191,7 @@ describe 'DefaultApi' do
|
|
182
191
|
# unit tests for remove_asset
|
183
192
|
#
|
184
193
|
# Remove an asset
|
194
|
+
# @param authorization Bearer token
|
185
195
|
# @param asset_id
|
186
196
|
# @param asset_type
|
187
197
|
# @param [Hash] opts the optional parameters
|
@@ -199,6 +209,7 @@ describe 'DefaultApi' do
|
|
199
209
|
# unit tests for work
|
200
210
|
# Get the work best matching the given bibliographic data
|
201
211
|
#
|
212
|
+
# @param authorization Bearer token
|
202
213
|
# @param q Search works for the supplied term
|
203
214
|
# @param limit Limit the results to n results
|
204
215
|
# @param offset Offset the results to position n
|
@@ -32,7 +32,27 @@ describe 'WorkAttributes' do
|
|
32
32
|
@instance.should be_a(MetatronClient::WorkAttributes)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "titles"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here
|
38
|
+
# should be_a()
|
39
|
+
# should be_nil
|
40
|
+
# should ==
|
41
|
+
# should_not ==
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "authors"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here
|
48
|
+
# should be_a()
|
49
|
+
# should be_nil
|
50
|
+
# should ==
|
51
|
+
# should_not ==
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'test attribute "isbns"' do
|
36
56
|
it 'should work' do
|
37
57
|
# assertion here
|
38
58
|
# should be_a()
|
@@ -0,0 +1 @@
|
|
1
|
+
metatron-dummy-server
|
@@ -0,0 +1,11 @@
|
|
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
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.7.9, rbenv: 1.9.3-p547) [gem]" level="application" />
|
8
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-protection (v1.5.3, rbenv: 1.9.3-p547) [gem]" level="application" />
|
9
|
+
</component>
|
10
|
+
</module>
|
11
|
+
|
@@ -0,0 +1,9 @@
|
|
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/metatron-dummy-server.iml" filepath="$PROJECT_DIR$/.idea/metatron-dummy-server.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
@@ -0,0 +1,534 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="3cf2e566-ca78-4d00-8566-ec5b9c7d4f3e" name="Default" comment="" />
|
5
|
+
<ignored path="metatron-dummy-server.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="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
21
|
+
<component name="FavoritesManager">
|
22
|
+
<favorites_list name="metatron-dummy-server" />
|
23
|
+
</component>
|
24
|
+
<component name="FileEditorManager">
|
25
|
+
<leaf>
|
26
|
+
<file leaf-file-name="default_api.rb" pinned="false" current="false" current-in-tab="false">
|
27
|
+
<entry file="file://$PROJECT_DIR$/api/default_api.rb">
|
28
|
+
<provider selected="true" editor-type-id="text-editor">
|
29
|
+
<state line="298" column="14" selection-start="7497" selection-end="7497" vertical-scroll-proportion="0.0" vertical-offset="4470" max-vertical-offset="4785">
|
30
|
+
<folding />
|
31
|
+
</state>
|
32
|
+
</provider>
|
33
|
+
</entry>
|
34
|
+
</file>
|
35
|
+
<file leaf-file-name="manifestations.yaml" pinned="false" current="false" current-in-tab="false">
|
36
|
+
<entry file="file://$PROJECT_DIR$/responses/works/includes/manifestations.yaml">
|
37
|
+
<provider selected="true" editor-type-id="text-editor">
|
38
|
+
<state line="6" column="7" selection-start="128" selection-end="128" vertical-scroll-proportion="0.0" vertical-offset="90" max-vertical-offset="1305">
|
39
|
+
<folding />
|
40
|
+
</state>
|
41
|
+
</provider>
|
42
|
+
</entry>
|
43
|
+
</file>
|
44
|
+
<file leaf-file-name="config.ru" pinned="false" current="false" current-in-tab="false">
|
45
|
+
<entry file="file://$PROJECT_DIR$/config.ru">
|
46
|
+
<provider selected="true" editor-type-id="text-editor">
|
47
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="120">
|
48
|
+
<folding />
|
49
|
+
</state>
|
50
|
+
</provider>
|
51
|
+
</entry>
|
52
|
+
</file>
|
53
|
+
<file leaf-file-name=".swagger-codegen-ignore" pinned="false" current="false" current-in-tab="false">
|
54
|
+
<entry file="file://$PROJECT_DIR$/.swagger-codegen-ignore">
|
55
|
+
<provider editor-type-id="com.intellij.persistence.database.editor.CsvTableFileEditorProvider">
|
56
|
+
<state />
|
57
|
+
</provider>
|
58
|
+
<provider selected="true" editor-type-id="text-editor">
|
59
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="435">
|
60
|
+
<folding />
|
61
|
+
</state>
|
62
|
+
</provider>
|
63
|
+
</entry>
|
64
|
+
</file>
|
65
|
+
<file leaf-file-name="swaggering.rb" pinned="false" current="false" current-in-tab="false">
|
66
|
+
<entry file="file://$PROJECT_DIR$/lib/swaggering.rb">
|
67
|
+
<provider selected="true" editor-type-id="text-editor">
|
68
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2535">
|
69
|
+
<folding />
|
70
|
+
</state>
|
71
|
+
</provider>
|
72
|
+
</entry>
|
73
|
+
</file>
|
74
|
+
<file leaf-file-name="result_set.rb" pinned="false" current="false" current-in-tab="false">
|
75
|
+
<entry file="file://$PROJECT_DIR$/lib/result_set.rb">
|
76
|
+
<provider selected="true" editor-type-id="text-editor">
|
77
|
+
<state line="17" column="75" selection-start="530" selection-end="530" vertical-scroll-proportion="0.0" vertical-offset="255" max-vertical-offset="525">
|
78
|
+
<folding />
|
79
|
+
</state>
|
80
|
+
</provider>
|
81
|
+
</entry>
|
82
|
+
</file>
|
83
|
+
<file leaf-file-name="swagger.yaml" pinned="false" current="true" current-in-tab="true">
|
84
|
+
<entry file="file://$PROJECT_DIR$/swagger.yaml">
|
85
|
+
<provider selected="true" editor-type-id="text-editor">
|
86
|
+
<state line="661" column="40" selection-start="24648" selection-end="24648" vertical-scroll-proportion="0.7770859" vertical-offset="9291" max-vertical-offset="17025">
|
87
|
+
<folding />
|
88
|
+
</state>
|
89
|
+
</provider>
|
90
|
+
</entry>
|
91
|
+
</file>
|
92
|
+
<file leaf-file-name="my_app.rb" pinned="false" current="false" current-in-tab="false">
|
93
|
+
<entry file="file://$PROJECT_DIR$/my_app.rb">
|
94
|
+
<provider selected="true" editor-type-id="text-editor">
|
95
|
+
<state line="1" column="25" selection-start="52" selection-end="52" vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="285">
|
96
|
+
<folding />
|
97
|
+
</state>
|
98
|
+
</provider>
|
99
|
+
</entry>
|
100
|
+
</file>
|
101
|
+
<file leaf-file-name="kernel.rb" pinned="false" current="false" current-in-tab="false">
|
102
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs193/kernel.rb">
|
103
|
+
<provider selected="true" editor-type-id="text-editor">
|
104
|
+
<state line="545" column="8" selection-start="20959" selection-end="20959" vertical-scroll-proportion="0.0" vertical-offset="7994" max-vertical-offset="29310">
|
105
|
+
<folding />
|
106
|
+
</state>
|
107
|
+
</provider>
|
108
|
+
</entry>
|
109
|
+
</file>
|
110
|
+
<file leaf-file-name="result_set.yaml" pinned="false" current="false" current-in-tab="false">
|
111
|
+
<entry file="file://$PROJECT_DIR$/responses/works/result_set.yaml">
|
112
|
+
<provider selected="true" editor-type-id="text-editor">
|
113
|
+
<state line="11" column="28" selection-start="193" selection-end="193" vertical-scroll-proportion="0.0" vertical-offset="165" max-vertical-offset="345">
|
114
|
+
<folding />
|
115
|
+
</state>
|
116
|
+
</provider>
|
117
|
+
</entry>
|
118
|
+
</file>
|
119
|
+
</leaf>
|
120
|
+
</component>
|
121
|
+
<component name="FindManager">
|
122
|
+
<FindUsagesManager>
|
123
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
124
|
+
</FindUsagesManager>
|
125
|
+
</component>
|
126
|
+
<component name="IdeDocumentHistory">
|
127
|
+
<option name="changedFiles">
|
128
|
+
<list>
|
129
|
+
<option value="$PROJECT_DIR$/responses/works.yaml" />
|
130
|
+
<option value="$PROJECT_DIR$/responses/works/includes/manifestations.assets.yaml" />
|
131
|
+
<option value="$PROJECT_DIR$/my_app.rb" />
|
132
|
+
<option value="$PROJECT_DIR$/responses/works/result_set.yaml" />
|
133
|
+
<option value="$PROJECT_DIR$/responses/works/includes/manifestations.yaml" />
|
134
|
+
<option value="$PROJECT_DIR$/lib/result_set.rb" />
|
135
|
+
<option value="$PROJECT_DIR$/api/default_api.rb" />
|
136
|
+
</list>
|
137
|
+
</option>
|
138
|
+
</component>
|
139
|
+
<component name="ProjectFrameBounds">
|
140
|
+
<option name="x" value="59" />
|
141
|
+
<option name="y" value="53" />
|
142
|
+
<option name="width" value="1776" />
|
143
|
+
<option name="height" value="949" />
|
144
|
+
</component>
|
145
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
146
|
+
<OptionsSetting value="true" id="Add" />
|
147
|
+
<OptionsSetting value="true" id="Remove" />
|
148
|
+
<OptionsSetting value="true" id="Checkout" />
|
149
|
+
<OptionsSetting value="true" id="Update" />
|
150
|
+
<OptionsSetting value="true" id="Status" />
|
151
|
+
<OptionsSetting value="true" id="Edit" />
|
152
|
+
<ConfirmationsSetting value="0" id="Add" />
|
153
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
154
|
+
</component>
|
155
|
+
<component name="ProjectReloadState">
|
156
|
+
<option name="STATE" value="0" />
|
157
|
+
</component>
|
158
|
+
<component name="ProjectView">
|
159
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
160
|
+
<flattenPackages />
|
161
|
+
<showMembers />
|
162
|
+
<showModules />
|
163
|
+
<showLibraryContents />
|
164
|
+
<hideEmptyPackages />
|
165
|
+
<abbreviatePackageNames />
|
166
|
+
<autoscrollToSource />
|
167
|
+
<autoscrollFromSource />
|
168
|
+
<sortByType />
|
169
|
+
</navigator>
|
170
|
+
<panes>
|
171
|
+
<pane id="ProjectPane">
|
172
|
+
<subPane>
|
173
|
+
<PATH>
|
174
|
+
<PATH_ELEMENT>
|
175
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
176
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
177
|
+
</PATH_ELEMENT>
|
178
|
+
</PATH>
|
179
|
+
<PATH>
|
180
|
+
<PATH_ELEMENT>
|
181
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
182
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
183
|
+
</PATH_ELEMENT>
|
184
|
+
<PATH_ELEMENT>
|
185
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
186
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
187
|
+
</PATH_ELEMENT>
|
188
|
+
</PATH>
|
189
|
+
<PATH>
|
190
|
+
<PATH_ELEMENT>
|
191
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
192
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
193
|
+
</PATH_ELEMENT>
|
194
|
+
<PATH_ELEMENT>
|
195
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
196
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
197
|
+
</PATH_ELEMENT>
|
198
|
+
<PATH_ELEMENT>
|
199
|
+
<option name="myItemId" value="responses" />
|
200
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
201
|
+
</PATH_ELEMENT>
|
202
|
+
<PATH_ELEMENT>
|
203
|
+
<option name="myItemId" value="works" />
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
205
|
+
</PATH_ELEMENT>
|
206
|
+
</PATH>
|
207
|
+
<PATH>
|
208
|
+
<PATH_ELEMENT>
|
209
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
210
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
211
|
+
</PATH_ELEMENT>
|
212
|
+
<PATH_ELEMENT>
|
213
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
214
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
215
|
+
</PATH_ELEMENT>
|
216
|
+
<PATH_ELEMENT>
|
217
|
+
<option name="myItemId" value="responses" />
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
219
|
+
</PATH_ELEMENT>
|
220
|
+
<PATH_ELEMENT>
|
221
|
+
<option name="myItemId" value="works" />
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
223
|
+
</PATH_ELEMENT>
|
224
|
+
<PATH_ELEMENT>
|
225
|
+
<option name="myItemId" value="includes" />
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
227
|
+
</PATH_ELEMENT>
|
228
|
+
</PATH>
|
229
|
+
<PATH>
|
230
|
+
<PATH_ELEMENT>
|
231
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
232
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
233
|
+
</PATH_ELEMENT>
|
234
|
+
<PATH_ELEMENT>
|
235
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
236
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
237
|
+
</PATH_ELEMENT>
|
238
|
+
<PATH_ELEMENT>
|
239
|
+
<option name="myItemId" value="lib" />
|
240
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
241
|
+
</PATH_ELEMENT>
|
242
|
+
</PATH>
|
243
|
+
<PATH>
|
244
|
+
<PATH_ELEMENT>
|
245
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
246
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
247
|
+
</PATH_ELEMENT>
|
248
|
+
<PATH_ELEMENT>
|
249
|
+
<option name="myItemId" value="metatron-dummy-server" />
|
250
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
251
|
+
</PATH_ELEMENT>
|
252
|
+
<PATH_ELEMENT>
|
253
|
+
<option name="myItemId" value="api" />
|
254
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
255
|
+
</PATH_ELEMENT>
|
256
|
+
</PATH>
|
257
|
+
</subPane>
|
258
|
+
</pane>
|
259
|
+
<pane id="Scope" />
|
260
|
+
</panes>
|
261
|
+
</component>
|
262
|
+
<component name="PropertiesComponent">
|
263
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
264
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
265
|
+
<property name="FullScreen" value="false" />
|
266
|
+
</component>
|
267
|
+
<component name="RecentsManager">
|
268
|
+
<key name="MoveFile.RECENT_KEYS">
|
269
|
+
<recent name="$PROJECT_DIR$/responses/works" />
|
270
|
+
</key>
|
271
|
+
</component>
|
272
|
+
<component name="RunManager">
|
273
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
274
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
275
|
+
<module name="" />
|
276
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
277
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
278
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
279
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
280
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
281
|
+
<envs />
|
282
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
283
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
284
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
285
|
+
<COVERAGE_PATTERN ENABLED="true">
|
286
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
287
|
+
</COVERAGE_PATTERN>
|
288
|
+
</EXTENSION>
|
289
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
290
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
291
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
292
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
293
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
294
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
295
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
296
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
297
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
298
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
299
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
300
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
301
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
302
|
+
<method />
|
303
|
+
</configuration>
|
304
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug" singleton="true">
|
305
|
+
<method />
|
306
|
+
</configuration>
|
307
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
308
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
309
|
+
<module name="" />
|
310
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
311
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
312
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
313
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
314
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
315
|
+
<envs />
|
316
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
317
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
318
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
319
|
+
<COVERAGE_PATTERN ENABLED="true">
|
320
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
321
|
+
</COVERAGE_PATTERN>
|
322
|
+
</EXTENSION>
|
323
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
324
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
325
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
326
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
327
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
328
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
329
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
330
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
331
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
332
|
+
<method />
|
333
|
+
</configuration>
|
334
|
+
<list size="0" />
|
335
|
+
</component>
|
336
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
337
|
+
<component name="TaskManager">
|
338
|
+
<task active="true" id="Default" summary="Default task">
|
339
|
+
<changelist id="3cf2e566-ca78-4d00-8566-ec5b9c7d4f3e" name="Default" comment="" />
|
340
|
+
<created>1467906558259</created>
|
341
|
+
<updated>1467906558259</updated>
|
342
|
+
</task>
|
343
|
+
<servers />
|
344
|
+
</component>
|
345
|
+
<component name="ToolWindowManager">
|
346
|
+
<frame x="59" y="53" width="1776" height="949" extended-state="0" />
|
347
|
+
<editor active="false" />
|
348
|
+
<layout>
|
349
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
350
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
351
|
+
<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" />
|
352
|
+
<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="0" side_tool="false" content_ui="tabs" />
|
353
|
+
<window_info id="Structure" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.15801615" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
354
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.19088812" sideWeight="0.5" order="1" side_tool="false" content_ui="combo" />
|
355
|
+
<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" />
|
356
|
+
<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="0" side_tool="true" content_ui="tabs" />
|
357
|
+
<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="7" side_tool="true" content_ui="tabs" />
|
358
|
+
<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" />
|
359
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
360
|
+
<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" />
|
361
|
+
<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" />
|
362
|
+
<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="2" side_tool="false" content_ui="tabs" />
|
363
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3290398" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
364
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
365
|
+
<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="3" side_tool="false" content_ui="combo" />
|
366
|
+
<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" />
|
367
|
+
</layout>
|
368
|
+
</component>
|
369
|
+
<component name="Vcs.Log.UiProperties">
|
370
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
371
|
+
<collection />
|
372
|
+
</option>
|
373
|
+
</component>
|
374
|
+
<component name="VcsContentAnnotationSettings">
|
375
|
+
<option name="myLimit" value="2678400000" />
|
376
|
+
</component>
|
377
|
+
<component name="VcsManagerConfiguration">
|
378
|
+
<option name="myTodoPanelSettings">
|
379
|
+
<TodoPanelSettings />
|
380
|
+
</option>
|
381
|
+
</component>
|
382
|
+
<component name="XDebuggerManager">
|
383
|
+
<breakpoint-manager />
|
384
|
+
</component>
|
385
|
+
<component name="editorHistoryManager">
|
386
|
+
<entry file="file://$PROJECT_DIR$/api/default_api.rb">
|
387
|
+
<provider selected="true" editor-type-id="text-editor">
|
388
|
+
<state line="298" column="14" selection-start="7497" selection-end="7497" vertical-scroll-proportion="0.0" vertical-offset="4470" max-vertical-offset="4785">
|
389
|
+
<folding />
|
390
|
+
</state>
|
391
|
+
</provider>
|
392
|
+
</entry>
|
393
|
+
<entry file="file://$PROJECT_DIR$/responses/works/includes/manifestations.yaml">
|
394
|
+
<provider selected="true" editor-type-id="text-editor">
|
395
|
+
<state line="6" column="7" selection-start="128" selection-end="128" vertical-scroll-proportion="0.0" vertical-offset="90" max-vertical-offset="1305">
|
396
|
+
<folding />
|
397
|
+
</state>
|
398
|
+
</provider>
|
399
|
+
</entry>
|
400
|
+
<entry file="file://$PROJECT_DIR$/config.ru">
|
401
|
+
<provider selected="true" editor-type-id="text-editor">
|
402
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="120">
|
403
|
+
<folding />
|
404
|
+
</state>
|
405
|
+
</provider>
|
406
|
+
</entry>
|
407
|
+
<entry file="file://$PROJECT_DIR$/.swagger-codegen-ignore">
|
408
|
+
<provider editor-type-id="com.intellij.persistence.database.editor.CsvTableFileEditorProvider">
|
409
|
+
<state />
|
410
|
+
</provider>
|
411
|
+
<provider selected="true" editor-type-id="text-editor">
|
412
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="435">
|
413
|
+
<folding />
|
414
|
+
</state>
|
415
|
+
</provider>
|
416
|
+
</entry>
|
417
|
+
<entry file="file://$PROJECT_DIR$/lib/swaggering.rb">
|
418
|
+
<provider selected="true" editor-type-id="text-editor">
|
419
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2535">
|
420
|
+
<folding />
|
421
|
+
</state>
|
422
|
+
</provider>
|
423
|
+
</entry>
|
424
|
+
<entry file="file://$PROJECT_DIR$/lib/result_set.rb">
|
425
|
+
<provider selected="true" editor-type-id="text-editor">
|
426
|
+
<state line="17" column="75" selection-start="530" selection-end="530" vertical-scroll-proportion="0.0" vertical-offset="255" max-vertical-offset="525">
|
427
|
+
<folding />
|
428
|
+
</state>
|
429
|
+
</provider>
|
430
|
+
</entry>
|
431
|
+
<entry file="file://$PROJECT_DIR$/swagger.yaml">
|
432
|
+
<provider selected="true" editor-type-id="text-editor">
|
433
|
+
<state line="14" column="0" selection-start="259" selection-end="259" vertical-scroll-proportion="0.0" vertical-offset="9291" max-vertical-offset="17025">
|
434
|
+
<folding />
|
435
|
+
</state>
|
436
|
+
</provider>
|
437
|
+
</entry>
|
438
|
+
<entry file="file://$PROJECT_DIR$/my_app.rb">
|
439
|
+
<provider selected="true" editor-type-id="text-editor">
|
440
|
+
<state line="1" column="25" selection-start="52" selection-end="52" vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="285">
|
441
|
+
<folding />
|
442
|
+
</state>
|
443
|
+
</provider>
|
444
|
+
</entry>
|
445
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs193/kernel.rb">
|
446
|
+
<provider selected="true" editor-type-id="text-editor">
|
447
|
+
<state line="545" column="8" selection-start="20959" selection-end="20959" vertical-scroll-proportion="0.0" vertical-offset="7994" max-vertical-offset="29310">
|
448
|
+
<folding />
|
449
|
+
</state>
|
450
|
+
</provider>
|
451
|
+
</entry>
|
452
|
+
<entry file="file://$PROJECT_DIR$/responses/works/result_set.yaml">
|
453
|
+
<provider selected="true" editor-type-id="text-editor">
|
454
|
+
<state line="11" column="28" selection-start="193" selection-end="193" vertical-scroll-proportion="0.0" vertical-offset="165" max-vertical-offset="345">
|
455
|
+
<folding />
|
456
|
+
</state>
|
457
|
+
</provider>
|
458
|
+
</entry>
|
459
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs193/kernel.rb">
|
460
|
+
<provider selected="true" editor-type-id="text-editor">
|
461
|
+
<state line="545" column="8" selection-start="20959" selection-end="20959" vertical-scroll-proportion="0.0" vertical-offset="7994" max-vertical-offset="29310">
|
462
|
+
<folding />
|
463
|
+
</state>
|
464
|
+
</provider>
|
465
|
+
</entry>
|
466
|
+
<entry file="file://$PROJECT_DIR$/lib/swaggering.rb">
|
467
|
+
<provider selected="true" editor-type-id="text-editor">
|
468
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2535">
|
469
|
+
<folding />
|
470
|
+
</state>
|
471
|
+
</provider>
|
472
|
+
</entry>
|
473
|
+
<entry file="file://$PROJECT_DIR$/responses/works/result_set.yaml">
|
474
|
+
<provider selected="true" editor-type-id="text-editor">
|
475
|
+
<state line="11" column="28" selection-start="193" selection-end="193" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="345">
|
476
|
+
<folding />
|
477
|
+
</state>
|
478
|
+
</provider>
|
479
|
+
</entry>
|
480
|
+
<entry file="file://$PROJECT_DIR$/responses/works/includes/manifestations.yaml">
|
481
|
+
<provider selected="true" editor-type-id="text-editor">
|
482
|
+
<state line="6" column="7" selection-start="128" selection-end="128" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1305">
|
483
|
+
<folding />
|
484
|
+
</state>
|
485
|
+
</provider>
|
486
|
+
</entry>
|
487
|
+
<entry file="file://$PROJECT_DIR$/config.ru">
|
488
|
+
<provider selected="true" editor-type-id="text-editor">
|
489
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="545">
|
490
|
+
<folding />
|
491
|
+
</state>
|
492
|
+
</provider>
|
493
|
+
</entry>
|
494
|
+
<entry file="file://$PROJECT_DIR$/lib/result_set.rb">
|
495
|
+
<provider selected="true" editor-type-id="text-editor">
|
496
|
+
<state line="17" column="75" selection-start="530" selection-end="530" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="525">
|
497
|
+
<folding />
|
498
|
+
</state>
|
499
|
+
</provider>
|
500
|
+
</entry>
|
501
|
+
<entry file="file://$PROJECT_DIR$/my_app.rb">
|
502
|
+
<provider selected="true" editor-type-id="text-editor">
|
503
|
+
<state line="1" column="25" selection-start="52" selection-end="52" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="285">
|
504
|
+
<folding />
|
505
|
+
</state>
|
506
|
+
</provider>
|
507
|
+
</entry>
|
508
|
+
<entry file="file://$PROJECT_DIR$/api/default_api.rb">
|
509
|
+
<provider selected="true" editor-type-id="text-editor">
|
510
|
+
<state line="298" column="14" selection-start="7497" selection-end="7497" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="4785">
|
511
|
+
<folding />
|
512
|
+
</state>
|
513
|
+
</provider>
|
514
|
+
</entry>
|
515
|
+
<entry file="file://$PROJECT_DIR$/.swagger-codegen-ignore">
|
516
|
+
<provider editor-type-id="com.intellij.persistence.database.editor.CsvTableFileEditorProvider">
|
517
|
+
<state />
|
518
|
+
</provider>
|
519
|
+
<provider selected="true" editor-type-id="text-editor">
|
520
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="518">
|
521
|
+
<folding />
|
522
|
+
</state>
|
523
|
+
</provider>
|
524
|
+
</entry>
|
525
|
+
<entry file="file://$PROJECT_DIR$/swagger.yaml">
|
526
|
+
<provider selected="true" editor-type-id="text-editor">
|
527
|
+
<state line="661" column="40" selection-start="24648" selection-end="24648" vertical-scroll-proportion="0.7770859" vertical-offset="9291" max-vertical-offset="17025">
|
528
|
+
<folding />
|
529
|
+
</state>
|
530
|
+
</provider>
|
531
|
+
</entry>
|
532
|
+
</component>
|
533
|
+
</project>
|
534
|
+
|