autoloaded 1.2.0 → 1.3.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 +4 -4
- data/.travis.yml +1 -1
- data/History.md +4 -0
- data/README.md +411 -60
- data/autoloaded.gemspec +19 -14
- data/lib/autoloaded.rb +104 -91
- data/lib/autoloaded/autoloader.rb +260 -0
- data/lib/autoloaded/compatibility/refine_and_using.rb +2 -0
- data/lib/autoloaded/constant.rb +5 -2
- data/lib/autoloaded/deprecation.rb +50 -0
- data/lib/autoloaded/inflection.rb +71 -0
- data/lib/autoloaded/load_pathed_directory.rb +112 -0
- data/lib/autoloaded/refine.rb +7 -1
- data/lib/autoloaded/refine/string.rb +7 -0
- data/lib/autoloaded/refine/string/to_source_filename.rb +12 -0
- data/lib/autoloaded/specification.rb +97 -0
- data/lib/autoloaded/specifications.rb +66 -0
- data/lib/autoloaded/version.rb +3 -1
- data/lib/autoloaded/warning.rb +125 -0
- data/spec/autoloaded/autoloader_spec.rb +469 -0
- data/spec/autoloaded/constant_spec.rb +0 -2
- data/spec/autoloaded/deprecation_spec.rb +23 -0
- data/spec/autoloaded/inflection_spec.rb +30 -0
- data/spec/autoloaded/load_pathed_directory_spec.rb +120 -0
- data/spec/autoloaded/refine/string/to_source_filename_spec.rb +0 -2
- data/spec/autoloaded/specification_spec.rb +98 -0
- data/spec/autoloaded/specifications_spec.rb +191 -0
- data/spec/autoloaded/version_spec.rb +0 -2
- data/spec/autoloaded/warning_spec.rb +115 -0
- data/spec/autoloaded_macro_sharedspec.rb +24 -0
- data/spec/autoloaded_spec.rb +277 -95
- data/spec/fixtures/autoloaded_with_conventional_filename.rb +3 -1
- data/spec/fixtures/autoloaded_with_conventional_filename/nested.rb +12 -1
- data/spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb +9 -0
- data/spec/fixtures/autoloaded_with_unconventional_filename.rb +12 -0
- data/spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb +7 -0
- data/spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb +1 -0
- data/spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb +5 -0
- data/spec/fixtures/not_autoloaded/nested.rb +1 -0
- data/spec/fixtures/old_api/autoloaded_with_conventional_filename.rb +10 -0
- data/spec/fixtures/old_api/autoloaded_with_conventional_filename/N-est-ed.rb +1 -0
- data/spec/fixtures/old_api/autoloaded_with_conventional_filename/nest_ed.rb +1 -0
- data/spec/fixtures/old_api/autoloaded_with_conventional_filename/nested.rb +5 -0
- data/spec/fixtures/old_api/autoloaded_with_conventional_filename/old_school_autoload.rb +5 -0
- data/spec/fixtures/{autoloaded_with_conventional_filename_only.rb → old_api/autoloaded_with_conventional_filename_only.rb} +1 -1
- data/spec/fixtures/{autoloaded_with_conventional_filename_only → old_api/autoloaded_with_conventional_filename_only}/nested.rb +0 -0
- data/spec/fixtures/{autoloaded_with_conventional_filename_only → old_api/autoloaded_with_conventional_filename_only}/old_school_autoload.rb +0 -0
- data/spec/fixtures/{autoloaded_with_unconventional_filenames.rb → old_api/autoloaded_with_unconventional_filenames.rb} +1 -1
- data/spec/fixtures/{autoloaded_with_unconventional_filenames → old_api/autoloaded_with_unconventional_filenames}/N-est-ed.rb +0 -0
- data/spec/fixtures/{autoloaded_with_unconventional_filenames → old_api/autoloaded_with_unconventional_filenames}/nest_ed.rb +0 -0
- data/spec/fixtures/{autoloaded_with_unconventional_filenames → old_api/autoloaded_with_unconventional_filenames}/old_school_autoload.rb +0 -0
- data/spec/fixtures/old_api/not_autoloaded.rb +6 -0
- data/spec/fixtures/old_api/not_autoloaded/nested.rb +1 -0
- data/spec/fixtures/old_api/not_autoloaded/old_school_autoload.rb +5 -0
- data/spec/matchers.rb +4 -33
- data/spec/spec_helper.rb +2 -0
- metadata +95 -41
@@ -1,5 +1,16 @@
|
|
1
|
+
require 'autoloaded'
|
2
|
+
|
1
3
|
module AutoloadedWithConventionalFilename
|
2
4
|
|
3
|
-
module Nested
|
5
|
+
module Nested
|
6
|
+
|
7
|
+
# module DoublyNested; end
|
8
|
+
# autoload :DoublyNested, 'somewhere/else'
|
9
|
+
|
10
|
+
::Autoloaded.module { }
|
11
|
+
|
12
|
+
DoublyNested
|
13
|
+
|
14
|
+
end
|
4
15
|
|
5
16
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'autoloaded'
|
2
|
+
|
3
|
+
module AutoloadedWithUnconventionalFilename
|
4
|
+
|
5
|
+
autoload :OldSchoolAutoload,
|
6
|
+
'fixtures/autoloaded_with_unconventional_filename/old_school_autoload'
|
7
|
+
|
8
|
+
::Autoloaded.module do |autoloaded|
|
9
|
+
autoloaded.only 'N-est-ed' => [:Nested1, :Nested2]
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
raise "The file #{__FILE__} should not have been loaded"
|
@@ -0,0 +1 @@
|
|
1
|
+
raise "The file #{__FILE__} should not have been loaded"
|
@@ -0,0 +1 @@
|
|
1
|
+
raise "The file #{__FILE__} should not have been loaded"
|
@@ -0,0 +1 @@
|
|
1
|
+
raise "The file #{__FILE__} should not have been loaded"
|
@@ -3,7 +3,7 @@ require 'autoloaded'
|
|
3
3
|
module AutoloadedWithConventionalFilenameOnly
|
4
4
|
|
5
5
|
autoload :OldSchoolAutoload,
|
6
|
-
'fixtures/autoloaded_with_conventional_filename_only/old_school_autoload'
|
6
|
+
'fixtures/old_api/autoloaded_with_conventional_filename_only/old_school_autoload'
|
7
7
|
|
8
8
|
extend ::Autoloaded
|
9
9
|
|
File without changes
|
File without changes
|
@@ -3,7 +3,7 @@ require 'autoloaded'
|
|
3
3
|
module AutoloadedWithUnconventionalFilenames
|
4
4
|
|
5
5
|
autoload :OldSchoolAutoload,
|
6
|
-
'fixtures/autoloaded_with_unconventional_filenames/old_school_autoload'
|
6
|
+
'fixtures/old_api/autoloaded_with_unconventional_filenames/old_school_autoload'
|
7
7
|
|
8
8
|
extend ::Autoloaded
|
9
9
|
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
raise "The file #{__FILE__} should not have been loaded"
|
data/spec/matchers.rb
CHANGED
@@ -16,38 +16,14 @@ RSpec::Matchers.define :define_constants do |*constant_names|
|
|
16
16
|
|
17
17
|
load source_file
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
constant_name.split(Util.namespace_delimiter).all? do |token|
|
24
|
-
current_scope.constants.include?(token.to_sym).tap do |result|
|
25
|
-
if result
|
26
|
-
current_scope = Util.constantize([current_scope.name, token].join(Util.namespace_delimiter))
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
if any_statically_defined
|
34
|
-
false
|
35
|
-
else
|
36
|
-
constant_names.all? do |constant_name|
|
37
|
-
namespace, unqualified_constant_name = Util.namespace_and_unqualified_constant_name(constant_name,
|
38
|
-
raise_if_namespace_invalid: true)
|
39
|
-
(!dynamically? ||
|
40
|
-
!namespace.constants.include?(unqualified_constant_name.to_sym)) &&
|
41
|
-
Util.constantize(constant_name)
|
42
|
-
end
|
19
|
+
constant_names.all? do |constant_name|
|
20
|
+
Util.namespace_and_unqualified_constant_name constant_name,
|
21
|
+
raise_if_namespace_invalid: true
|
22
|
+
Util.constantize constant_name
|
43
23
|
end
|
44
24
|
end
|
45
25
|
end
|
46
26
|
|
47
|
-
chain :dynamically do
|
48
|
-
@dynamically = true
|
49
|
-
end
|
50
|
-
|
51
27
|
description do
|
52
28
|
fragments = []
|
53
29
|
fragments << case constant_names.length
|
@@ -58,13 +34,8 @@ RSpec::Matchers.define :define_constants do |*constant_names|
|
|
58
34
|
else
|
59
35
|
"constants #{constant_names.join ' and '}"
|
60
36
|
end
|
61
|
-
fragments << 'dynamically' if dynamically?
|
62
37
|
"define #{fragments.join ' '}"
|
63
38
|
end
|
64
|
-
|
65
|
-
def dynamically?
|
66
|
-
@dynamically
|
67
|
-
end
|
68
39
|
end
|
69
40
|
|
70
41
|
RSpec::Matchers.define :set_up_autoload_for_constant do |constant_name|
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,63 +1,64 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoloaded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nils Jonsson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
|
-
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1'
|
20
|
-
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
23
|
requirements:
|
22
24
|
- - "~>"
|
23
25
|
- !ruby/object:Gem::Version
|
24
26
|
version: '1'
|
25
|
-
prerelease: false
|
26
|
-
type: :development
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
|
-
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '10'
|
34
|
-
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
35
37
|
requirements:
|
36
38
|
- - "~>"
|
37
39
|
- !ruby/object:Gem::Version
|
38
40
|
version: '10'
|
39
|
-
prerelease: false
|
40
|
-
type: :development
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
|
-
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '3'
|
48
|
-
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
49
51
|
requirements:
|
50
52
|
- - "~>"
|
51
53
|
- !ruby/object:Gem::Version
|
52
54
|
version: '3'
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
and source files.'
|
55
|
+
description: If you like the ‘Module#autoload’ feature of the Ruby Core library, you
|
56
|
+
may have wished for Autoloaded. It eliminates the drudgery of handcrafting an `autoload`
|
57
|
+
statement for each Ruby source code file in your project. It also avoids the limitations
|
58
|
+
of rigid convention-driven facilities such as those provided by the ActiveSupport
|
59
|
+
RubyGem. Autoloaded assumes, but does not enforce, `CamelCase`-to-`snake_case` correspondence
|
60
|
+
between the names of constants and source files. You can combine conventions, even
|
61
|
+
putting multiple autoloaded constants in a single source file.
|
61
62
|
email:
|
62
63
|
- autoloaded@nilsjonsson.com
|
63
64
|
executables: []
|
@@ -76,33 +77,46 @@ files:
|
|
76
77
|
- Rakefile
|
77
78
|
- autoloaded.gemspec
|
78
79
|
- lib/autoloaded.rb
|
80
|
+
- lib/autoloaded/autoloader.rb
|
79
81
|
- lib/autoloaded/compatibility/refine_and_using.rb
|
80
82
|
- lib/autoloaded/constant.rb
|
83
|
+
- lib/autoloaded/deprecation.rb
|
84
|
+
- lib/autoloaded/inflection.rb
|
85
|
+
- lib/autoloaded/load_pathed_directory.rb
|
81
86
|
- lib/autoloaded/refine.rb
|
82
87
|
- lib/autoloaded/refine/string.rb
|
83
88
|
- lib/autoloaded/refine/string/to_source_filename.rb
|
89
|
+
- lib/autoloaded/specification.rb
|
90
|
+
- lib/autoloaded/specifications.rb
|
84
91
|
- lib/autoloaded/version.rb
|
92
|
+
- lib/autoloaded/warning.rb
|
85
93
|
- lib/tasks.rb
|
86
94
|
- lib/tasks/build_doc.rake
|
87
95
|
- lib/tasks/lib_each.rake
|
88
96
|
- lib/tasks/spec.rake
|
89
97
|
- lib/tasks/spec_each.rake
|
98
|
+
- spec/autoloaded/autoloader_spec.rb
|
90
99
|
- spec/autoloaded/constant_spec.rb
|
100
|
+
- spec/autoloaded/deprecation_spec.rb
|
101
|
+
- spec/autoloaded/inflection_spec.rb
|
102
|
+
- spec/autoloaded/load_pathed_directory_spec.rb
|
91
103
|
- spec/autoloaded/refine/string/to_source_filename_spec.rb
|
104
|
+
- spec/autoloaded/specification_spec.rb
|
105
|
+
- spec/autoloaded/specifications_spec.rb
|
92
106
|
- spec/autoloaded/version_spec.rb
|
107
|
+
- spec/autoloaded/warning_spec.rb
|
108
|
+
- spec/autoloaded_macro_sharedspec.rb
|
93
109
|
- spec/autoloaded_spec.rb
|
94
110
|
- spec/fixtures/autoloaded_with_conventional_filename.rb
|
95
111
|
- spec/fixtures/autoloaded_with_conventional_filename/N-est-ed.rb
|
96
112
|
- spec/fixtures/autoloaded_with_conventional_filename/nest_ed.rb
|
97
113
|
- spec/fixtures/autoloaded_with_conventional_filename/nested.rb
|
114
|
+
- spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb
|
98
115
|
- spec/fixtures/autoloaded_with_conventional_filename/old_school_autoload.rb
|
99
|
-
- spec/fixtures/
|
100
|
-
- spec/fixtures/
|
101
|
-
- spec/fixtures/
|
102
|
-
- spec/fixtures/
|
103
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/N-est-ed.rb
|
104
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/nest_ed.rb
|
105
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/old_school_autoload.rb
|
116
|
+
- spec/fixtures/autoloaded_with_unconventional_filename.rb
|
117
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb
|
118
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb
|
119
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb
|
106
120
|
- spec/fixtures/filenames/AFilename.rb
|
107
121
|
- spec/fixtures/filenames/a-file-name.rb
|
108
122
|
- spec/fixtures/filenames/a-filename.rb
|
@@ -111,7 +125,23 @@ files:
|
|
111
125
|
- spec/fixtures/filenames/afile-name.rb
|
112
126
|
- spec/fixtures/filenames/afile_name.rb
|
113
127
|
- spec/fixtures/not_autoloaded.rb
|
128
|
+
- spec/fixtures/not_autoloaded/nested.rb
|
114
129
|
- spec/fixtures/not_autoloaded/old_school_autoload.rb
|
130
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename.rb
|
131
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/N-est-ed.rb
|
132
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/nest_ed.rb
|
133
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/nested.rb
|
134
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/old_school_autoload.rb
|
135
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only.rb
|
136
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only/nested.rb
|
137
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only/old_school_autoload.rb
|
138
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames.rb
|
139
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/N-est-ed.rb
|
140
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/nest_ed.rb
|
141
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/old_school_autoload.rb
|
142
|
+
- spec/fixtures/old_api/not_autoloaded.rb
|
143
|
+
- spec/fixtures/old_api/not_autoloaded/nested.rb
|
144
|
+
- spec/fixtures/old_api/not_autoloaded/old_school_autoload.rb
|
115
145
|
- spec/matchers.rb
|
116
146
|
- spec/spec_helper.rb
|
117
147
|
- spec/support/util.rb
|
@@ -120,7 +150,7 @@ homepage: http://njonsson.github.io/autoloaded
|
|
120
150
|
licenses:
|
121
151
|
- MIT
|
122
152
|
metadata: {}
|
123
|
-
post_install_message:
|
153
|
+
post_install_message:
|
124
154
|
rdoc_options: []
|
125
155
|
require_paths:
|
126
156
|
- lib
|
@@ -135,28 +165,36 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
165
|
- !ruby/object:Gem::Version
|
136
166
|
version: '0'
|
137
167
|
requirements: []
|
138
|
-
rubyforge_project:
|
139
|
-
rubygems_version: 2.
|
140
|
-
signing_key:
|
168
|
+
rubyforge_project:
|
169
|
+
rubygems_version: 2.2.2
|
170
|
+
signing_key:
|
141
171
|
specification_version: 4
|
142
|
-
summary:
|
172
|
+
summary: Eliminates the drudgery of handcrafting a Ruby Core library `autoload` statement
|
173
|
+
for each Ruby source code file in your project. It also avoids the limitations of
|
174
|
+
rigid convention-driven facilities such as those provided by the ActiveSupport RubyGem.
|
143
175
|
test_files:
|
176
|
+
- spec/autoloaded/autoloader_spec.rb
|
144
177
|
- spec/autoloaded/constant_spec.rb
|
178
|
+
- spec/autoloaded/deprecation_spec.rb
|
179
|
+
- spec/autoloaded/inflection_spec.rb
|
180
|
+
- spec/autoloaded/load_pathed_directory_spec.rb
|
145
181
|
- spec/autoloaded/refine/string/to_source_filename_spec.rb
|
182
|
+
- spec/autoloaded/specification_spec.rb
|
183
|
+
- spec/autoloaded/specifications_spec.rb
|
146
184
|
- spec/autoloaded/version_spec.rb
|
185
|
+
- spec/autoloaded/warning_spec.rb
|
186
|
+
- spec/autoloaded_macro_sharedspec.rb
|
147
187
|
- spec/autoloaded_spec.rb
|
148
188
|
- spec/fixtures/autoloaded_with_conventional_filename.rb
|
149
189
|
- spec/fixtures/autoloaded_with_conventional_filename/N-est-ed.rb
|
150
190
|
- spec/fixtures/autoloaded_with_conventional_filename/nest_ed.rb
|
151
191
|
- spec/fixtures/autoloaded_with_conventional_filename/nested.rb
|
192
|
+
- spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb
|
152
193
|
- spec/fixtures/autoloaded_with_conventional_filename/old_school_autoload.rb
|
153
|
-
- spec/fixtures/
|
154
|
-
- spec/fixtures/
|
155
|
-
- spec/fixtures/
|
156
|
-
- spec/fixtures/
|
157
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/N-est-ed.rb
|
158
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/nest_ed.rb
|
159
|
-
- spec/fixtures/autoloaded_with_unconventional_filenames/old_school_autoload.rb
|
194
|
+
- spec/fixtures/autoloaded_with_unconventional_filename.rb
|
195
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb
|
196
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb
|
197
|
+
- spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb
|
160
198
|
- spec/fixtures/filenames/AFilename.rb
|
161
199
|
- spec/fixtures/filenames/a-file-name.rb
|
162
200
|
- spec/fixtures/filenames/a-filename.rb
|
@@ -165,9 +203,25 @@ test_files:
|
|
165
203
|
- spec/fixtures/filenames/afile-name.rb
|
166
204
|
- spec/fixtures/filenames/afile_name.rb
|
167
205
|
- spec/fixtures/not_autoloaded.rb
|
206
|
+
- spec/fixtures/not_autoloaded/nested.rb
|
168
207
|
- spec/fixtures/not_autoloaded/old_school_autoload.rb
|
208
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename.rb
|
209
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/N-est-ed.rb
|
210
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/nest_ed.rb
|
211
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/nested.rb
|
212
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename/old_school_autoload.rb
|
213
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only.rb
|
214
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only/nested.rb
|
215
|
+
- spec/fixtures/old_api/autoloaded_with_conventional_filename_only/old_school_autoload.rb
|
216
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames.rb
|
217
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/N-est-ed.rb
|
218
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/nest_ed.rb
|
219
|
+
- spec/fixtures/old_api/autoloaded_with_unconventional_filenames/old_school_autoload.rb
|
220
|
+
- spec/fixtures/old_api/not_autoloaded.rb
|
221
|
+
- spec/fixtures/old_api/not_autoloaded/nested.rb
|
222
|
+
- spec/fixtures/old_api/not_autoloaded/old_school_autoload.rb
|
169
223
|
- spec/matchers.rb
|
170
224
|
- spec/spec_helper.rb
|
171
225
|
- spec/support/util.rb
|
172
226
|
- spec/support/without_side_effects.rb
|
173
|
-
has_rdoc:
|
227
|
+
has_rdoc:
|