autoloaded 2.1.1 → 2.4.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.
Files changed (58) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +4 -8
  3. data/.rspec +1 -1
  4. data/.travis.yml +20 -0
  5. data/Gemfile +14 -9
  6. data/Gemfile_ci_mri_19 +7 -0
  7. data/Guardfile +21 -22
  8. data/History.md +35 -10
  9. data/License.md +1 -1
  10. data/README.md +82 -68
  11. data/Rakefile +4 -0
  12. data/autoloaded.gemspec +41 -37
  13. data/bin/console +10 -0
  14. data/bin/setup +8 -0
  15. data/lib/autoloaded/autoloader.rb +24 -6
  16. data/lib/autoloaded/deprecation.rb +0 -2
  17. data/lib/autoloaded/inflection.rb +0 -2
  18. data/lib/autoloaded/load_pathed_directory.rb +2 -4
  19. data/lib/autoloaded/specification.rb +2 -0
  20. data/lib/autoloaded/specifications.rb +3 -3
  21. data/lib/autoloaded/version.rb +1 -1
  22. data/lib/autoloaded/warning.rb +1 -3
  23. data/lib/tasks/lib_each.rake +15 -3
  24. data/lib/tasks/spec.rake +3 -6
  25. metadata +20 -85
  26. data/spec/autoloaded/autoloader_spec.rb +0 -469
  27. data/spec/autoloaded/inflection_spec.rb +0 -30
  28. data/spec/autoloaded/load_pathed_directory_spec.rb +0 -120
  29. data/spec/autoloaded/specification_spec.rb +0 -98
  30. data/spec/autoloaded/specifications_spec.rb +0 -191
  31. data/spec/autoloaded/version_spec.rb +0 -3
  32. data/spec/autoloaded/warning_spec.rb +0 -115
  33. data/spec/autoloaded_macro_sharedspec.rb +0 -24
  34. data/spec/autoloaded_spec.rb +0 -173
  35. data/spec/fixtures/autoloaded_with_conventional_filename/N-est-ed.rb +0 -1
  36. data/spec/fixtures/autoloaded_with_conventional_filename/nest_ed.rb +0 -1
  37. data/spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb +0 -9
  38. data/spec/fixtures/autoloaded_with_conventional_filename/nested.rb +0 -16
  39. data/spec/fixtures/autoloaded_with_conventional_filename/old_school_autoload.rb +0 -5
  40. data/spec/fixtures/autoloaded_with_conventional_filename.rb +0 -12
  41. data/spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb +0 -7
  42. data/spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb +0 -1
  43. data/spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb +0 -5
  44. data/spec/fixtures/autoloaded_with_unconventional_filename.rb +0 -12
  45. data/spec/fixtures/filenames/AFilename.rb +0 -0
  46. data/spec/fixtures/filenames/a-file-name.rb +0 -0
  47. data/spec/fixtures/filenames/a-filename.rb +0 -0
  48. data/spec/fixtures/filenames/a_file_name.rb +0 -0
  49. data/spec/fixtures/filenames/a_filename.rb +0 -0
  50. data/spec/fixtures/filenames/afile-name.rb +0 -0
  51. data/spec/fixtures/filenames/afile_name.rb +0 -0
  52. data/spec/fixtures/not_autoloaded/nested.rb +0 -1
  53. data/spec/fixtures/not_autoloaded/old_school_autoload.rb +0 -5
  54. data/spec/fixtures/not_autoloaded.rb +0 -5
  55. data/spec/matchers.rb +0 -85
  56. data/spec/spec_helper.rb +0 -91
  57. data/spec/support/util.rb +0 -42
  58. data/spec/support/without_side_effects.rb +0 -37
data/autoloaded.gemspec CHANGED
@@ -1,46 +1,50 @@
1
1
  # coding: utf-8
2
-
3
2
  lib = File.expand_path('../lib', __FILE__)
4
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
-
6
- require 'autoloaded'
4
+ require 'autoloaded/version'
7
5
 
8
6
  Gem::Specification.new do |spec|
