Class: Rails::Paths::Path

Inherits:
Object show all
Includes:
Enumerable
Defined in:
railties/lib/rails/paths.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Enumerable

#as_json, #compact_blank, #exclude?, #excluding, #in_order_of, #including, #index_by, #index_with, #many?, #maximum, #minimum, #pick, #pluck, #sole

Constructor Details

#initialize(root, current, paths, options = {}) ⇒ Path

Returns a new instance of Path.



119
120
121
122
123
124
125
126
127
128
129
130
# File 'railties/lib/rails/paths.rb', line 119

def initialize(root, current, paths, options = {})
  @paths   = paths
  @current = current
  @root    = root
  @glob    = options[:glob]
  @exclude = options[:exclude]

  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

Instance Attribute Details

#globObject

Returns the value of attribute glob.



117
118
119
# File 'railties/lib/rails/paths.rb', line 117

def glob
  @glob
end

Instance Method Details

#<<(path) ⇒ Object Also known as: push



171
172
173
# File 'railties/lib/rails/paths.rb', line 171

def <<(path)
  @paths << path
end

#absolute_currentObject

:nodoc:



132
133
134
# File 'railties/lib/rails/paths.rb', line 132

def absolute_current # :nodoc:
  File.expand_path(@current, @root.path)
end

#childrenObject



136
137
138
139
140
141
# File 'railties/lib/rails/paths.rb', line 136

def children
  keys = @root.keys.find_all { |k|
    k.start_with?(@current) && k != @current
  }
  @root.values_at(*keys.sort)
end

#concat(paths) ⇒ Object



176
177
178
# File 'railties/lib/rails/paths.rb', line 176

def concat(paths)
  @paths.concat paths
end

#each(&block) ⇒ Object



167
168
169
# File 'railties/lib/rails/paths.rb', line 167

def each(&block)
  @paths.each(&block)
end

#existentObject

Returns all expanded paths but only if they exist in the filesystem.



220
221
222
223
224
225
226
227
228
229
# File 'railties/lib/rails/paths.rb', line 220

def existent
  expanded.select do |f|
    does_exist = File.exist?(f)

    if !does_exist && File.symlink?(f)
      raise "File #{f.inspect} is a symlink that does not point to a valid file"
    end
    does_exist
  end
end

#existent_directoriesObject



231
232
233
# File 'railties/lib/rails/paths.rb', line 231

def existent_directories
  expanded.select { |d| File.directory?(d) }
end

#expandedObject Also known as: to_a

Expands all paths against the root and return all unique values.



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'railties/lib/rails/paths.rb', line 201

def expanded
  raise "You need to set a path root" unless @root.path
  result = []

  each do |path|
    path = File.expand_path(path, @root.path)

    if @glob && File.directory?(path)
      result.concat files_in(path)
    else
      result << path
    end
  end

  result.uniq!
  result
end

#extensionsObject

:nodoc:



196
197
198
# File 'railties/lib/rails/paths.rb', line 196

def extensions # :nodoc:
  $1.split(",") if @glob =~ /\{([\S]+)\}/
end

#firstObject



143
144
145
# File 'railties/lib/rails/paths.rb', line 143

def first
  expanded.first
end

#lastObject



147
148
149
# File 'railties/lib/rails/paths.rb', line 147

def last
  expanded.last
end

#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

#to_aryObject



184
185
186
# File 'railties/lib/rails/paths.rb', line 184

def to_ary
  @paths
end

#unshift(*paths) ⇒ Object



180
181
182
# File 'railties/lib/rails/paths.rb', line 180

def unshift(*paths)
  @paths.unshift(*paths)
end