wbookstore 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/current.iml +35 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +424 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +34 -0
- data/RakeFile.rb +11 -0
- data/coverage/.last_run.json +5 -0
- data/coverage/.resultset.json +146 -0
- data/coverage/.resultset.json.lock +0 -0
- data/coverage/assets/0.10.0/application.css +799 -0
- data/coverage/assets/0.10.0/application.js +1707 -0
- data/coverage/assets/0.10.0/colorbox/border.png +0 -0
- data/coverage/assets/0.10.0/colorbox/controls.png +0 -0
- data/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
- data/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.10.0/favicon_green.png +0 -0
- data/coverage/assets/0.10.0/favicon_red.png +0 -0
- data/coverage/assets/0.10.0/favicon_yellow.png +0 -0
- data/coverage/assets/0.10.0/loading.gif +0 -0
- data/coverage/assets/0.10.0/magnify.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +490 -0
- data/lib/BookStoreCore.rb +52 -0
- data/lib/bookstore.rb +95 -0
- data/lib/bookstore_test.rb +32 -0
- data/lib/fi.json +1 -0
- data/spec/BookStoreCore_spec.rb +38 -0
- data/spec/spec_helper.rb +4 -0
- data/wbookstore.gemspec +17 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 933718bce4a061f2b21207f543ddd3e44001484b
|
4
|
+
data.tar.gz: 38e4f21584428f402ca80d3c84a5d9ff29952646
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9a4547aab37aad4f49b45796033398c43d549889250e33c97775db004c1951c3f273bfea29aed6761cf6856045ef9af0ea6f23cc7699b73bdcada75bc5bffec9
|
7
|
+
data.tar.gz: ba55cb003f5607e80275c9ab859b1e82ebf3c3a2c64fdcf98ca838bc03c60a67af43cefc8dd827e9b35294632d5372791c9a3f3807ee0da46af1ac4a81298317
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
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"><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="test" taksId="test" /></RakeGroup></Settings>
|
data/.idea/current.iml
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<configuration default="false" name="bookstore" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
5
|
+
<module name="current" />
|
6
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
7
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
8
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
9
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
10
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
11
|
+
<envs />
|
12
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
13
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
14
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
15
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="D:\RubyLearning\waqar-bookstore\lib\bookstore.rb" />
|
16
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
17
|
+
<method />
|
18
|
+
</configuration>
|
19
|
+
</component>
|
20
|
+
<component name="NewModuleRootManager">
|
21
|
+
<content url="file://$MODULE_DIR$" />
|
22
|
+
<orderEntry type="inheritedJdk" />
|
23
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.12.5, ruby-2.3.1-p112) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, ruby-2.3.1-p112) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.1.5, ruby-2.3.1-p112) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.5.0, ruby-2.3.1-p112) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.5.2, ruby-2.3.1-p112) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.5.0, ruby-2.3.1-p112) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.5.0, ruby-2.3.1-p112) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.5.0, ruby-2.3.1-p112) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.12.0, ruby-2.3.1-p112) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.10.0, ruby-2.3.1-p112) [gem]" level="application" />
|
34
|
+
</component>
|
35
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
4
|
+
<OptionsSetting value="true" id="Add" />
|
5
|
+
<OptionsSetting value="true" id="Remove" />
|
6
|
+
<OptionsSetting value="true" id="Checkout" />
|
7
|
+
<OptionsSetting value="true" id="Update" />
|
8
|
+
<OptionsSetting value="true" id="Status" />
|
9
|
+
<OptionsSetting value="true" id="Edit" />
|
10
|
+
<ConfirmationsSetting value="0" id="Add" />
|
11
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
12
|
+
</component>
|
13
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.3.1-p112" project-jdk-type="RUBY_SDK" />
|
14
|
+
</project>
|
data/.idea/modules.xml
ADDED
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,424 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="dbe78860-4313-4824-a4fa-382de02c05ee" name="Default" comment="">
|
5
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/bookstore.rb" afterPath="$PROJECT_DIR$/lib/bookstore.rb" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/wbookstore.gemspec" afterPath="$PROJECT_DIR$/wbookstore.gemspec" />
|
8
|
+
</list>
|
9
|
+
<ignored path="current.iws" />
|
10
|
+
<ignored path=".idea/workspace.xml" />
|
11
|
+
<ignored path=".idea/dataSources.local.xml" />
|
12
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
13
|
+
<option name="TRACKING_ENABLED" value="true" />
|
14
|
+
<option name="SHOW_DIALOG" value="false" />
|
15
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
16
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
17
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
18
|
+
</component>
|
19
|
+
<component name="CoverageDataManager">
|
20
|
+
<SUITE FILE_PATH="coverage/current@bookstore.coverage" NAME="bookstore Coverage Results" MODIFIED="1470391038367" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="current" />
|
21
|
+
</component>
|
22
|
+
<component name="CreatePatchCommitExecutor">
|
23
|
+
<option name="PATCH_PATH" value="" />
|
24
|
+
</component>
|
25
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
26
|
+
<component name="FavoritesManager">
|
27
|
+
<favorites_list name="current" />
|
28
|
+
</component>
|
29
|
+
<component name="FileEditorManager">
|
30
|
+
<leaf>
|
31
|
+
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
32
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
33
|
+
<provider selected="true" editor-type-id="text-editor">
|
34
|
+
<state relative-caret-position="51">
|
35
|
+
<caret line="3" column="22" selection-start-line="3" selection-start-column="22" selection-end-line="3" selection-end-column="22" />
|
36
|
+
<folding />
|
37
|
+
</state>
|
38
|
+
</provider>
|
39
|
+
</entry>
|
40
|
+
</file>
|
41
|
+
<file leaf-file-name="wbookstore.gemspec" pinned="false" current-in-tab="true">
|
42
|
+
<entry file="file://$PROJECT_DIR$/wbookstore.gemspec">
|
43
|
+
<provider selected="true" editor-type-id="text-editor">
|
44
|
+
<state relative-caret-position="221">
|
45
|
+
<caret line="13" column="0" selection-start-line="13" selection-start-column="0" selection-end-line="13" selection-end-column="0" />
|
46
|
+
<folding />
|
47
|
+
</state>
|
48
|
+
</provider>
|
49
|
+
</entry>
|
50
|
+
</file>
|
51
|
+
</leaf>
|
52
|
+
</component>
|
53
|
+
<component name="Git.Settings">
|
54
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
55
|
+
</component>
|
56
|
+
<component name="IdeDocumentHistory">
|
57
|
+
<option name="CHANGED_PATHS">
|
58
|
+
<list>
|
59
|
+
<option value="$PROJECT_DIR$/RakeFile.rb" />
|
60
|
+
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
61
|
+
<option value="$PROJECT_DIR$/BookStoreCore.rb" />
|
62
|
+
<option value="$PROJECT_DIR$/bookstore_test.rb" />
|
63
|
+
<option value="$PROJECT_DIR$/spec/BookStoreCore_spec.rb" />
|
64
|
+
<option value="$PROJECT_DIR$/bookstore.rb" />
|
65
|
+
<option value="$PROJECT_DIR$/waqar-bookstore.gemspec" />
|
66
|
+
<option value="$PROJECT_DIR$/lib/bookstore.rb" />
|
67
|
+
<option value="$PROJECT_DIR$/wbookstore.gemspec" />
|
68
|
+
</list>
|
69
|
+
</option>
|
70
|
+
</component>
|
71
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
72
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
73
|
+
<component name="JsGulpfileManager">
|
74
|
+
<detection-done>true</detection-done>
|
75
|
+
<sorting>DEFINITION_ORDER</sorting>
|
76
|
+
</component>
|
77
|
+
<component name="ProjectFrameBounds">
|
78
|
+
<option name="x" value="-8" />
|
79
|
+
<option name="y" value="-8" />
|
80
|
+
<option name="width" value="1456" />
|
81
|
+
<option name="height" value="876" />
|
82
|
+
</component>
|
83
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
84
|
+
<OptionsSetting value="true" id="Add" />
|
85
|
+
<OptionsSetting value="true" id="Remove" />
|
86
|
+
<OptionsSetting value="true" id="Checkout" />
|
87
|
+
<OptionsSetting value="true" id="Update" />
|
88
|
+
<OptionsSetting value="true" id="Status" />
|
89
|
+
<OptionsSetting value="true" id="Edit" />
|
90
|
+
<ConfirmationsSetting value="0" id="Add" />
|
91
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
92
|
+
</component>
|
93
|
+
<component name="ProjectView">
|
94
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
95
|
+
<flattenPackages />
|
96
|
+
<showMembers />
|
97
|
+
<showModules />
|
98
|
+
<showLibraryContents />
|
99
|
+
<hideEmptyPackages />
|
100
|
+
<abbreviatePackageNames />
|
101
|
+
<autoscrollToSource />
|
102
|
+
<autoscrollFromSource />
|
103
|
+
<sortByType />
|
104
|
+
<manualOrder />
|
105
|
+
<foldersAlwaysOnTop value="true" />
|
106
|
+
</navigator>
|
107
|
+
<panes>
|
108
|
+
<pane id="Scratches" />
|
109
|
+
<pane id="Scope" />
|
110
|
+
<pane id="ProjectPane">
|
111
|
+
<subPane>
|
112
|
+
<PATH>
|
113
|
+
<PATH_ELEMENT>
|
114
|
+
<option name="myItemId" value="waqar-bookstore" />
|
115
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
116
|
+
</PATH_ELEMENT>
|
117
|
+
</PATH>
|
118
|
+
<PATH>
|
119
|
+
<PATH_ELEMENT>
|
120
|
+
<option name="myItemId" value="waqar-bookstore" />
|
121
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
122
|
+
</PATH_ELEMENT>
|
123
|
+
<PATH_ELEMENT>
|
124
|
+
<option name="myItemId" value="waqar-bookstore" />
|
125
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
126
|
+
</PATH_ELEMENT>
|
127
|
+
</PATH>
|
128
|
+
<PATH>
|
129
|
+
<PATH_ELEMENT>
|
130
|
+
<option name="myItemId" value="waqar-bookstore" />
|
131
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
132
|
+
</PATH_ELEMENT>
|
133
|
+
<PATH_ELEMENT>
|
134
|
+
<option name="myItemId" value="waqar-bookstore" />
|
135
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
136
|
+
</PATH_ELEMENT>
|
137
|
+
<PATH_ELEMENT>
|
138
|
+
<option name="myItemId" value="lib" />
|
139
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
140
|
+
</PATH_ELEMENT>
|
141
|
+
</PATH>
|
142
|
+
</subPane>
|
143
|
+
</pane>
|
144
|
+
</panes>
|
145
|
+
</component>
|
146
|
+
<component name="PropertiesComponent">
|
147
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
148
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
149
|
+
</component>
|
150
|
+
<component name="RecentsManager">
|
151
|
+
<key name="MoveFile.RECENT_KEYS">
|
152
|
+
<recent name="D:\RubyLearning\waqar-bookstore\lib" />
|
153
|
+
</key>
|
154
|
+
</component>
|
155
|
+
<component name="RunManager" selected="Ruby.bookstore">
|
156
|
+
<configuration default="false" name="bookstore" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
157
|
+
<module name="current" />
|
158
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
159
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
160
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
161
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
162
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
163
|
+
<envs />
|
164
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
165
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
166
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
167
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="D:\RubyLearning\waqar-bookstore\lib\bookstore.rb" />
|
168
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
169
|
+
<method />
|
170
|
+
</configuration>
|
171
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
172
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
173
|
+
<module name="" />
|
174
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
175
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
176
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
177
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
178
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
179
|
+
<envs />
|
180
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
181
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
182
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
183
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
184
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
185
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
186
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
187
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
188
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
189
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
190
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
191
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
192
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
193
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
194
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
195
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
196
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
197
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
198
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
199
|
+
<method />
|
200
|
+
</configuration>
|
201
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
202
|
+
<method />
|
203
|
+
</configuration>
|
204
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
205
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
206
|
+
<module name="" />
|
207
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
208
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
209
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
210
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
211
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
212
|
+
<envs />
|
213
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
214
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
215
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
216
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
217
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
218
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
219
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
220
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
221
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
222
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
223
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
224
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
225
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
226
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
227
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
228
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
229
|
+
<method />
|
230
|
+
</configuration>
|
231
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
232
|
+
<module name="" />
|
233
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
234
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
235
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
236
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
237
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
238
|
+
<envs />
|
239
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
240
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
241
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
242
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
243
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
244
|
+
<method />
|
245
|
+
</configuration>
|
246
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
247
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
248
|
+
<module name="" />
|
249
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
250
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
251
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
252
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
253
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
254
|
+
<envs />
|
255
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
256
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
257
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
258
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
259
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
260
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
261
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
262
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
263
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
264
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
265
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
266
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
267
|
+
<method />
|
268
|
+
</configuration>
|
269
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
270
|
+
<node-interpreter>project</node-interpreter>
|
271
|
+
<node-options />
|
272
|
+
<gulpfile />
|
273
|
+
<tasks />
|
274
|
+
<arguments />
|
275
|
+
<envs />
|
276
|
+
<method />
|
277
|
+
</configuration>
|
278
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
279
|
+
<command value="run-script" />
|
280
|
+
<scripts />
|
281
|
+
<node-interpreter value="project" />
|
282
|
+
<envs />
|
283
|
+
<method />
|
284
|
+
</configuration>
|
285
|
+
<list size="1">
|
286
|
+
<item index="0" class="java.lang.String" itemvalue="Ruby.bookstore" />
|
287
|
+
</list>
|
288
|
+
<recent_temporary>
|
289
|
+
<list size="1">
|
290
|
+
<item index="0" class="java.lang.String" itemvalue="Ruby.bookstore" />
|
291
|
+
</list>
|
292
|
+
</recent_temporary>
|
293
|
+
</component>
|
294
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
295
|
+
<option name="remove_strategy" value="false" />
|
296
|
+
</component>
|
297
|
+
<component name="SvnConfiguration">
|
298
|
+
<configuration />
|
299
|
+
</component>
|
300
|
+
<component name="TaskManager">
|
301
|
+
<task active="true" id="Default" summary="Default task">
|
302
|
+
<changelist id="dbe78860-4313-4824-a4fa-382de02c05ee" name="Default" comment="" />
|
303
|
+
<created>1470383736142</created>
|
304
|
+
<option name="number" value="Default" />
|
305
|
+
<option name="presentableId" value="Default" />
|
306
|
+
<updated>1470383736142</updated>
|
307
|
+
<workItem from="1470383738715" duration="5738000" />
|
308
|
+
<workItem from="1470393516536" duration="97000" />
|
309
|
+
<workItem from="1470393625980" duration="3236000" />
|
310
|
+
<workItem from="1470398956008" duration="27000" />
|
311
|
+
<workItem from="1475567999817" duration="1767000" />
|
312
|
+
</task>
|
313
|
+
<servers />
|
314
|
+
</component>
|
315
|
+
<component name="TimeTrackingManager">
|
316
|
+
<option name="totallyTimeSpent" value="10865000" />
|
317
|
+
</component>
|
318
|
+
<component name="ToolWindowManager">
|
319
|
+
<frame x="-8" y="-8" width="1456" height="876" extended-state="6" />
|
320
|
+
<editor active="true" />
|
321
|
+
<layout>
|
322
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.24355301" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
323
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
324
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
325
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
326
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32974428" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
327
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
328
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.2689394" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
329
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
330
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
331
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
332
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
333
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
334
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
335
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
336
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
337
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
338
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
339
|
+
</layout>
|
340
|
+
</component>
|
341
|
+
<component name="Vcs.Log.UiProperties">
|
342
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
343
|
+
<collection />
|
344
|
+
</option>
|
345
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
346
|
+
<collection />
|
347
|
+
</option>
|
348
|
+
</component>
|
349
|
+
<component name="VcsContentAnnotationSettings">
|
350
|
+
<option name="myLimit" value="2678400000" />
|
351
|
+
</component>
|
352
|
+
<component name="XDebuggerManager">
|
353
|
+
<breakpoint-manager />
|
354
|
+
<watches-manager />
|
355
|
+
</component>
|
356
|
+
<component name="editorHistoryManager">
|
357
|
+
<entry file="file://$PROJECT_DIR$/RakeFile.rb">
|
358
|
+
<provider selected="true" editor-type-id="text-editor">
|
359
|
+
<state relative-caret-position="0">
|
360
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
361
|
+
</state>
|
362
|
+
</provider>
|
363
|
+
</entry>
|
364
|
+
<entry file="file://$PROJECT_DIR$/RakeFile.rb">
|
365
|
+
<provider selected="true" editor-type-id="text-editor">
|
366
|
+
<state relative-caret-position="51">
|
367
|
+
<caret line="3" column="18" selection-start-line="3" selection-start-column="18" selection-end-line="3" selection-end-column="18" />
|
368
|
+
</state>
|
369
|
+
</provider>
|
370
|
+
</entry>
|
371
|
+
<entry file="file://$PROJECT_DIR$/lib/bookstore_test.rb">
|
372
|
+
<provider selected="true" editor-type-id="text-editor">
|
373
|
+
<state relative-caret-position="102">
|
374
|
+
<caret line="6" column="11" selection-start-line="6" selection-start-column="11" selection-end-line="6" selection-end-column="11" />
|
375
|
+
</state>
|
376
|
+
</provider>
|
377
|
+
</entry>
|
378
|
+
<entry file="file://$PROJECT_DIR$/lib/BookStoreCore.rb">
|
379
|
+
<provider selected="true" editor-type-id="text-editor">
|
380
|
+
<state relative-caret-position="628">
|
381
|
+
<caret line="50" column="5" selection-start-line="50" selection-start-column="5" selection-end-line="50" selection-end-column="5" />
|
382
|
+
</state>
|
383
|
+
</provider>
|
384
|
+
</entry>
|
385
|
+
<entry file="file://$PROJECT_DIR$/spec/BookStoreCore_spec.rb">
|
386
|
+
<provider selected="true" editor-type-id="text-editor">
|
387
|
+
<state relative-caret-position="51">
|
388
|
+
<caret line="3" column="25" selection-start-line="3" selection-start-column="25" selection-end-line="3" selection-end-column="25" />
|
389
|
+
</state>
|
390
|
+
</provider>
|
391
|
+
</entry>
|
392
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
393
|
+
<provider selected="true" editor-type-id="text-editor">
|
394
|
+
<state relative-caret-position="51">
|
395
|
+
<caret line="3" column="33" selection-start-line="3" selection-start-column="33" selection-end-line="3" selection-end-column="33" />
|
396
|
+
</state>
|
397
|
+
</provider>
|
398
|
+
</entry>
|
399
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
400
|
+
<provider selected="true" editor-type-id="text-editor">
|
401
|
+
<state relative-caret-position="51">
|
402
|
+
<caret line="3" column="22" selection-start-line="3" selection-start-column="22" selection-end-line="3" selection-end-column="22" />
|
403
|
+
<folding />
|
404
|
+
</state>
|
405
|
+
</provider>
|
406
|
+
</entry>
|
407
|
+
<entry file="file://$PROJECT_DIR$/lib/bookstore.rb">
|
408
|
+
<provider selected="true" editor-type-id="text-editor">
|
409
|
+
<state relative-caret-position="17">
|
410
|
+
<caret line="1" column="9" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="9" />
|
411
|
+
<folding />
|
412
|
+
</state>
|
413
|
+
</provider>
|
414
|
+
</entry>
|
415
|
+
<entry file="file://$PROJECT_DIR$/wbookstore.gemspec">
|
416
|
+
<provider selected="true" editor-type-id="text-editor">
|
417
|
+
<state relative-caret-position="221">
|
418
|
+
<caret line="13" column="0" selection-start-line="13" selection-start-column="0" selection-end-line="13" selection-end-column="0" />
|
419
|
+
<folding />
|
420
|
+
</state>
|
421
|
+
</provider>
|
422
|
+
</entry>
|
423
|
+
</component>
|
424
|
+
</project>
|