
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
database_cleaner-remote_api
Advanced tools
Simply creates an HTTP API for cleaning your database to be used by client tests.
Tested against ruby-head, ruby 2.0.0, ruby 1.9.3, jruby-19mode, jruby-head, and rbx-19mode
[]
(https://travis-ci.org/jtescher/database_cleaner-remote_api)
[
]
(https://codeclimate.com/github/jtescher/database_cleaner-remote_api)
[
]
(https://gemnasium.com/jtescher/database_cleaner-remote_api)
[
]
(https://coveralls.io/r/jtescher/database_cleaner-remote_api)
##Installation
Add this line to your application's Gemfile:
gem 'database_cleaner-remote_api', '~> 0.1.0'
And then execute:
$ bundle
Or install it yourself as:
$ gem install database_cleaner-remote_api
Then mount as an engine in your config/routes.rb file.
Rails.application.routes.draw do
...
mount DatabaseCleaner::RemoteApi::Engine => '/database_cleaner' if Rails.env.test?
...
end
First install DatabaseCleaner.
To use with a client application, start rails in the test
environment (or whichever environment mounted the engine).
$ rails server -e test
Then you can clean the database remotely via /mount_path/clean
Given a user in the database:
User.count #=> 1
When you clean the database via any client:
$ curl http://localhost:3000/database_cleaner/clean
Then the users have been removed:
User.count #=> 0
DatabaseCleaner::RemoteApi can also be used between rails servers by the client rails app. First install the gem (You don't have to mount the engine in routes.rb)
Then configure the server URL (if different than localhost:3000/database_cleaner) in
spec/support/database_cleaner-remote_api.rb
require 'database_cleaner/remote_api'
DatabaseCleaner::RemoteApi.configure do |config|
config.server_url = 'http://localhost:3001' # Default: http://localhost:3000
config.server_mount_path = '/db_cleaner' # Default: /database_cleaner
end
Then you can wipe the remote server's database after each test has been run:
RSpec.configure do |config|
config.after(:each) do
DatabaseCleaner::RemoteApi.clean
end
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that database_cleaner-remote_api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.