Netrc
Reads and writes netrc files.
Install / Use
/learn @heroku/NetrcREADME
Netrc
This library reads and writes
.netrc files.
API
Read a netrc file:
n = Netrc.read("sample.netrc")
If the file doesn't exist, Netrc.read will return an empty object. If the filename ends in ".gpg", it will be decrypted using GPG.
Read the user's default netrc file.
On Unix: $NETRC/.netrc or $HOME/.netrc (whichever is set first).
On Windows: %NETRC%\_netrc, %HOME%\_netrc, %HOMEDRIVE%%HOMEPATH%\_netrc, or %USERPROFILE%\_netrc (whichever is set first).
n = Netrc.read
Configure netrc to allow permissive files (with permissions other than 0600):
Netrc.configure do |config|
config[:allow_permissive_netrc_file] = true
end
Look up a username and password:
user, pass = n["example.com"]
Write a username and password:
n["example.com"] = user, newpass
n.save
If you make an entry that wasn't there before, it will be appended to the end of the file. Sometimes people want to include a comment explaining that the entry was added automatically. You can do it like this:
n.new_item_prefix = "# This entry was added automatically\n"
n["example.com"] = user, newpass
n.save
Have fun!
Running Tests
$ bundle install
$ bundle exec ruby -e 'Dir.glob "./test/**/test_*.rb", &method(:require)'
Related Skills
node-connect
347.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