9
- spec.name = 'autoloaded'
10
- spec.version = Autoloaded::VERSION
11
- spec.authors = ['Nils Jonsson']
12
- spec.email = ['autoloaded@nilsjonsson.com']
13
- spec.summary = <<-end_summary.chomp.gsub(/^\s+/, '').gsub("\n", ' ')
14
- Eliminates the drudgery of handcrafting a Ruby Core
15
- library `autoload` statement for each Ruby source code
16
- file in your project. It also avoids the limitations of
17
- rigid convention-driven facilities such as those
18
- provided by the ActiveSupport RubyGem.
19
- end_summary
20
- spec.description = <<-end_description.chomp.gsub(/^\s+/, '').gsub("\n", ' ')
21
- If you like the ‘Module#autoload’ feature of the Ruby
22
- Core library, you may have wished for Autoloaded. It
23
- eliminates the drudgery of handcrafting an `autoload`
24
- statement for each Ruby source code file in your
25
- project. It also avoids the limitations of rigid
26
- convention-driven facilities such as those provided by
27
- the ActiveSupport RubyGem. Autoloaded assumes, but does
28
- not enforce, `CamelCase`-to-`snake_case` correspondence
29
- between the names of constants and source files. You can
30
- combine conventions, even putting multiple autoloaded
31
- constants in a single source file.
32
- end_description
33
- spec.homepage = 'http://njonsson.github.io/autoloaded'
34
- spec.license = 'MIT'
7
+ spec.name = 'autoloaded'
8
+ spec.version = Autoloaded::VERSION
9
+ spec.authors = ['Nils Jonsson']
10
+ spec.email = ['autoloaded@nilsjonsson.com']
11
+
12
+ spec.summary = <<-end_summary.chomp.gsub(/^\s+/, '').gsub("\n", ' ')
13
+ Eliminates the drudgery of handcrafting a Ruby Core
14
+ library `autoload` statement for each Ruby source code
15
+ file in your project. It also avoids the limitations of
16
+ rigid convention-driven facilities such as those provided
17
+ by the ActiveSupport RubyGem.
18
+ end_summary
19
+ spec.description = <<-end_description.chomp.gsub(/^\s+/, '').gsub("\n", ' ')
20
+ If you like the ‘Module#autoload’ feature of the Ruby Core
21
+ library, you may have wished for Autoloaded. It eliminates
22
+ the drudgery of handcrafting an `autoload` statement for
23
+ each Ruby source code file in your project. It also avoids
24
+ the limitations of rigid convention-driven facilities such
25
+ as those provided by the ActiveSupport RubyGem. Autoloaded
26
+ assumes, but does not enforce, `CamelCase`-to-`snake_case`
27
+ correspondence between the names of constants and source
28
+ files. You can combine conventions, even putting multiple
29
+ autoloaded constants in a single source file.
30
+ end_description
31
+ spec.homepage = 'https://njonsson.github.io/autoloaded'
32
+ spec.license = 'MIT'
35
33
 
36
- spec.files = `git ls-files -z`.split("\x0")
37
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename f }
38
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
39
- spec.require_paths = ['lib']
34
+ spec.required_ruby_version = '>= 1.9', '< 4'
40
35
 
41
- spec.required_ruby_version = '>= 1.9', '< 3'
36
+ spec.add_development_dependency 'codeclimate-test-reporter', '~> 0'
37
+ if RUBY_VERSION < '2.2'
38
+ spec.add_development_dependency 'rake', '~> 12'
39
+ else
40
+ spec.add_development_dependency 'rake', '~> 13'
41
+ end
42
+ spec.add_development_dependency 'rspec', '~> 3.3'
42
43
 
43
- spec.add_development_dependency 'bundler', '~> 1'
44
- spec.add_development_dependency 'rake', '~> 10'
45
- spec.add_development_dependency 'rspec', '~> 3'
44
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
45
+ f.match(%r{^(test|spec|features)/})
46
+ end
47
+ spec.bindir = 'exe'
48
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename f }
49
+ spec.require_paths = %w(lib)
46
50
  end
