inline_encryption Build StatusCode Climate

Simple encryption relying on convention and designed to be used inline as string replacements.

Usage

Imagine you have a file named database.yml that contains passwords.

Before:

password: '123456'

After:

password: <%= InlineEncryption.decrypt(encrypted stuff goes here) %>