Returns the list of path globs to load as dependencies Appends custom dependency patterns to the be loaded for Padrino.
@return [Array<String>]
The dependency paths.
@example
module MyModule
extend Padrino::Module
gem! 'my_gem'
end
Module.dependency_paths << "#{MyModule.root}/uploaders/*.rb"
# File lib/padrino-core/module.rb, line 51 def dependency_paths [ "#{root}/lib/**/*.rb", "#{root}/shared/lib/**/*.rb", "#{root}/models/**/*.rb", "#{root}/shared/models/**/*.rb" ] end
Register this module as being loaded from a gem. This automatically sets the root and therefore the dependency paths correctly.
@param [String] name
The name of the gem. Has to be the name as stated in the gemspec.
@returns the gems root.
# File lib/padrino-core/module.rb, line 13 def gem!(name) self.root = Padrino.gem(name, self) end
Generated with the Darkfish Rdoc Generator 2.