data/bin/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'autoloaded'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ require 'pry'
10
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ which bundle || gem install bundler
6
+ bundle
7
+
8
+ # Do any other automated setup that you need to do here
@@ -1,3 +1,9 @@
1
+ require 'autoloaded/inflection'
2
+ require 'autoloaded/load_pathed_directory'
3
+ require 'autoloaded/specification'
4
+ require 'autoloaded/specifications'
5
+ require 'autoloaded/warning'
6
+
1
7
  module Autoloaded
2
8
 
3
9
  # Autoloads files in a source directory.
@@ -35,8 +41,8 @@ module Autoloaded
35
41
  # @return [Array of Array] the arguments passed to each +autoload+ statement
36
42
  # made
37
43
  #
38
- # @see http://ruby-doc.org/core/Module.html#method-i-autoload Module#autoload
39
- # @see http://ruby-doc.org/core/Kernel.html#method-i-autoload Kernel#autoload
44
+ # @see https://ruby-doc.org/core/Module.html#method-i-autoload Module#autoload
45
+ # @see https://ruby-doc.org/core/Kernel.html#method-i-autoload Kernel#autoload
40
46
  # @see #from
41
47
  # @see #except
42
48
  # @see #only
@@ -207,7 +213,10 @@ module Autoloaded
207
213
  # @see #autoload!
208
214
  # @see #host_binding
209
215
  def from(value=nil)
210
- return((@from && @from.path) || default_from) if value.nil?
216
+ if value.nil?
217
+ return (instance_variable_defined?(:@from) && @from && @from.path) ||
218
+ default_from
219
+ end
211
220
 
212
221
  # Validate value.
213
222
  @from = LoadPathedDirectory.new(value)
@@ -243,7 +252,8 @@ module Autoloaded
243
252
  end
244
253
 
245
254
  def from_load_pathed_directory
246
- @from || LoadPathedDirectory.new(default_from)
255
+ (instance_variable_defined?(:@from) && @from) ||
256
+ LoadPathedDirectory.new(default_from)
247
257
  end
248
258
 
249
259
  def host_eval(statement)
@@ -253,11 +263,19 @@ module Autoloaded
253
263
  end
254
264
 
255
265
  def host_source_filename
256
- host_eval '::File.expand_path __FILE__'
266
+ if host_binding.respond_to?(:source_location)
267
+ host_eval "::File.expand_path '#{host_binding.source_location.first}'"
268
+ else
269
+ host_eval '::File.expand_path __FILE__'
270
+ end
257
271
  end
258
272
 
259
273
  def host_source_location
260
- host_eval('[__FILE__, __LINE__]').collect(&:to_s).join ':'
274
+ if host_binding.respond_to?(:source_location)
275
+ host_binding.source_location
276
+ else
277
+ host_eval('[__FILE__, __LINE__]')
278
+ end.collect(&:to_s).join ':'
261
279
  end
262
280
 
263
281
  end
@@ -1,5 +1,3 @@
1
- module Autoloaded; end
2
-
3
1
  # Prints deprecation messages to _stderr_.
4
2
  #
5
3
  # @since 1.3
@@ -1,5 +1,3 @@
1
- module Autoloaded; end
2
-
3
1
  # Translates source filenames into constants.
4
2
  #
5
3
  # @since 1.3
@@ -1,7 +1,5 @@
1
1
  require 'pathname'
2
2
 
3
- module Autoloaded; end
4
-
5
3
  # Enumerates the source files in a directory, relativizing their paths using the
6
4
  # Ruby load path.
7
5
  #
@@ -63,7 +61,7 @@ public
63
61
  # @return [LoadPathedDirectory] the _LoadPathedDirectory_
64
62
  #
65
63
  # @see #path
66
- # @see http://ruby-doc.org/core/Kernel.html#method-i-require Kernel#require
64
+ # @see https://ruby-doc.org/core/Kernel.html#method-i-require Kernel#require
67
65
  def each_source_filename
