This gem enables you to read and write dotgpg-encrypted files using an interface based on Dotenv::Environment.
Installation
Add this line to your application's Gemfile:
gem 'dotgpg-environment'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dotgpg-environment
Usage
# create a new file
e = Dotgpg::Environment.new 'foo.gpg'
# set some values
e['FOO'] = "BAR"
e['BAZ'] = "BAT"
# save an encrypted version
e.write
# read in an existing file
f = Dotgpg::Environment.new 'foo.gpg'
# a call to #read is implicit if the provided file already exists
f['FOO']
# => "BAR"
# set values in the current ENV
f.apply!
# set values in the current ENV but don't overwrite existing values
f.apply
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
to create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
- Fork it ( https://github.com/modosc/dotgpg-environment/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