Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mtwtfss_yaml_db_anonymizer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mtwtfss_yaml_db_anonymizer

  • 0.7
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

MtwtfssYamlDb::Anonymizer

Dumps anonymized database contents to a YAML file. This is useful if you want to develop Rails applications with near-live data from your server. Based on yaml_db.

Installation

Add this line to your application's Gemfile:

gem 'mtwtfss_yaml_db_anonymizer'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mtwtfss_yaml_db_anonymizer

Usage

  • Specify the database fields to anonymize, e.g. in config/initializers/mtwtfss_yaml_db_anonymizer.rb:
MtwtfssYamlDb::Anonymizer.define do
  table :users do
    remove :encrypted_password
    replace :name, with: 'John Doe'
    replace :phone, with: ->(phone) { phone.to_s[0..-3] + '***' }
  end

  table :logs do
    truncate
  end
end
  • Run rake db:data:dump_anonymized on your server. This creates an anonymized dump in db/data.yml

  • Copy db/data.yml to your local machine

  • Run rake db:data:load on your local machine.

Todo

  • Provide capistrano integration

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

MIT License.

FAQs

Package last updated on 19 Apr 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc