loader 2.0.0 → 2.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b01d5a136a9fe1cd41d33fb6abd0d96f550cb170
4
- data.tar.gz: d7bfe5070965fa0edde43fefa3fce533e3e9901a
3
+ metadata.gz: 7ad3783bf1820c1767808c4f18415a836a3886d1
4
+ data.tar.gz: e249da6f02da8f4ad0fd54b9d56b5856c6687a06
5
5
  SHA512:
6
- metadata.gz: 1126d66a04b941e43a2a00e3ed4ba72563e7bbe7edd4564fa4e8e621e84ec552565b6a13b05ddfd4786ae9b113940ddd797126c140462bf9ec33c1c7263b5e5f
7
- data.tar.gz: 51c4cbb143628f513e0541da49b7ca0d1d88af1535ffed681de23bb9a2ccfffe5cd439187ca3a98f19d3d7e307862e6341589f857715bfbc36c94d528098027a
6
+ metadata.gz: 985dae6027aec5cd31181e046ccec617a9365e2415af9554b47b2644b8b6344e106968a13ad0c374864b3f803778e784834e55290cc7f38c94b2580e39b2e4b1
7
+ data.tar.gz: 55d8ebc7f30b4814ae6ea36d361069f6dc230f99720654bb791dcad77640c77b59e5df2bce938612fc101df005eba146fbdef8955d9e7cff7a792c50b55b4c66
data/README.md CHANGED
@@ -88,7 +88,7 @@ simple as this:
88
88
  # lib/bootstrap
