deep_dive 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/deep_dive.iml +47 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +497 -0
- data/.rspec +1 -0
- data/.semver +5 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +72 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +28 -0
- data/Rakefile +63 -0
- data/deep_dive.gemspec +76 -0
- data/lib/deep_dive/deep_dive.rb +125 -0
- data/lib/deep_dive.rb +1 -0
- data/spec/lib/deep_dive/deep_dive_spec.rb +86 -0
- data/spec/spec_helper.rb +12 -0
- metadata +156 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4e99a4fcfbd4ca7a9a15b989359217248f1b570b
|
4
|
+
data.tar.gz: f5102c60b3bdcb53ade0e8c66367eed6827979e8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 99c6d1f3a285dfe3934cd432060a77086ee0fa3a17fce84d9dee51b7a395e8fa5b19cc32e42f1bb5d7376dc58c9cc5881a765c7755a7f25cf35424f988f23276
|
7
|
+
data.tar.gz: ee1dc77cb3a9766eb5f628fc666afe5839a319c48d7632ed63b24d3d1c178b1c62631e99e0aead5fed9103202712c4bad4d0b902d4ca9336c4472b08b9a06ef2
|
data/.document
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
deep_dive
|
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="Build gem into pkg/" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated file" fullCmd="clobber" taksId="clobber" /><RakeTask description="Remove RDoc HTML files" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Start IRB with all runtime dependencies loaded" fullCmd="console[script]" taksId="console[script]" /><RakeGroup description="" fullCmd="" taksId="gemcutter"><RakeTask description="Release gem to Gemcutter" fullCmd="gemcutter:release" taksId="release" /></RakeGroup><RakeTask description="Generate and validate gemspec" fullCmd="gemspec" taksId="gemspec" /><RakeGroup description="" fullCmd="" taksId="gemspec"><RakeTask description="Display the gemspec for debugging purposes, as jeweler knows it (not from the filesystem)" fullCmd="gemspec:debug" taksId="debug" /><RakeTask description="Regenerate the gemspec on the filesystem" fullCmd="gemspec:generate" taksId="generate" /><RakeTask description="Regenerate and validate gemspec, and then commits and pushes to git" fullCmd="gemspec:release" taksId="release" /><RakeTask description="Validates the gemspec on the filesystem" fullCmd="gemspec:validate" taksId="validate" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="git"><RakeTask description="Tag and push release to git" fullCmd="git:release" taksId="release" /></RakeGroup><RakeTask description="Build and install gem using `gem install`" fullCmd="install" taksId="install" /><RakeTask description="Run RSpec code examples" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build RDoc HTML files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Release gem" fullCmd="release" taksId="release" /><RakeTask description="Rebuild RDoc HTML files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="Displays the current version" fullCmd="version" taksId="version" /><RakeGroup description="" fullCmd="" taksId="version"><RakeGroup description="" fullCmd="" taksId="bump"><RakeTask description="Bump the major version by 1" fullCmd="version:bump:major" taksId="major" /><RakeTask description="Bump the a minor version by 1" fullCmd="version:bump:minor" taksId="minor" /><RakeTask description="Bump the patch version by 1" fullCmd="version:bump:patch" taksId="patch" /></RakeGroup><RakeTask description="Writes out an explicit version" fullCmd="version:write" taksId="write" /></RakeGroup><RakeTask description="" fullCmd="console" taksId="console" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="gemspec_required" taksId="gemspec_required" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /><RakeTask description="" fullCmd="version_required" taksId="version_required" /></RakeGroup></Settings>
|
data/.idea/deep_dive.iml
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="NewModuleRootManager">
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
14
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.0.0-p353" jdkType="RUBY_SDK" />
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.3.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.3.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.1.3, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.1.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="faraday (v0.8.8, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="git (v1.2.6, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="github_api (v0.10.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="hashie (v2.0.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="highline (v1.6.20, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="httpauth (v0.2.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="jeweler (v1.8.8, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="jwt (v0.1.8, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.8.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_xml (v0.5.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="multipart-post (v1.2.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.5.10, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="oauth2 (v0.9.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v1.5.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.1.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v2.8.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.8.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.8.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.8.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="semver (v1.0.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.8.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.8.0, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
45
|
+
</component>
|
46
|
+
</module>
|
47
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -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/deep_dive.iml" filepath="$PROJECT_DIR$/.idea/deep_dive.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,497 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="1d0bc731-6bdc-437f-8e78-62445bd62ac9" name="Default" comment="" />
|
5
|
+
<ignored path="deep_dive.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="deep_dive" />
|
23
|
+
</component>
|
24
|
+
<component name="FileEditorManager">
|
25
|
+
<splitter split-orientation="horizontal" split-proportion="0.5">
|
26
|
+
<split-first>
|
27
|
+
<leaf>
|
28
|
+
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
29
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
30
|
+
<provider selected="true" editor-type-id="text-editor">
|
31
|
+
<state line="17" column="0" selection-start="412" selection-end="412" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="345">
|
32
|
+
<folding />
|
33
|
+
</state>
|
34
|
+
</provider>
|
35
|
+
</entry>
|
36
|
+
</file>
|
37
|
+
<file leaf-file-name="deep_dive.rb" pinned="false" current="false" current-in-tab="false">
|
38
|
+
<entry file="file://$PROJECT_DIR$/lib/deep_dive/deep_dive.rb">
|
39
|
+
<provider selected="true" editor-type-id="text-editor">
|
40
|
+
<state line="1" column="25" selection-start="13" selection-end="44" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1965">
|
41
|
+
<folding />
|
42
|
+
</state>
|
43
|
+
</provider>
|
44
|
+
</entry>
|
45
|
+
</file>
|
46
|
+
<file leaf-file-name="deep_dive.gemspec" pinned="false" current="false" current-in-tab="true">
|
47
|
+
<entry file="file://$PROJECT_DIR$/deep_dive.gemspec">
|
48
|
+
<provider selected="true" editor-type-id="text-editor">
|
49
|
+
<state line="49" column="31" selection-start="1740" selection-end="1740" vertical-scroll-proportion="0.74543613" vertical-offset="0" max-vertical-offset="1230">
|
50
|
+
<folding />
|
51
|
+
</state>
|
52
|
+
</provider>
|
53
|
+
</entry>
|
54
|
+
</file>
|
55
|
+
</leaf>
|
56
|
+
</split-first>
|
57
|
+
<split-second>
|
58
|
+
<leaf>
|
59
|
+
<file leaf-file-name="Rakefile" pinned="false" current="true" current-in-tab="true">
|
60
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
61
|
+
<provider selected="true" editor-type-id="text-editor">
|
62
|
+
<state line="19" column="17" selection-start="352" selection-end="352" vertical-scroll-proportion="0.28904665" vertical-offset="0" max-vertical-offset="1035">
|
63
|
+
<folding />
|
64
|
+
</state>
|
65
|
+
</provider>
|
66
|
+
</entry>
|
67
|
+
</file>
|
68
|
+
<file leaf-file-name="README.rdoc" pinned="false" current="false" current-in-tab="false">
|
69
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
70
|
+
<provider selected="true" editor-type-id="text-editor">
|
71
|
+
<state line="28" column="0" selection-start="1336" selection-end="1336" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="510">
|
72
|
+
<folding />
|
73
|
+
</state>
|
74
|
+
</provider>
|
75
|
+
</entry>
|
76
|
+
</file>
|
77
|
+
</leaf>
|
78
|
+
</split-second>
|
79
|
+
</splitter>
|
80
|
+
</component>
|
81
|
+
<component name="FindManager">
|
82
|
+
<FindUsagesManager>
|
83
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
84
|
+
</FindUsagesManager>
|
85
|
+
</component>
|
86
|
+
<component name="IdeDocumentHistory">
|
87
|
+
<option name="changedFiles">
|
88
|
+
<list>
|
89
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
90
|
+
<option value="$PROJECT_DIR$/lib/deep_dive/deep_dive.rb" />
|
91
|
+
<option value="$PROJECT_DIR$/README.rdoc" />
|
92
|
+
<option value="$PROJECT_DIR$/lib/deep_dive/version.rb" />
|
93
|
+
<option value="$PROJECT_DIR$/deep_dive.gemspec" />
|
94
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
95
|
+
</list>
|
96
|
+
</option>
|
97
|
+
</component>
|
98
|
+
<component name="ProjectFrameBounds">
|
99
|
+
<option name="x" value="-3" />
|
100
|
+
<option name="y" value="-3" />
|
101
|
+
<option name="width" value="1926" />
|
102
|
+
<option name="height" value="1172" />
|
103
|
+
</component>
|
104
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
105
|
+
<entry key="Project Default">
|
106
|
+
<profile-state>
|
107
|
+
<expanded-state>
|
108
|
+
<State>
|
109
|
+
<id />
|
110
|
+
</State>
|
111
|
+
</expanded-state>
|
112
|
+
<selected-state>
|
113
|
+
<State>
|
114
|
+
<id>CoffeeScript</id>
|
115
|
+
</State>
|
116
|
+
</selected-state>
|
117
|
+
</profile-state>
|
118
|
+
</entry>
|
119
|
+
</component>
|
120
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
121
|
+
<OptionsSetting value="true" id="Add" />
|
122
|
+
<OptionsSetting value="true" id="Remove" />
|
123
|
+
<OptionsSetting value="true" id="Checkout" />
|
124
|
+
<OptionsSetting value="true" id="Update" />
|
125
|
+
<OptionsSetting value="true" id="Status" />
|
126
|
+
<OptionsSetting value="true" id="Edit" />
|
127
|
+
<ConfirmationsSetting value="0" id="Add" />
|
128
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
129
|
+
</component>
|
130
|
+
<component name="ProjectReloadState">
|
131
|
+
<option name="STATE" value="0" />
|
132
|
+
</component>
|
133
|
+
<component name="ProjectView">
|
134
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
135
|
+
<flattenPackages />
|
136
|
+
<showMembers />
|
137
|
+
<showModules />
|
138
|
+
<showLibraryContents />
|
139
|
+
<hideEmptyPackages />
|
140
|
+
<abbreviatePackageNames />
|
141
|
+
<autoscrollToSource />
|
142
|
+
<autoscrollFromSource />
|
143
|
+
<sortByType />
|
144
|
+
</navigator>
|
145
|
+
<panes>
|
146
|
+
<pane id="ProjectPane">
|
147
|
+
<subPane>
|
148
|
+
<PATH>
|
149
|
+
<PATH_ELEMENT>
|
150
|
+
<option name="myItemId" value="deep_dive" />
|
151
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
152
|
+
</PATH_ELEMENT>
|
153
|
+
</PATH>
|
154
|
+
<PATH>
|
155
|
+
<PATH_ELEMENT>
|
156
|
+
<option name="myItemId" value="deep_dive" />
|
157
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
158
|
+
</PATH_ELEMENT>
|
159
|
+
<PATH_ELEMENT>
|
160
|
+
<option name="myItemId" value="deep_dive" />
|
161
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
162
|
+
</PATH_ELEMENT>
|
163
|
+
</PATH>
|
164
|
+
<PATH>
|
165
|
+
<PATH_ELEMENT>
|
166
|
+
<option name="myItemId" value="deep_dive" />
|
167
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
168
|
+
</PATH_ELEMENT>
|
169
|
+
<PATH_ELEMENT>
|
170
|
+
<option name="myItemId" value="deep_dive" />
|
171
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
172
|
+
</PATH_ELEMENT>
|
173
|
+
<PATH_ELEMENT>
|
174
|
+
<option name="myItemId" value="spec" />
|
175
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
176
|
+
</PATH_ELEMENT>
|
177
|
+
</PATH>
|
178
|
+
<PATH>
|
179
|
+
<PATH_ELEMENT>
|
180
|
+
<option name="myItemId" value="deep_dive" />
|
181
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
182
|
+
</PATH_ELEMENT>
|
183
|
+
<PATH_ELEMENT>
|
184
|
+
<option name="myItemId" value="deep_dive" />
|
185
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
186
|
+
</PATH_ELEMENT>
|
187
|
+
<PATH_ELEMENT>
|
188
|
+
<option name="myItemId" value="spec" />
|
189
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
190
|
+
</PATH_ELEMENT>
|
191
|
+
<PATH_ELEMENT>
|
192
|
+
<option name="myItemId" value="lib" />
|
193
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
194
|
+
</PATH_ELEMENT>
|
195
|
+
<PATH_ELEMENT>
|
196
|
+
<option name="myItemId" value="deep_dive" />
|
197
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
198
|
+
</PATH_ELEMENT>
|
199
|
+
</PATH>
|
200
|
+
<PATH>
|
201
|
+
<PATH_ELEMENT>
|
202
|
+
<option name="myItemId" value="deep_dive" />
|
203
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
204
|
+
</PATH_ELEMENT>
|
205
|
+
<PATH_ELEMENT>
|
206
|
+
<option name="myItemId" value="deep_dive" />
|
207
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
208
|
+
</PATH_ELEMENT>
|
209
|
+
<PATH_ELEMENT>
|
210
|
+
<option name="myItemId" value="lib" />
|
211
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
212
|
+
</PATH_ELEMENT>
|
213
|
+
</PATH>
|
214
|
+
<PATH>
|
215
|
+
<PATH_ELEMENT>
|
216
|
+
<option name="myItemId" value="deep_dive" />
|
217
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
218
|
+
</PATH_ELEMENT>
|
219
|
+
<PATH_ELEMENT>
|
220
|
+
<option name="myItemId" value="deep_dive" />
|
221
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
222
|
+
</PATH_ELEMENT>
|
223
|
+
<PATH_ELEMENT>
|
224
|
+
<option name="myItemId" value="lib" />
|
225
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
226
|
+
</PATH_ELEMENT>
|
227
|
+
<PATH_ELEMENT>
|
228
|
+
<option name="myItemId" value="deep_dive" />
|
229
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
230
|
+
</PATH_ELEMENT>
|
231
|
+
</PATH>
|
232
|
+
</subPane>
|
233
|
+
</pane>
|
234
|
+
<pane id="Scope" />
|
235
|
+
</panes>
|
236
|
+
</component>
|
237
|
+
<component name="PropertiesComponent">
|
238
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
239
|
+
<property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
240
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
241
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
242
|
+
<property name="options.searchVisible" value="true" />
|
243
|
+
</component>
|
244
|
+
<component name="RunManager">
|
245
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
246
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
247
|
+
<module name="" />
|
248
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
249
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
250
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
251
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
252
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
253
|
+
<envs />
|
254
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
255
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
256
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
257
|
+
<COVERAGE_PATTERN ENABLED="true">
|
258
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
259
|
+
</COVERAGE_PATTERN>
|
260
|
+
</EXTENSION>
|
261
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
262
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
263
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
264
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
265
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
266
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
267
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
268
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
269
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
270
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
271
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
272
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
273
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
274
|
+
<method />
|
275
|
+
</configuration>
|
276
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
277
|
+
<module name="" />
|
278
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
279
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
280
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
281
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
282
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
283
|
+
<envs />
|
284
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
285
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
286
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
287
|
+
<COVERAGE_PATTERN ENABLED="true">
|
288
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
289
|
+
</COVERAGE_PATTERN>
|
290
|
+
</EXTENSION>
|
291
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
292
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
293
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
294
|
+
<method />
|
295
|
+
</configuration>
|
296
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug" singleton="true">
|
297
|
+
<method />
|
298
|
+
</configuration>
|
299
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
300
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
301
|
+
<module name="" />
|
302
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
303
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
304
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
305
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
306
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
307
|
+
<envs />
|
308
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
309
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
310
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
311
|
+
<COVERAGE_PATTERN ENABLED="true">
|
312
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
313
|
+
</COVERAGE_PATTERN>
|
314
|
+
</EXTENSION>
|
315
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
316
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
317
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
318
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
319
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
320
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
321
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
322
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
323
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
324
|
+
<method />
|
325
|
+
</configuration>
|
326
|
+
<list size="0" />
|
327
|
+
</component>
|
328
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
329
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false" SSL_PROTOCOLS="all">
|
330
|
+
<option name="USER" value="" />
|
331
|
+
<option name="PASSWORD" value="" />
|
332
|
+
<option name="mySSHConnectionTimeout" value="30000" />
|
333
|
+
<option name="mySSHReadTimeout" value="30000" />
|
334
|
+
<option name="LAST_MERGED_REVISION" />
|
335
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
336
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
337
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
338
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
339
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
340
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
341
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
342
|
+
<option name="FORCE_UPDATE" value="false" />
|
343
|
+
<option name="IGNORE_EXTERNALS" value="false" />
|
344
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
345
|
+
</component>
|
346
|
+
<component name="TaskManager">
|
347
|
+
<task active="true" id="Default" summary="Default task">
|
348
|
+
<changelist id="1d0bc731-6bdc-437f-8e78-62445bd62ac9" name="Default" comment="" />
|
349
|
+
<created>1388361424640</created>
|
350
|
+
<updated>1388361424640</updated>
|
351
|
+
</task>
|
352
|
+
<servers />
|
353
|
+
</component>
|
354
|
+
<component name="TodoView" selected-index="0">
|
355
|
+
<todo-panel id="selected-file">
|
356
|
+
<are-packages-shown value="false" />
|
357
|
+
<are-modules-shown value="false" />
|
358
|
+
<flatten-packages value="false" />
|
359
|
+
<is-autoscroll-to-source value="false" />
|
360
|
+
</todo-panel>
|
361
|
+
<todo-panel id="all">
|
362
|
+
<are-packages-shown value="false" />
|
363
|
+
<are-modules-shown value="false" />
|
364
|
+
<flatten-packages value="false" />
|
365
|
+
<is-autoscroll-to-source value="false" />
|
366
|
+
</todo-panel>
|
367
|
+
<todo-panel id="default-changelist">
|
368
|
+
<are-packages-shown value="false" />
|
369
|
+
<are-modules-shown value="false" />
|
370
|
+
<flatten-packages value="false" />
|
371
|
+
<is-autoscroll-to-source value="false" />
|
372
|
+
</todo-panel>
|
373
|
+
</component>
|
374
|
+
<component name="ToolWindowManager">
|
375
|
+
<frame x="-3" y="-3" width="1926" height="1172" extended-state="6" />
|
376
|
+
<editor active="true" />
|
377
|
+
<layout>
|
378
|
+
<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" />
|
379
|
+
<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="-1" side_tool="false" content_ui="tabs" />
|
380
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294347" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
381
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294347" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
382
|
+
<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" />
|
383
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2497332" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
384
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.2497332" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
385
|
+
<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" />
|
386
|
+
<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" />
|
387
|
+
<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" />
|
388
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294347" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
389
|
+
<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" />
|
390
|
+
<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" />
|
391
|
+
<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" />
|
392
|
+
<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" />
|
393
|
+
<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="0" side_tool="false" content_ui="tabs" />
|
394
|
+
<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" />
|
395
|
+
<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" />
|
396
|
+
</layout>
|
397
|
+
</component>
|
398
|
+
<component name="Vcs.Log.UiProperties">
|
399
|
+
<option name="RECENTLY_FILTERED_USERS">
|
400
|
+
<collection />
|
401
|
+
</option>
|
402
|
+
</component>
|
403
|
+
<component name="VcsContentAnnotationSettings">
|
404
|
+
<option name="myLimit" value="2678400000" />
|
405
|
+
</component>
|
406
|
+
<component name="VcsManagerConfiguration">
|
407
|
+
<option name="myTodoPanelSettings">
|
408
|
+
<TodoPanelSettings />
|
409
|
+
</option>
|
410
|
+
</component>
|
411
|
+
<component name="XDebuggerManager">
|
412
|
+
<breakpoint-manager />
|
413
|
+
</component>
|
414
|
+
<component name="editorHistoryManager">
|
415
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
416
|
+
<provider selected="true" editor-type-id="text-editor">
|
417
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="999">
|
418
|
+
<folding />
|
419
|
+
</state>
|
420
|
+
</provider>
|
421
|
+
</entry>
|
422
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
423
|
+
<provider selected="true" editor-type-id="text-editor">
|
424
|
+
<state line="12" column="0" selection-start="359" selection-end="359" vertical-scroll-proportion="0.18018018" vertical-offset="0" max-vertical-offset="999">
|
425
|
+
<folding />
|
426
|
+
</state>
|
427
|
+
</provider>
|
428
|
+
</entry>
|
429
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
430
|
+
<provider editor-type-id="com.intellij.persistence.database.editor.CsvTableFileEditorProvider">
|
431
|
+
<state />
|
432
|
+
</provider>
|
433
|
+
<provider selected="true" editor-type-id="text-editor">
|
434
|
+
<state line="20" column="0" selection-start="1057" selection-end="1057" vertical-scroll-proportion="0.30832475" vertical-offset="0" max-vertical-offset="973">
|
435
|
+
<folding />
|
436
|
+
</state>
|
437
|
+
</provider>
|
438
|
+
</entry>
|
439
|
+
<entry file="file://$PROJECT_DIR$/.document">
|
440
|
+
<provider selected="true" editor-type-id="text-editor">
|
441
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="999">
|
442
|
+
<folding />
|
443
|
+
</state>
|
444
|
+
</provider>
|
445
|
+
</entry>
|
446
|
+
<entry file="file://$PROJECT_DIR$/lib/deep_dive.rb">
|
447
|
+
<provider selected="true" editor-type-id="text-editor">
|
448
|
+
<state line="1" column="0" selection-start="30" selection-end="30" vertical-scroll-proportion="0.015015015" vertical-offset="0" max-vertical-offset="999">
|
449
|
+
<folding />
|
450
|
+
</state>
|
451
|
+
</provider>
|
452
|
+
</entry>
|
453
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
454
|
+
<provider selected="true" editor-type-id="text-editor">
|
455
|
+
<state line="28" column="0" selection-start="1336" selection-end="1336" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="510">
|
456
|
+
<folding />
|
457
|
+
</state>
|
458
|
+
</provider>
|
459
|
+
</entry>
|
460
|
+
<entry file="file://$PROJECT_DIR$/.semver">
|
461
|
+
<provider selected="true" editor-type-id="text-editor">
|
462
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="999">
|
463
|
+
<folding />
|
464
|
+
</state>
|
465
|
+
</provider>
|
466
|
+
</entry>
|
467
|
+
<entry file="file://$PROJECT_DIR$/lib/deep_dive/deep_dive.rb">
|
468
|
+
<provider selected="true" editor-type-id="text-editor">
|
469
|
+
<state line="1" column="25" selection-start="13" selection-end="44" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1965">
|
470
|
+
<folding />
|
471
|
+
</state>
|
472
|
+
</provider>
|
473
|
+
</entry>
|
474
|
+
<entry file="file://$PROJECT_DIR$/deep_dive.gemspec">
|
475
|
+
<provider selected="true" editor-type-id="text-editor">
|
476
|
+
<state line="49" column="31" selection-start="1740" selection-end="1740" vertical-scroll-proportion="0.74543613" vertical-offset="0" max-vertical-offset="1230">
|
477
|
+
<folding />
|
478
|
+
</state>
|
479
|
+
</provider>
|
480
|
+
</entry>
|
481
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
482
|
+
<provider selected="true" editor-type-id="text-editor">
|
483
|
+
<state line="17" column="0" selection-start="412" selection-end="412" vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="345">
|
484
|
+
<folding />
|
485
|
+
</state>
|
486
|
+
</provider>
|
487
|
+
</entry>
|
488
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
489
|
+
<provider selected="true" editor-type-id="text-editor">
|
490
|
+
<state line="19" column="17" selection-start="352" selection-end="352" vertical-scroll-proportion="0.28904665" vertical-offset="0" max-vertical-offset="1035">
|
491
|
+
<folding />
|
492
|
+
</state>
|
493
|
+
</provider>
|
494
|
+
</entry>
|
495
|
+
</component>
|
496
|
+
</project>
|
497
|
+
|
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|