Module: Hanami::Utils::Files
- Defined in:
- lib/hanami/utils/files.rb
Overview
Files utilities
Class Method Summary collapse
-
.append(path, contents) ⇒ Object
Adds a new line at the bottom of the file.
-
.cp(source, destination) ⇒ Object
Copies source into destination.
-
.delete(path) ⇒ Object
Deletes given path (file).
-
.delete_directory(path) ⇒ Object
Deletes given path (directory).
-
.directory?(path) ⇒ TrueClass, FalseClass
Checks if ‘path` is a directory.
-
.exist?(path) ⇒ TrueClass, FalseClass
Checks if ‘path` exist.
-
.inject_line_after(path, target, contents) ⇒ Object
Inject ‘contents` in `path` after `target`.
-
.inject_line_before(path, target, contents) ⇒ Object
Inject ‘contents` in `path` before `target`.
-
.mkdir(path) ⇒ Object
Creates a directory for the given path.
-
.mkdir_p(path) ⇒ Object
Creates a directory for the given path.
-
.remove_block(path, target) ⇒ Object
Removes ‘target` block from `path`.
-
.remove_line(path, target) ⇒ Object
Removes line from ‘path`, matching `target`.
-
.replace_first_line(path, target, replacement) ⇒ Object
Replace first line in ‘path` that contains `target` with `replacement`.
-
.replace_last_line(path, target, replacement) ⇒ Object
Replace last line in ‘path` that contains `target` with `replacement`.
-
.rewrite(path, *content) ⇒ Object
Rewrites the contents of an existing file.
-
.touch(path) ⇒ Object
Creates an empty file for the given path.
-
.unshift(path, line) ⇒ Object
Adds a new line at the top of the file.
-
.write(path, *content) ⇒ Object
Creates a new file for the given path and content.
Class Method Details
.append(path, contents) ⇒ Object
Adds a new line at the bottom of the file
161 162 163 164 165 166 167 168 |
# File 'lib/hanami/utils/files.rb', line 161 def self.append(path, contents) mkdir_p(path) content = ::File.readlines(path) content << "#{contents}\n" write(path, content) end |
.cp(source, destination) ⇒ Object
Copies source into destination. All the intermediate directories are created. If the destination already exists, it overrides the contents.
60 61 62 63 |
# File 'lib/hanami/utils/files.rb', line 60 def self.cp(source, destination) mkdir_p(destination) FileUtils.cp(source, destination) end |
.delete(path) ⇒ Object
Deletes given path (file).
119 120 121 |
# File 'lib/hanami/utils/files.rb', line 119 def self.delete(path) FileUtils.rm(path) end |
.delete_directory(path) ⇒ Object
Deletes given path (directory).
130 131 132 |
# File 'lib/hanami/utils/files.rb', line 130 def self.delete_directory(path) FileUtils.remove_entry_secure(path) end |
.directory?(path) ⇒ TrueClass, FalseClass
Checks if ‘path` is a directory
340 341 342 |
# File 'lib/hanami/utils/files.rb', line 340 def self.directory?(path) File.directory?(path) end |
.exist?(path) ⇒ TrueClass, FalseClass
Checks if ‘path` exist
321 322 323 |
# File 'lib/hanami/utils/files.rb', line 321 def self.exist?(path) File.exist?(path) end |
.inject_line_after(path, target, contents) ⇒ Object
Inject ‘contents` in `path` after `target`.
240 241 242 243 244 245 246 |
# File 'lib/hanami/utils/files.rb', line 240 def self.inject_line_after(path, target, contents) content = ::File.readlines(path) i = index(content, path, target) content.insert(i + 1, "#{contents}\n") write(path, content) end |
.inject_line_before(path, target, contents) ⇒ Object
Inject ‘contents` in `path` before `target`.
220 221 222 223 224 225 226 |
# File 'lib/hanami/utils/files.rb', line 220 def self.inject_line_before(path, target, contents) content = ::File.readlines(path) i = index(content, path, target) content.insert(i, "#{contents}\n") write(path, content) end |
.mkdir(path) ⇒ Object
Creates a directory for the given path. It assumes that all the tokens in ‘path` are meant to be a directory. All the intermediate directories are created.
84 85 86 |
# File 'lib/hanami/utils/files.rb', line 84 def self.mkdir(path) FileUtils.mkdir_p(path) end |
.mkdir_p(path) ⇒ Object
Creates a directory for the given path. It assumes that all the tokens, but the last, in ‘path` are meant to be a directory, whereas the last is meant to be a file. All the intermediate directories are created.
108 109 110 |
# File 'lib/hanami/utils/files.rb', line 108 def self.mkdir_p(path) Pathname.new(path).dirname.mkpath end |
.remove_block(path, target) ⇒ Object
Removes ‘target` block from `path`
292 293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'lib/hanami/utils/files.rb', line 292 def self.remove_block(path, target) # rubocop:disable Metrics/AbcSize content = ::File.readlines(path) starting = index(content, path, target) line = content[starting] size = line[/\A[[:space:]]*/].bytesize closing = (" " * size) + (target =~ /{/ ? '}' : 'end') ending = starting + index(content[starting..-1], path, closing) content.slice!(starting..ending) write(path, content) remove_block(path, target) if match?(content, target) end |
.remove_line(path, target) ⇒ Object
Removes line from ‘path`, matching `target`.
257 258 259 260 261 262 263 |
# File 'lib/hanami/utils/files.rb', line 257 def self.remove_line(path, target) content = ::File.readlines(path) i = index(content, path, target) content.delete_at(i) write(path, content) end |
.replace_first_line(path, target, replacement) ⇒ Object
Replace first line in ‘path` that contains `target` with `replacement`.
182 183 184 185 186 187 |
# File 'lib/hanami/utils/files.rb', line 182 def self.replace_first_line(path, target, replacement) content = ::File.readlines(path) content[index(content, path, target)] = "#{replacement}\n" write(path, content) end |
.replace_last_line(path, target, replacement) ⇒ Object
Replace last line in ‘path` that contains `target` with `replacement`.
201 202 203 204 205 206 |
# File 'lib/hanami/utils/files.rb', line 201 def self.replace_last_line(path, target, replacement) content = ::File.readlines(path) content[-index(content.reverse, path, target) - 1] = "#{replacement}\n" write(path, content) end |
.rewrite(path, *content) ⇒ Object
Rewrites the contents of an existing file. If the path already exists, it replaces the contents.
44 45 46 47 48 49 50 |
# File 'lib/hanami/utils/files.rb', line 44 def self.rewrite(path, *content) Hanami::Utils::Deprecation.new( "`.rewrite' is deprecated, please use `.write'" ) raise Errno::ENOENT unless File.exist?(path) write(path, *content) end |
.touch(path) ⇒ Object
Creates an empty file for the given path. All the intermediate directories are created. If the path already exists, it doesn’t change the contents
18 19 20 21 |
# File 'lib/hanami/utils/files.rb', line 18 def self.touch(path) mkdir_p(path) FileUtils.touch(path) end |
.unshift(path, line) ⇒ Object
Adds a new line at the top of the file
144 145 146 147 148 149 |
# File 'lib/hanami/utils/files.rb', line 144 def self.unshift(path, line) content = ::File.readlines(path) content.unshift("#{line}\n") write(path, content) end |
.write(path, *content) ⇒ Object
Creates a new file for the given path and content. All the intermediate directories are created.
30 31 32 33 |
# File 'lib/hanami/utils/files.rb', line 30 def self.write(path, *content) mkdir_p(path) open(path, ::File::CREAT | ::File::WRONLY | ::File::TRUNC, *content) end |