method
filesystem_access
Ruby latest stable (v2_5_5)
-
0 notes -
Class: SharedHelpers
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125
- 1_9_3_392
- 2_1_10
- 2_2_9
- 2_4_6
- 2_5_5
- 2_6_3 (0)
- What's this?
filesystem_access(path, action = :write, &block)
public
Rescues permissions errors raised by file system operations (ie. Errno:EACCESS, Errno::EAGAIN) and raises more friendly errors instead.
@param path [String] the path that the action will be attempted to @param action [Symbol, #to_s] the type of operation that will be
performed. For example: :write, :read, :exec
@yield path
@raise [Bundler::PermissionError] if Errno:EACCES is raised in the
given block
@raise [Bundler::TemporaryResourceError] if Errno:EAGAIN is raised in the
given block
@example
filesystem_access("vendor/cache", :write) do FileUtils.mkdir_p("vendor/cache") end