68
66
  if (ruby_load_path = closest_ruby_load_path)
69
67
  ::Dir.chdir ruby_load_path do
@@ -97,7 +95,7 @@ private
97
95
  # Don't use Pathname#relative_path_from because we want to avoid introducing
98
96
  # double dots. The intent is to render the path as relative, if and only if
99
97
  # it is a subdirectory of 'other_path'.
100
- pattern = /^#{::Regexp.escape other_path.chomp(::File::SEPARATOR)}#{::Regexp.escape ::File::SEPARATOR}?/
98
+ pattern = /^#{::Regexp.escape other_path.to_s.chomp(::File::SEPARATOR)}#{::Regexp.escape ::File::SEPARATOR}?/
101
99
  path.gsub pattern, ''
102
100
  end
103
101
 
@@ -1,3 +1,5 @@
1
+ require 'autoloaded/inflection'
2
+
1
3
  module Autoloaded
2
4
 
3
5
  # Describes regulations for autoloading.
@@ -1,5 +1,3 @@
1
- module Autoloaded; end
2
-
3
1
  # Holds regulations for autoloading.
4
2
  #
5
3
  # @since 1.3
@@ -39,7 +37,9 @@ class Autoloaded::Specifications
39
37
  [:except, :only, :with].each do |attribute_name|
40
38
  define_method attribute_name do
41
39
  variable_name = "@#{attribute_name}"
42
- (instance_variable_get(variable_name) || []).tap do |value|
40
+ ((instance_variable_defined?(variable_name) &&
41
+ instance_variable_get(variable_name)) ||
42
+ []).tap do |value|
43
43
  instance_variable_set variable_name, value
44
44
  end
45
45
  end
@@ -3,6 +3,6 @@ module Autoloaded
3
3
  # The current version of the _Autoloaded_ project.
4
4
  #
5
5
  # @since 0.0.1
6
- VERSION = '2.1.1'
6
+ VERSION = '2.4.0'
7
7
 
8
8
  end
@@ -1,5 +1,3 @@
1
- module Autoloaded; end
2
-
3
1
  # Prints warning messages to _stderr_.
4
2
  #
5
3
  # @since 1.3
@@ -64,7 +62,7 @@ module Autoloaded::Warning
64
62
  #
65
63
  # @see .enabled?
66
64
  def enable(enabling)
67
- previous_value = @disabled
65
+ previous_value = instance_variable_defined?(:@disabled) && @disabled
68
66
  @disabled = not!(enabling)
69
67
  if block_given?
70
68
  begin
@@ -1,13 +1,25 @@
1
1
  namespace :lib do
2
- desc "Load each library file individually, looking for missing 'require' statements"
2
+ desc "Check the source for missing 'require' statements. Set the 'VERBOSE' " +
3
+ 'environment variable to "t[rue]" to display the name of each file as ' +
4
+ 'it is loaded.'
3
5
  task :each do
6
+ def verbose?
7
+ ENV['VERBOSE'].to_s =~ /^T/i
8
+ end
9
+
4
10
  Dir.chdir 'lib' do
5
11
  Dir.glob( '**/*.rb' ) do |f|
6
12
  next if f == 'tasks.rb'
7
13
 
8
- puts "Loading #{f} ..."
9
- fail unless system( "/usr/bin/env bundle exec ruby -e 'require #{f.inspect}'" )
14
+ if verbose?
15
+ puts "* #{f}"
16
+ else
17
+ print "\e[32m.\e[0m"
18
+ end
19
+ command = "/usr/bin/env ruby -e 'require File.expand_path(#{f.inspect})'"
20
+ break unless system(command)
10
21
  end
11
22
  end
23
+ puts unless verbose?
12
24
  end
13
25
  end
data/lib/tasks/spec.rake CHANGED
@@ -44,7 +44,8 @@ else
44
44
  else
45
45
  noun_phrase = "#{uncommitted_spec_files.length} uncommitted spec file#{(uncommitted_spec_files.length == 1) ? nil : 's'}"
46
46
  desc = "Run #{noun_phrase}"
