RubyGems Navigation menu

save_file 1.0.34

This class can be used to save a file in a convenient way, by giving you a very simple save-file functionality. I liked the name 'save_file()' a lot, and I found that I was needing such a functionality in many of my projects, so I made a tiny gem that would do exactly this. Note that the recommended methods are write_what_into() and append_what_into() - at the least for me, this is easy to remember. Of course you can use File.open() or File.new() already as-is in block variant, so there is no need to use a gem like this one here - but I did not want to have to deal with file permissions or missing files or similar all on my own, via the File API that I do not as easily remember. So I just wrote an API that is simple enough for my use cases. Usage examples: require 'save_file' save_what_into('test', '/tmp/test.txt') You can also use: SaveFile.write_what_into(what, into) SaveFile.append_what_into(what, into) The main module can be included into a class, which then will have these methods available. This project has no external dependencies, deliberately so. It has to remain stand-alone. Version 1.0.3 made it more clear when to use save_file() and when to use append_into_file().

Gemfile:
= 複製 已複製

安裝:
=

版本列表:

  1. 1.0.35 - November 11, 2023 (9.0 KB)
  2. 1.0.34 - September 15, 2021 (9.0 KB)
顯示所有版本(共 34)

擁有者:

Pushed by:

作者:

  • Robert A. Heiler

SHA 256 checksum:

d2e17e06680a38f2db63a4aea125d48ecb67644217f8cf4d3894b1898862ee52

總下載次數 34,838

這個版本 3,188

License:

MIT

Ruby 版本需求: >= 2.5.8

RubyGems 版本需求: >= 3.2.27

相關連結: