
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
It runs the Jest server in watch mode, so that it can run specs more efficiently when instructed.
Add this line to your application's Gemfile:
Add Guard::Jest to your Gemfile
:
group :development, :test do
gem 'guard-jest'
end
Add the default Guard::Jest template to your Guardfile
by running:
$ guard init jest
Please read the Guard usage documentation.
Guard::Jest can be adapted to all kind of projects. Please read the Guard documentation for more information about the Guardfile DSL.
guard 'jest' do
watch(%r{spec/javascripts/spec\.(js\.coffee|js|coffee)$}) { "spec/javascripts" }
watch(%r{spec/javascripts/.+_spec\.(js\.coffee|js|coffee)$})
watch(%r{app/assets/javascripts/(.+?)\.(js\.coffee|js|coffee)$}) { |m| "spec/javascripts/#{m[1]}_spec.#{m[2]}" }
end
From the Guard console, typeing 'j u' and pressing enter will trigger a snaphot update.
There are many options that can customize Guard::Jest to your needs. Options are simply supplied as hash when
defining the Guard in your Guardfile
:
guard 'jest', jest_cmd: './node_modules/jest-cli/bin/jest.js' do
...
end
The server options configures the server environment that is needed to run Guard::Jest:
directory: <cwd> # Directory that should be used for running Jest
config_file: nil # Path to a [Jest configuration file](https://facebook.github.io/jest/docs/configuration.html)
jest_cmd: jest # Command to execute in order to start the Jest server
Bug reports and pull requests are welcome on GitHub at https://github.com/nathanstitt/guard-jest.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that guard-jest 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.