47
- define_spec_task :uncommitted, desc: desc, pattern: uncommitted_spec_files
47
+ define_spec_task :uncommitted, desc: desc,
48
+ pattern: uncommitted_spec_files
48
49
  end
49
50
  else
50
51
  noun_phrase = "#{uncommitted_files_in_spec.length} uncommitted file#{uncommitted_files_in_spec.length == 1 ? nil : 's'}"
@@ -52,16 +53,12 @@ else
52
53
  define_spec_task :uncommitted, desc: desc, pattern: 'spec'
53
54
  end
54
55
 
55
- define_spec_task :warnings, desc: 'Run specs with Ruby warnings enabled',
56
+ define_spec_task :warnings, desc: 'Run specs with Ruby warnings enabled',
56
57
  format: :progress,
57
58
  profile: false,
58
59
  warnings: true
59
60
  end
60
61
 
61
- desc 'Run specs'
62
- task '' => :spec
63
- task :default => :spec
64
-
65
62
  # Support the 'gem test' command.
66
63
  define_spec_task :test, desc: '', backtrace: true,
67
64
  debug: false,
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoloaded
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nils Jonsson
8
- autorequire:
9
- bindir: bin
8
+ autorequire:
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2015-01-24 00:00:00.000000000 Z
11
+ date: 2021-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: codeclimate-test-reporter
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1'
26
+ version: '0'
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
- version: '10'
33
+ version: '13'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '10'
40
+ version: '13'
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
- version: '3'
47
+ version: '3.3'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '3'
54
+ version: '3.3'
55
55
  description: If you like the ‘Module#autoload’ feature of the Ruby Core library, you
56
56
  may have wished for Autoloaded. It eliminates the drudgery of handcrafting an `autoload`
57
57
  statement for each Ruby source code file in your project. It also avoids the limitations
@@ -70,12 +70,15 @@ files:
70
70
  - ".travis.yml"
71
71
  - ".yardopts"
72
72
  - Gemfile
73
+ - Gemfile_ci_mri_19
73
74
  - Guardfile
74
75
  - History.md
75
76
  - License.md
76
77
  - README.md
77
78
  - Rakefile
78
79
  - autoloaded.gemspec
80
+ - bin/console
81
+ - bin/setup
79
82
  - lib/autoloaded.rb
80
83
  - lib/autoloaded/autoloader.rb
81
84
  - lib/autoloaded/deprecation.rb
@@ -90,44 +93,11 @@ files:
90
93
  - lib/tasks/lib_each.rake
91
94
  - lib/tasks/spec.rake
92
95
  - lib/tasks/spec_each.rake
93
- - spec/autoloaded/autoloader_spec.rb
94
- - spec/autoloaded/inflection_spec.rb
95
- - spec/autoloaded/load_pathed_directory_spec.rb
96
- - spec/autoloaded/specification_spec.rb
97
- - spec/autoloaded/specifications_spec.rb
98
- - spec/autoloaded/version_spec.rb
99
- - spec/autoloaded/warning_spec.rb
100
- - spec/autoloaded_macro_sharedspec.rb
101
- - spec/autoloaded_spec.rb
102
- - spec/fixtures/autoloaded_with_conventional_filename.rb
103
- - spec/fixtures/autoloaded_with_conventional_filename/N-est-ed.rb
104
- - spec/fixtures/autoloaded_with_conventional_filename/nest_ed.rb
105
- - spec/fixtures/autoloaded_with_conventional_filename/nested.rb
106
- - spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb
107
- - spec/fixtures/autoloaded_with_conventional_filename/old_school_autoload.rb
108
- - spec/fixtures/autoloaded_with_unconventional_filename.rb
109
- - spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb
110
- - spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb
111
- - spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb
112
- - spec/fixtures/filenames/AFilename.rb
113
- - spec/fixtures/filenames/a-file-name.rb
114
- - spec/fixtures/filenames/a-filename.rb
115
- - spec/fixtures/filenames/a_file_name.rb
116
- - spec/fixtures/filenames/a_filename.rb
117
- - spec/fixtures/filenames/afile-name.rb
118
- - spec/fixtures/filenames/afile_name.rb
119
- - spec/fixtures/not_autoloaded.rb
120
- - spec/fixtures/not_autoloaded/nested.rb
121
- - spec/fixtures/not_autoloaded/old_school_autoload.rb
122
- - spec/matchers.rb
123
- - spec/spec_helper.rb
124
- - spec/support/util.rb
125
- - spec/support/without_side_effects.rb
126
- homepage: http://njonsson.github.io/autoloaded
96
+ homepage: https://njonsson.github.io/autoloaded
127
97
  licenses:
128
98
  - MIT
129
99
  metadata: {}
130
- post_install_message:
100
+ post_install_message:
131
101
  rdoc_options: []
132
102
  require_paths:
133
103
  - lib
@@ -138,52 +108,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
108
  version: '1.9'
139
109
  - - "<"
140
110
  - !ruby/object:Gem::Version
141
- version: '3'
111
+ version: '4'
142
112
  required_rubygems_version: !ruby/object:Gem::Requirement
143
113
  requirements:
144
114
  - - ">="
145
115
  - !ruby/object:Gem::Version
146
116
  version: '0'
147
117
  requirements: []
148
- rubyforge_project:
149
- rubygems_version: 2.2.2
150
- signing_key:
118
+ rubygems_version: 3.2.20
119
+ signing_key:
151
120
  specification_version: 4
152
121
  summary: Eliminates the drudgery of handcrafting a Ruby Core library `autoload` statement
153
122
  for each Ruby source code file in your project. It also avoids the limitations of
154
123
  rigid convention-driven facilities such as those provided by the ActiveSupport RubyGem.
155
- test_files:
156
- - spec/autoloaded/autoloader_spec.rb
157
- - spec/autoloaded/inflection_spec.rb
158
- - spec/autoloaded/load_pathed_directory_spec.rb
159
- - spec/autoloaded/specification_spec.rb
160
- - spec/autoloaded/specifications_spec.rb
161
- - spec/autoloaded/version_spec.rb
162
- - spec/autoloaded/warning_spec.rb
163
- - spec/autoloaded_macro_sharedspec.rb
164
- - spec/autoloaded_spec.rb
165
- - spec/fixtures/autoloaded_with_conventional_filename.rb
166
- - spec/fixtures/autoloaded_with_conventional_filename/N-est-ed.rb
167
- - spec/fixtures/autoloaded_with_conventional_filename/nest_ed.rb
168
- - spec/fixtures/autoloaded_with_conventional_filename/nested.rb
169
- - spec/fixtures/autoloaded_with_conventional_filename/nested/doubly_nested.rb
170
- - spec/fixtures/autoloaded_with_conventional_filename/old_school_autoload.rb
171
- - spec/fixtures/autoloaded_with_unconventional_filename.rb
172
- - spec/fixtures/autoloaded_with_unconventional_filename/N-est-ed.rb
173
- - spec/fixtures/autoloaded_with_unconventional_filename/nest_ed.rb
174
- - spec/fixtures/autoloaded_with_unconventional_filename/old_school_autoload.rb
175
- - spec/fixtures/filenames/AFilename.rb
176
- - spec/fixtures/filenames/a-file-name.rb
177
- - spec/fixtures/filenames/a-filename.rb
178
- - spec/fixtures/filenames/a_file_name.rb
179
- - spec/fixtures/filenames/a_filename.rb
180
- - spec/fixtures/filenames/afile-name.rb
181
- - spec/fixtures/filenames/afile_name.rb
182
- - spec/fixtures/not_autoloaded.rb
183
- - spec/fixtures/not_autoloaded/nested.rb
184
- - spec/fixtures/not_autoloaded/old_school_autoload.rb
185
- - spec/matchers.rb
186
- - spec/spec_helper.rb
187
- - spec/support/util.rb
188
- - spec/support/without_side_effects.rb
189
- has_rdoc:
124
+ test_files: []