Method: Bundler::FileUtils::Entry_#stat!
- Defined in:
- lib/bundler/vendor/fileutils/lib/fileutils.rb
#stat! ⇒ Object
2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 |
# File 'lib/bundler/vendor/fileutils/lib/fileutils.rb', line 2182 def stat! return @stat if @stat if lstat! and lstat!.symlink? @stat = File.stat(path()) else @stat = lstat! end @stat rescue SystemCallError nil end |