class Rails::Paths::Path
Attributes
glob[RW]
Public Class Methods
# File railties/lib/rails/paths.rb, line 114
def initialize(root, current, paths, options = {})
@paths = paths
@current = current
@root = root
@glob = options[:glob]
options[:autoload_once] ? autoload_once! : skip_autoload_once!
options[:eager_load] ? eager_load! : skip_eager_load!
options[:autoload] ? autoload! : skip_autoload!
options[:load_path] ? load_path! : skip_load_path!
end Public Instance Methods
# File railties/lib/rails/paths.rb, line 161 def <<(path) @paths << path end
Also aliased as: push
# File railties/lib/rails/paths.rb, line 126
def children
keys = @root.keys.find_all { |k|
k.start_with?(@current) && k != @current
}
@root.values_at(*keys.sort)
end # File railties/lib/rails/paths.rb, line 166 def concat(paths) @paths.concat paths end
# File railties/lib/rails/paths.rb, line 157 def each(&block) @paths.each(&block) end
Returns all expanded paths but only if they exist in the filesystem.
# File railties/lib/rails/paths.rb, line 200
def existent
expanded.select { |f| File.exist?(f) }
end # File railties/lib/rails/paths.rb, line 204
def existent_directories
expanded.select { |d| File.directory?(d) }
end Expands all paths against the root and return all unique values.
# File railties/lib/rails/paths.rb, line 179
def expanded
raise "You need to set a path root" unless @root.path
result = []
each do |p|
path = File.expand_path(p, @root.path)
if @glob && File.directory?(path)
Dir.chdir(path) do
result.concat(Dir.glob(@glob).map { |file| File.join path, file }.sort)
end
else
result << path
end
end
result.uniq!
result
end Also aliased as: to_a
# File railties/lib/rails/paths.rb, line 133 def first expanded.first end
# File railties/lib/rails/paths.rb, line 137 def last expanded.last end
push(path)
Alias for: <<
to_a()
Alias for: expanded
# File railties/lib/rails/paths.rb, line 174 def to_ary @paths end
# File railties/lib/rails/paths.rb, line 170 def unshift(path) @paths.unshift path end
© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.