89
89
  ```ruby
90
90
 
91
- require 'loader'
91
+ require 'loader/autoload'
92
92
 
93
93
  # from this point missing constants will be searched by file system path that is based on Object namespace
94
94
  Loader.autoload
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.0
1
+ 2.1.0
@@ -7,6 +7,8 @@ module Loader
7
7
  def pwd
8
8
  if !!ENV['BUNDLE_GEMFILE']
9
9
  ENV['BUNDLE_GEMFILE'].split(File::Separator)[0..-2].join(File::Separator)
10
+ elsif defined?(Rails) && Rails.respond_to?(:root) && Rails.root
11
+ Rails.root.to_s
10
12
  else
11
13
  Dir.pwd
12
14
  end
@@ -14,12 +16,30 @@ module Loader
14
16
 
15
17
  def try_load_by(caller_class,name)
16
18
  levels = generate_levels(caller_class, name)
17
- ['lib',nil].each do |folder|
18
- levels.map{|str| File.join(*[pwd,folder,"#{underscore(str)}.rb"].compact)
19
- }.sort{|a,b| b.length <=> a.length }.each do |path|
20
- return if File.exist?(path) && require(path)
19
+ [
20
+ nil,
21
+ 'lib',
22
+ File.join('{application,app,api}','*'),
23
+ File.join('**','*')
24
+ ].each do |folder|
25
+ return if load_by_folder(levels,folder)
26
+ end
27
+ end
28
+
29
+ def load_by_folder(levels,folder=nil)
30
+
31
+ desc_ary(levels.map{|str| File.join(*[pwd,folder,"#{underscore(str)}.rb"].compact)}).each do |path_constructor|
32
+ desc_ary(Dir.glob(path_constructor)).each do |path|
33
+ return true if File.exist?(path) && require(path)
21
34
  end
22
35
  end
36
+
37
+ return false
38
+
39
+ end
40
+
41
+ def desc_ary(array)
42
+ array.sort{|a,b| b.length <=> a.length }
23
43
  end
24
44
 
25
45
  def generate_levels(klass, name)
@@ -0,0 +1,3 @@
1
+ class SamplesController
2
+
3
+ end
@@ -45,6 +45,16 @@ describe Loader::AutoLoad do
45
45
  end
46
46
  }.call.is_a?(Exception).must_be :==, false
47
47
 
48
+ -> {
49
+ begin
50
+
51
+ SamplesController
52
+
53
+ rescue Exception => e
54
+ e
55
+ end
56
+ }.call.is_a?(Exception).must_be :==, false
57
+
48
58
  -> {
49
59
  begin
50
60
  BOOOM
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loader
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Luzsi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-29 00:00:00.000000000 Z
11
+ date: 2015-02-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: " easy to use File loader that allow directories/project both Lazy Load
14
14
  and Eager load for files and constants. The Eager load for relative directory made
@@ -28,7 +28,6 @@ files:
28
28
  - ".idea/modules.xml"
29
29
  - ".idea/scopes/scope_settings.xml"
30
30
  - ".idea/vcs.xml"
31
- - ".idea/workspace.xml"
32
31
  - Gemfile
33
32
  - LICENSE
34
33
  - README.md
@@ -48,6 +47,7 @@ files:
48
47
  - lib/loader/meta.rb
49
48
  - lib/loader/require.rb
50
49
  - loader.gemspec
50
+ - test/app/controllers/samples_controller.rb
51
51
  - test/helper.rb
52
52
  - test/lib/cat.rb
53
53
  - test/lib/cat/sup.rb
@@ -82,6 +82,7 @@ summary: easy to use File loader that allow directories/project both Lazy Load a
82
82
  Eager load for files and constants. The Eager load for relative directory made for
83
83
  gems by default
84
84
  test_files:
85
+ - test/app/controllers/samples_controller.rb
85
86
  - test/helper.rb
86
87
  - test/lib/cat.rb
87
88
  - test/lib/cat/sup.rb
data/.idea/workspace.xml DELETED
@@ -1,429 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="5c648dae-24a7-407a-9171-382a75ebaebc" name="Default" comment="">
5
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/loader/autoload.rb" />
6
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/lib/cat.rb" />
7
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/lib/dog.rb" />
8
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/helper.rb" />
9
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/lib/cat/sup.rb" />
10
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/lib/cat/tail.rb" />
11
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/test/test_autoload.rb" />
12
- <change type="DELETED" beforePath="$PROJECT_DIR$/lib/loader/hash.rb" afterPath="" />
13
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.gitignore" afterPath="$PROJECT_DIR$/.gitignore" />
14
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
15
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/VERSION" afterPath="$PROJECT_DIR$/VERSION" />
16
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/loader.gemspec" afterPath="$PROJECT_DIR$/loader.gemspec" />
17
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/loader.rb" afterPath="$PROJECT_DIR$/lib/loader.rb" />
18
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/loader/meta.rb" afterPath="$PROJECT_DIR$/lib/loader/meta.rb" />
19
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/test/test.rb" afterPath="$PROJECT_DIR$/test/test.rb" />
20
- </list>
21
- <ignored path="loader.iws" />
22
- <ignored path=".idea/workspace.xml" />
23
- <ignored path=".idea/dataSources.local.xml" />
24
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
25
- <option name="TRACKING_ENABLED" value="true" />
26
- <option name="SHOW_DIALOG" value="false" />
27
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
28
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
29
- <option name="LAST_RESOLUTION" value="IGNORE" />
30
- </component>
31
- <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
32
- <component name="CreatePatchCommitExecutor">
33
- <option name="PATCH_PATH" value="" />
34
- </component>
35
- <component name="DaemonCodeAnalyzer">
36
- <disable_hints />
37
- </component>
38
- <component name="FavoritesManager">
39
- <favorites_list name="loader" />
40
- </component>
41
- <component name="FileEditorManager">
42
- <leaf />
43
- </component>
44
- <component name="Git.Settings">
45
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
46
- </component>
47
- <component name="IdeDocumentHistory">
48
- <option name="CHANGED_PATHS">
49
- <list>
50
- <option value="$PROJECT_DIR$/lib/loader/hash.rb" />
51
- <option value="$PROJECT_DIR$/lib/loader.rb" />
52
- <option value="$PROJECT_DIR$/test/test.rb" />
53
- <option value="$PROJECT_DIR$/test/helper.rb" />
54
- <option value="$PROJECT_DIR$/test/lib/cat.rb" />
55
- <option value="$PROJECT_DIR$/test/lib/cat/tail.rb" />
56
- <option value="$PROJECT_DIR$/lib/loader/autoload.rb" />
57
- <option value="$PROJECT_DIR$/loader.gemspec" />
58
- <option value="$PROJECT_DIR$/lib/loader/meta.rb" />
59
- <option value="$PROJECT_DIR$/test/lib/cat/sup.rb" />
60
- <option value="$PROJECT_DIR$/README.md" />
61
- <option value="$PROJECT_DIR$/test/lib/dog.rb" />
62
- <option value="$PROJECT_DIR$/test/test_autoload.rb" />
63
- </list>
64
- </option>
65
- </component>
66
- <component name="JsGulpfileManager">
67
- <detection-done>true</detection-done>
68
- </component>
69
- <component name="ProjectFrameBounds">
70
- <option name="x" value="-2" />
71
- <option name="y" value="-1" />
72
- <option name="width" value="1370" />
73
- <option name="height" value="741" />
74
- </component>
75
- <component name="ProjectLevelVcsManager" settingsEditedManually="false">
76
- <OptionsSetting value="true" id="Add" />
77
- <OptionsSetting value="true" id="Remove" />
78
- <OptionsSetting value="true" id="Checkout" />
79
- <OptionsSetting value="true" id="Update" />
80
- <OptionsSetting value="true" id="Status" />
81
- <OptionsSetting value="true" id="Edit" />
82
- <ConfirmationsSetting value="0" id="Add" />
83
- <ConfirmationsSetting value="0" id="Remove" />
84
- </component>
85
- <component name="ProjectView">
86
- <navigator currentView="ProjectPane" proportions="" version="1">
87
- <flattenPackages />
88
- <showMembers />
89
- <showModules />
90
- <showLibraryContents />
91
- <hideEmptyPackages />
92
- <abbreviatePackageNames />
93
- <autoscrollToSource />
94
- <autoscrollFromSource />
95
- <sortByType />
96
- </navigator>
97
- <panes>
98
- <pane id="ProjectPane">
99
- <subPane>
100
- <PATH>
101
- <PATH_ELEMENT>
102
- <option name="myItemId" value="loader" />
103
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
104
- </PATH_ELEMENT>
105
- </PATH>
106
- <PATH>
107
- <PATH_ELEMENT>
108
- <option name="myItemId" value="loader" />
109
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
110
- </PATH_ELEMENT>
111
- <PATH_ELEMENT>
112
- <option name="myItemId" value="loader" />
113
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
114
- </PATH_ELEMENT>
115
- </PATH>
116
- <PATH>
117
- <PATH_ELEMENT>
118
- <option name="myItemId" value="loader" />
119
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
120
- </PATH_ELEMENT>
121
- <PATH_ELEMENT>
122
- <option name="myItemId" value="loader" />
123
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
124
- </PATH_ELEMENT>
125
- <PATH_ELEMENT>
126
- <option name="myItemId" value="test" />
127
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
128
- </PATH_ELEMENT>
129
- </PATH>
130
- <PATH>
131
- <PATH_ELEMENT>
132
- <option name="myItemId" value="loader" />
133
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
134
- </PATH_ELEMENT>
135
- <PATH_ELEMENT>
136
- <option name="myItemId" value="loader" />
137
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
138
- </PATH_ELEMENT>
139
- <PATH_ELEMENT>
140
- <option name="myItemId" value="test" />
141
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
142
- </PATH_ELEMENT>
143
- <PATH_ELEMENT>
144
- <option name="myItemId" value="lib" />
145
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
146
- </PATH_ELEMENT>
147
- </PATH>
148
- </subPane>
149
- </pane>
150
- <pane id="Scope" />
151
- </panes>
152
- </component>
153
- <component name="PropertiesComponent">
154
- <property name="options.lastSelected" value="preferences.general" />
155
- <property name="options.splitter.main.proportions" value="0.3" />
156
- <property name="options.splitter.details.proportions" value="0.2" />
157
- <property name="WebServerToolWindowFactoryState" value="false" />
158
- <property name="last_opened_file_path" value="$PROJECT_DIR$" />
159
- </component>
160
- <component name="RunManager">
161
- <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
162
- <predefined_log_file id="RUBY_RSPEC" enabled="true" />
163
- <module name="" />
164
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
165
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
166
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
167
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
168
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
169
- <envs />
170
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
171
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
172
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
173
- <COVERAGE_PATTERN ENABLED="true">
174
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
175
- </COVERAGE_PATTERN>
176
- </EXTENSION>
177
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
178
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
179
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
180
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
181
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
182
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
183
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
184
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
185
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
186
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
187
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
188
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
189
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
190
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
191
- <method />
192
- </configuration>
193
- <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
194
- <module name="" />
195
- <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
196
- <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
197
- <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
198
- <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
199
- <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
200
- <envs />
201
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
202
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
203
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
204
- <COVERAGE_PATTERN ENABLED="true">
205
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
206
- </COVERAGE_PATTERN>
207
- </EXTENSION>
208
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
209
- <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
210
- <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
211
- <method />
212
- </configuration>
213
- <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
214
- <method />
215
- </configuration>
216
- <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
217
- <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
218
- <module name="" />
219
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
220
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
221
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
222
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
223
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
224
- <envs />
225
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
226
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
227
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
228
- <COVERAGE_PATTERN ENABLED="true">
229
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
230
- </COVERAGE_PATTERN>
231
- </EXTENSION>
232
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
233
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
234
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
235
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
236
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
237
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
238
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
239
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
240
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
241
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
242
- <method />
243
- </configuration>
244
- <configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
245
- <method />
246
- </configuration>
247
- <list size="0" />
248
- </component>
249
- <component name="ShelveChangesManager" show_recycled="false" />
250
- <component name="TaskManager">
251
- <task active="true" id="Default" summary="Default task">
252
- <changelist id="5c648dae-24a7-407a-9171-382a75ebaebc" name="Default" comment="" />
253
- <created>1422571116390</created>
254
- <option name="number" value="Default" />
255
- <updated>1422571116390</updated>
256
- </task>
257
- <servers />
258
- </component>
259
- <component name="ToolWindowManager">
260
- <frame x="-2" y="-1" width="1370" height="741" extended-state="0" />
261
- <editor active="false" />
262
- <layout>
263
- <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" />
264
- <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" />
265
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32886904" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
266
- <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" />
267
- <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" />
268
- <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" />
269
- <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" />
270
- <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" />
271
- <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" />
272
- <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
273
- <window_info id="Application Servers" 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" />
274
- <window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24963397" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
275
- <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" />
276
- <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" />
277
- <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" />
278
- <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" />
279
- <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" />
280
- <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" />
281
- <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" />
282
- </layout>
283
- </component>
284
- <component name="Vcs.Log.UiProperties">
285
- <option name="RECENTLY_FILTERED_USER_GROUPS">
286
- <collection />
287
- </option>
288
- <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
289
- <collection />
290
- </option>
291
- </component>
292
- <component name="VcsContentAnnotationSettings">
293
- <option name="myLimit" value="2678400000" />
294
- </component>
295
- <component name="VcsManagerConfiguration">
296
- <option name="myTodoPanelSettings">
297
- <TodoPanelSettings />
298
- </option>
299
- </component>
300
- <component name="XDebuggerManager">
301
- <breakpoint-manager />
302
- <watches-manager />
303
- </component>
304
- <component name="editorHistoryManager">
305
- <entry file="file://$PROJECT_DIR$/lib/loader.rb">
306
- <provider selected="true" editor-type-id="text-editor">
307
- <state vertical-scroll-proportion="0.04245283" vertical-offset="0" max-vertical-offset="424">
308
- <caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
309
- <folding />
310
- </state>
311
- </provider>
312
- </entry>
313
- <entry file="file://$PROJECT_DIR$/test/helper.rb">
314
- <provider selected="true" editor-type-id="text-editor">
315
- <state vertical-scroll-proportion="0.04245283" vertical-offset="0" max-vertical-offset="424">
316
- <caret line="1" column="26" selection-start-line="1" selection-start-column="26" selection-end-line="1" selection-end-column="26" />
317
- <folding />
318
- </state>
319
- </provider>
320
- </entry>
321
- <entry file="file://$PROJECT_DIR$/test/lib/cat/tail.rb">
322
- <provider selected="true" editor-type-id="text-editor">
323
- <state vertical-scroll-proportion="0.055813953" vertical-offset="0" max-vertical-offset="645">
324
- <caret line="2" column="4" selection-start-line="2" selection-start-column="4" selection-end-line="2" selection-end-column="4" />
325
- <folding />
326
- </state>
327
- </provider>
328
- </entry>
329
- <entry file="file://$PROJECT_DIR$/test/lib/cat.rb">
330
- <provider selected="true" editor-type-id="text-editor">
331
- <state vertical-scroll-proportion="0.027906977" vertical-offset="0" max-vertical-offset="645">
332
- <caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
333
- <folding />
334
- </state>
335
- </provider>
336
- </entry>
337
- <entry file="file://$PROJECT_DIR$/lib/loader/autoload.rb">
338
- <provider selected="true" editor-type-id="text-editor">
339
- <state vertical-scroll-proportion="0.41705427" vertical-offset="55" max-vertical-offset="1440">
340
- <caret line="18" column="63" selection-start-line="18" selection-start-column="63" selection-end-line="18" selection-end-column="63" />
341
- <folding />
342
- </state>
343
- </provider>
344
- </entry>
345
- <entry file="file://$PROJECT_DIR$/test/test.rb">
346
- <provider selected="true" editor-type-id="text-editor">
347
- <state vertical-scroll-proportion="0.027906977" vertical-offset="0" max-vertical-offset="645">
348
- <caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
349
- <folding />
350
- </state>
351
- </provider>
352
- </entry>
353
- <entry file="file://$PROJECT_DIR$/Gemfile">
354
- <provider selected="true" editor-type-id="text-editor">
355
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="645">
356
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
357
- <folding />
358
- </state>
359
- </provider>
360
- </entry>
361
- <entry file="file://$PROJECT_DIR$/test/lib/cat/sup.rb">
362
- <provider selected="true" editor-type-id="text-editor">
363
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="424">
364
- <caret line="0" column="18" selection-start-line="0" selection-start-column="18" selection-end-line="0" selection-end-column="18" />
365
- <folding />
366
- </state>
367
- </provider>
368
- </entry>
369
- <entry file="file://$PROJECT_DIR$/lib/loader/meta.rb">
370
- <provider selected="true" editor-type-id="text-editor">
371
- <state vertical-scroll-proportion="0.1273585" vertical-offset="0" max-vertical-offset="1512">
372
- <caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
373
- <folding />
374
- </state>
375
- </provider>
376
- </entry>
377
- <entry file="file://$PROJECT_DIR$/lib/loader/require.rb">
378
- <provider selected="true" editor-type-id="text-editor">
379
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1476">
380
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
381
- <folding />
382
- </state>
383
- </provider>
384
- </entry>
385
- <entry file="file://$PROJECT_DIR$/test/lib/dog.rb">
386
- <provider selected="true" editor-type-id="text-editor">
387
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="424">
388
- <caret line="0" column="9" selection-start-line="0" selection-start-column="9" selection-end-line="0" selection-end-column="9" />
389
- <folding />
390
- </state>
391
- </provider>
392
- </entry>
393
- <entry file="file://$PROJECT_DIR$/test/test_autoload.rb">
394
- <provider selected="true" editor-type-id="text-editor">
395
- <state vertical-scroll-proportion="0.49056605" vertical-offset="530" max-vertical-offset="1170">
396
- <caret line="41" column="10" selection-start-line="41" selection-start-column="10" selection-end-line="41" selection-end-column="10" />
397
- <folding />
398
- </state>
399
- </provider>
400
- </entry>
401
- <entry file="file://$PROJECT_DIR$/LICENSE">
402
- <provider editor-type-id="com.intellij.database.editor.CsvTableFileEditorProvider">
403
- <state />
404
- </provider>
405
- <provider selected="true" editor-type-id="text-editor">
406
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="468">
407
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
408
- <folding />
409
- </state>
410
- </provider>
411
- </entry>
412
- <entry file="file://$PROJECT_DIR$/loader.gemspec">
413
- <provider selected="true" editor-type-id="text-editor">
414
- <state vertical-scroll-proportion="0.21167883" vertical-offset="57" max-vertical-offset="522">
415
- <caret line="8" column="71" selection-start-line="8" selection-start-column="71" selection-end-line="8" selection-end-column="71" />
416
- <folding />
417
- </state>
418
- </provider>
419
- </entry>
420
- <entry file="file://$PROJECT_DIR$/README.md">
421
- <provider selected="true" editor-type-id="text-editor">
422
- <state vertical-scroll-proportion="0.7293233" vertical-offset="1617" max-vertical-offset="2016">
423
- <caret line="106" column="3" selection-start-line="106" selection-start-column="3" selection-end-line="106" selection-end-column="3" />
424
- <folding />
425
- </state>
426
- </provider>
427
- </entry>
428
- </component>
429
- </project>