
Research
Security News
Malicious npm Package Wipes Codebases with Remote Trigger
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
= RAKE -- Ruby Make
home :: https://github.com/ruby/rake
bugs :: https://github.com/ruby/rake/issues
docs :: http://docs.seattlerb.org/rake/
build :: {}[https://travis-ci.org/ruby/rake]
== Description
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are specified in standard Ruby syntax.
Rake has the following features:
Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax. No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
Users can specify tasks with prerequisites.
Rake supports rule patterns to synthesize implicit tasks.
Flexible FileLists that act like arrays but know about manipulating file names and paths.
A library of prepackaged tasks to make building rakefiles easier. For example, tasks for building tarballs and publishing to FTP or SSH sites. (Formerly tasks for building RDoc and Gems were included in rake but they're now available in RDoc and RubyGems respectively.)
Supports parallel execution of tasks.
== Installation
=== Gem Installation
Download and install rake with the following.
gem install rake
== Usage
=== Simple Example
First, you must write a "Rakefile" file which contains the build rules. Here's a simple example:
task default: %w[test]
task :test do ruby "test/unittest.rb" end
This Rakefile has two tasks:
Running the "rake" command without any options will cause it to run the "default" task in the Rakefile:
% ls Rakefile test/ % rake (in /home/some_user/Projects/rake) ruby test/unittest.rb ....unit test output here...
Type "rake --help" for all available options.
== Resources
=== Rake Information
=== Presentations and Articles about Rake
== Other Make Re-envisionings ...
Rake is a late entry in the make replacement field. Here are links to other projects with similar (and not so similar) goals.
== Credits
[Ryan Dlugosz] For the initial conversation that sparked Rake.
[Nobuyoshi Nakada nobu@ruby-lang.org] For the initial patch for rule support.
[Tilman Sauerbeck tilman@code-monkey.de] For the recursive rule patch.
[Eric Hodel] For aid in maintaining rake.
== License
Rake is available under an MIT-style license.
:include: MIT-LICENSE
= Other stuff
Author:: Jim Weirich jim.weirich@gmail.com Requires:: Ruby 1.8.7 or later License:: Copyright Jim Weirich. Released under an MIT-style license. See the MIT-LICENSE file included in the distribution.
== Warranty
This software is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular purpose.
FAQs
Unknown package
We found that rake demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.
Security News
New CNA status enables OpenJS Foundation to assign CVEs for security vulnerabilities in projects like ESLint, Fastify, Electron, and others, while leaving disclosure responsibility with individual maintainers.