Sha256: d6cfc014ae155ab25f1661c52ca5fed6298fde8007df301de556315a3723a60c

Contents?: true

Size: 1.25 KB

Versions: 13

Compression:

Stored size: 1.25 KB

Contents

# Netrc

This library reads and writes
[`.netrc` files](http://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-File.html).

## 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](http://www.gnupg.org/).

Read the user's default netrc file. On Unix: `$HOME/.netrc`.
On Windows: `%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 turn test

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
suzuko-0.1.8 vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/Readme.md
suzuko-0.1.7 vendor/bundle/ruby/2.0.0/gems/netrc-0.10.3/Readme.md
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/netrc-0.10.3/Readme.md
mastermind_adeybee-0.1.3 vendor/bundle/ruby/2.2.0/gems/netrc-0.10.3/Readme.md
mastermind_adeybee-0.1.2 vendor/bundle/ruby/2.2.0/gems/netrc-0.10.3/Readme.md
mastermind_adeybee-0.1.1 vendor/bundle/ruby/2.2.0/gems/netrc-0.10.3/Readme.md
vagrant-cloudstack-1.2.0 vendor/bundle/gems/netrc-0.10.3/Readme.md
vagrant-cloudstack-1.1.0 vendor/bundle/gems/netrc-0.10.3/Readme.md
netrc-0.10.3 Readme.md
netrc-0.10.2 Readme.md
netrc-0.10.1 Readme.md
netrc-0.10.0 Readme.md
netrc-0.9.0 Readme.md