Sha256: 96f9bae94b7381aad34d6fb6b4c1e13e63094b5c4b27607915db3e0fb40970ab
Contents?: true
Size: 815 Bytes
Versions: 5
Compression:
Stored size: 815 Bytes
Contents
# FileUtils Namespace for several file utility methods for copying, moving, removing, etc. ## Installation Add this line to your application's Gemfile: ```ruby gem 'fileutils' ``` And then execute: $ bundle Or install it yourself as: $ gem install fileutils ## Usage Just call `FileUtils` methods. For example: ```ruby FileUtils.mkdir("somedir") # => ["somedir"] FileUtils.cd("/usr/bin") FileUtils.pwd # => "/usr/bin" ``` You can find a full method list in the [documentation](https://ruby-doc.org/stdlib/libdoc/fileutils/rdoc/FileUtils.html). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/fileutils. ## License The gem is available as open source under the terms of the [2-Clause BSD License](https://opensource.org/licenses/BSD-2-Clause).
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
fileutils-1.6.0 | README.md |
fileutils-1.5.0 | README.md |
fileutils-1.4.1 | README.md |
fileutils-1.4.0 | README.md |
fileutils-1.3.0 | README.md |