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

database_cleaner-mongoid

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

database_cleaner-mongoid

  • 2.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Database Cleaner Adapter for Mongoid

Build Status Code Climate codecov

Clean your Mongoid databases with Database Cleaner.

See https://github.com/DatabaseCleaner/database_cleaner for more information.

Installation

# Gemfile
group :test do
  gem 'database_cleaner-mongoid'
end

Supported Strategies

The mongoid adapter only has one strategy: the deletion strategy.

Strategy configuration options

:only and :except may take a list of collection names:

# Only delete the "users" collection.
DatabaseCleaner[:mongoid].strategy = :deletion, { only: ["users"] }

# Delete all collections except the "users" collection.
DatabaseCleaner[:mongoid].strategy = :deletion, { except: ["users"] }

Adapter configuration options

#db defaults to the default Mongoid database, but can be specified manually in a few ways:

# Redis URI string:
DatabaseCleaner[:mongoid].db = :logs

# Back to default:
DatabaseCleaner[:mongoid].db = :default

# Multiple Mongoid databases can be specified:
DatabaseCleaner[:mongoid, connection: :default]
DatabaseCleaner[:mongoid, connection: :shard_1]
DatabaseCleaner[:mongoid, connection: :shard_2]

See LICENSE for details.

FAQs

Package last updated on 31 Jan 2021

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