Method: Rails::Paths::Path#paths

Defined in:
railties/lib/rails/paths.rb

#pathsObject



188
189
190
191
192
193
194
# File 'railties/lib/rails/paths.rb', line 188

def paths
  raise "You need to set a path root" unless @root.path

  map do |p|
    Pathname.new(@root.path).join(p)
  end
end