atomic_write
Version, currently 0.1.17 versions
github.com/chris-huxtable/atomic_write.cr
Extends `File` to provide `atomic_write()`, `atomic_replace()`
Nothing has been indexed for 0.1.1 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
atomic_write:
github: chris-huxtable/atomic_write.cr
version: ~> 0.1.1Then run:
shards installshard.yml
No shard.yml has been indexed for 0.1.1. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
atomic_write.cr
Extends File to provide atomic_write().
An atomic write creates a new file at a temporary path. It then writes the new file contents to that file. Lastly it renames it to the original path. This dramatically reduces the opportunity for file corruption.
Installation
Add this to your application's shard.yml:
dependencies:
atomic_write:
github: chris-huxtable/atomic_write.cr
Usage
require "atomic_write"
Atomic write:
File.atomic_write("some/path") { |fd| fd << "hello world" }
Atomic append:
File.atomic_write("some/path", append: true) { |fd| fd << "hello world" }
Atomic copy:
File.atomic_copy("some/src/path", "some/dst/path")
Atomic replace:
File.atomic_replace("some/src/path") { |src_fd, dst_fd| dst_fd << "hello" << src_fd.gets_to_end }
Contributing
- Fork it ( https://github.com/chris-huxtable/atomic_write.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- Chris Huxtable - creator, maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.1.1- Tagged
- Mar 23, 2022
- Commit
90d00bc4f391- Indexed
- not yet
Dependents
Repository
github.com/chris-huxtable/atomic_write.cr
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 13, 2026
- Synced
- Aug 13, 2026
- Versions
- 7