Method: Fixtury::Configuration#add_dependency_path
- Defined in:
- lib/fixtury/configuration.rb
#add_dependency_path(*path_or_globs) ⇒ Object Also known as: add_dependency_paths
Add a file or glob pattern to the list of dependency files.
51 52 53 |
# File 'lib/fixtury/configuration.rb', line 51 def add_dependency_path(*path_or_globs) @dependency_files = dependency_files | Dir[*path_or_globs] end |