Class: Rails::Paths::Path
- Inherits:
-
Object
- Object
- Rails::Paths::Path
- Includes:
- Enumerable
- Defined in:
- lib/rails/paths.rb
Instance Attribute Summary collapse
-
#glob ⇒ Object
Returns the value of attribute glob.
Instance Method Summary collapse
- #<<(path) ⇒ Object (also: #push)
- #children ⇒ Object
- #concat(paths) ⇒ Object
- #each(&block) ⇒ Object
-
#existent ⇒ Object
Returns all expanded paths but only if they exist in the filesystem.
- #existent_directories ⇒ Object
-
#expanded ⇒ Object
(also: #to_a)
Expands all paths against the root and return all unique values.
- #first ⇒ Object
-
#initialize(root, current, paths, options = {}) ⇒ Path
constructor
A new instance of Path.
- #last ⇒ Object
- #to_ary ⇒ Object
- #unshift(path) ⇒ Object
Constructor Details
#initialize(root, current, paths, options = {}) ⇒ Path
Returns a new instance of Path.
114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/rails/paths.rb', line 114 def initialize(root, current, paths, = {}) @paths = paths @current = current @root = root @glob = [:glob] [:autoload_once] ? autoload_once! : skip_autoload_once! [:eager_load] ? eager_load! : skip_eager_load! [:autoload] ? autoload! : skip_autoload! [:load_path] ? load_path! : skip_load_path! end |
Instance Attribute Details
#glob ⇒ Object
Returns the value of attribute glob.
112 113 114 |
# File 'lib/rails/paths.rb', line 112 def glob @glob end |
Instance Method Details
#<<(path) ⇒ Object Also known as: push
161 162 163 |
# File 'lib/rails/paths.rb', line 161 def <<(path) @paths << path end |
#children ⇒ Object
126 127 128 129 130 131 |
# File '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 |
#concat(paths) ⇒ Object
166 167 168 |
# File 'lib/rails/paths.rb', line 166 def concat(paths) @paths.concat paths end |
#each(&block) ⇒ Object
157 158 159 |
# File 'lib/rails/paths.rb', line 157 def each(&block) @paths.each(&block) end |
#existent ⇒ Object
Returns all expanded paths but only if they exist in the filesystem.
200 201 202 |
# File 'lib/rails/paths.rb', line 200 def existent .select { |f| File.exist?(f) } end |
#existent_directories ⇒ Object
204 205 206 |
# File 'lib/rails/paths.rb', line 204 def existent_directories .select { |d| File.directory?(d) } end |
#expanded ⇒ Object Also known as: to_a
Expands all paths against the root and return all unique values.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/rails/paths.rb', line 179 def raise "You need to set a path root" unless @root.path result = [] each do |p| path = File.(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 |
#first ⇒ Object
133 134 135 |
# File 'lib/rails/paths.rb', line 133 def first .first end |
#last ⇒ Object
137 138 139 |
# File 'lib/rails/paths.rb', line 137 def last .last end |
#to_ary ⇒ Object
174 175 176 |
# File 'lib/rails/paths.rb', line 174 def to_ary @paths end |
#unshift(path) ⇒ Object
170 171 172 |
# File 'lib/rails/paths.rb', line 170 def unshift(path) @paths.unshift path end |