SimpleEncryptable
SimpleEncryptable is based on Rails encryption mechanisms, it is streamline without all the bells and whistles, only the esentials. Heavilly inspired by Pawel Urbanek.
Installation
Add SimpleEncryptable application's Gemfile:
gem 'simple_encryptable'
or
gem 'simple_encryptable', '~> 0.1.0'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simple_encryptable
Usage
With ActiveRecord
objects, the database must have encrypted_[attribute]
column(s). With PORO
objects, attr_accessor [attribute]
must be provided.
You must include SimpleEncryptable
, it is not dynamically loaded into all ActiveRecord
objects. Providing secret
and salt
tokens is crutial. Ideally store them in an .env file or using Rails credentials mechanism.
class User
include SimpleEncryptable
attr_encryptable :secret_attribute, :another_secret_attribute, secret: 'foo', salt: 'bar'
end
Contributing
- Fork it
- Clone the project
git clone [email protected]:[YOUR GITHUB USERNAME]/simple_encryptable.git
cd simple_encryptable
- Install dependencies,
bundle install
- Create your feature branch
git checkout -b my-new-feature
- Write your feature, along with tests for your changes
- Run the tests
rake test
, all must be green - Commit your changes
git commit -am 'Added some feature'
- Push to the branch
git push origin my-new-feature
- Create new Pull Request
License
The gem is available as open source under the terms of the MIT License.