A summary of data about the Ruby ecosystem.

https://github.com/ruby/rake

A make-like build utility for Ruby.
https://github.com/ruby/rake

Keywords

hacktoberfest rake rakefile ruby

Keywords from Contributors

activerecord rubygems activejob mvc rack rspec sinatra documentation-tool rubocop debugger

Last synced: about 17 hours ago
JSON representation

Repository metadata

A make-like build utility for Ruby.

README.rdoc

          = RAKE -- Ruby Make

home :: https://github.com/ruby/rake
bugs :: https://github.com/ruby/rake/issues
docs :: https://ruby.github.io/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. (Formerly
  tasks for building RDoc, Gems, and publishing to FTP were included in rake but they're now
  available in RDoc, RubyGems, and rake-contrib 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:

* A task named "test", which -- upon invocation -- will run a unit test file
  in Ruby.
* A task named "default". This task does nothing by itself, but it has exactly
  one dependency, namely the "test" task. Invoking the "default" task will
  cause Rake to invoke the "test" task as well.

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

* {Rake command-line}[rdoc-ref:doc/command_line_usage.rdoc]
* {Writing Rakefiles}[rdoc-ref:doc/rakefile.rdoc]
* The original {Rake announcement}[rdoc-ref:doc/rational.rdoc]
* Rake {glossary}[rdoc-ref:doc/glossary.rdoc]

=== Presentations and Articles about Rake

* Avdi Grimm's rake series:
  1. {Rake Basics}[https://avdi.codes/rake-part-1-basics/]
  2. {Rake File Lists}[https://avdi.codes/rake-part-2-file-lists-2/]
  3. {Rake Rules}[https://avdi.codes/rake-part-3-rules/]
  4. {Rake Pathmap}[https://avdi.codes/rake-part-4-pathmap/]
  5. {File Operations}[https://avdi.codes/rake-part-5-file-operations/]
  6. {Clean and Clobber}[https://avdi.codes/rake-part-6-clean-and-clobber/]
  7. {MultiTask}[https://avdi.codes/rake-part-7-multitask/]
* {Jim Weirich's 2003 RubyConf presentation}[https://web.archive.org/web/20140221123354/http://onestepback.org/articles/buildingwithrake/]
* Martin Fowler's article on Rake: https://martinfowler.com/articles/rake.html

== 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.

* https://directory.fsf.org/wiki/Bras -- Bras, one of earliest
  implementations of "make in a scripting language".
* http://www.a-a-p.org -- Make in Python
* https://ant.apache.org -- The Ant project
* https://search.cpan.org/search?query=PerlBuildSystem -- The Perl Build System
* https://www.rubydoc.info/gems/rant/0.5.7/frames -- Rant, another Ruby make tool.

== Credits

[Jim Weirich] Who originally created Rake.

[Ryan Dlugosz] For the initial conversation that sparked Rake.

[Nobuyoshi Nakada ] For the initial patch for rule support.

[Tilman Sauerbeck ] For the recursive rule patch.

[Eric Hodel] For aid in maintaining rake.

[Hiroshi SHIBATA] Maintainer of Rake 10 and later

== License

Rake is available under an MIT-style license.

:include: MIT-LICENSE

---

= Other stuff

Author::   Jim Weirich 
Requires:: Ruby 2.0.0 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.

== Historical

Rake was originally created by Jim Weirich, who unfortunately passed away in
February 2014. This repository was originally hosted at
{github.com/jimweirich/rake}[https://github.com/jimweirich/rake/], however
with his passing, has been moved to {ruby/rake}[https://github.com/ruby/rake].

You can view Jim's last commit here:
https://github.com/jimweirich/rake/commit/336559f28f55bce418e2ebcc0a57548dcbac4025

You can {read more about Jim}[https://en.wikipedia.org/wiki/Jim_Weirich] at Wikipedia.

Thank you for this great tool, Jim. We'll remember you.

        

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 7 days ago

Total Commits: 2,518
Total Committers: 217
Avg Commits per committer: 11.604
Development Distribution Score (DDS): 0.762

Commits in past year: 78
Committers in past year: 13
Avg Commits per committer in past year: 6.0
Development Distribution Score (DDS) in past year: 0.474

Name Email Commits
jimweirich j****h@5****f 600
Jim Weirich j****h@g****m 591
SHIBATA Hiroshi h****t@r****g 432
Eric Hodel d****n@s****t 298
dependabot[bot] 4****] 133
quix q****t@g****m 31
tom t****m@5****f 21
Michael Bishop m****e@g****m 18
Code Ass a****a@g****m 17
Peter Vandenberk p****k@m****m 17
Colby Swandale me@c****i 15
Nobuyoshi Nakada n****u@r****g 12
Randy Coulman r****n@g****m 10
Takuya Noguchi t****h@g****m 10
ksss c****i@g****m 7
Luis Lavena l****a@g****m 7
Benoit Daloze e****p@g****m 7
Jeremy Evans c****e@j****t 6
Gonzalo g****0@g****m 6
David Rodríguez d****z@r****t 5
Hongli Lai (Phusion) h****i@p****l 5
Olle Jonsson o****n@g****m 5
James Tucker j****r@g****m 4
Tatsuya Sato t****o@r****m 4
Mark D. Blackwell m****1@g****m 4
Vipul A M v****d@g****m 3
Thomas Scholz t****z@m****m 3
Ryan Davis r****y@z****m 3
Petr Skocik p****k@g****m 3
Kent Wang x****c@g****m 3
and 187 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 20 days ago

Total issues: 56
Total pull requests: 325
Average time to close issues: over 2 years
Average time to close pull requests: about 1 month
Total issue authors: 46
Total pull request authors: 53
Average comments per issue: 1.54
Average comments per pull request: 0.45
Merged pull request: 249
Bot issues: 0
Bot pull requests: 182

Past year issues: 5
Past year pull requests: 88
Past year average time to close issues: N/A
Past year average time to close pull requests: 4 days
Past year issue authors: 4
Past year pull request authors: 12
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.48
Past year merged pull request: 56
Past year bot issues: 0
Past year bot pull requests: 53

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/ruby/rake

Top Issue Authors

  • jasonkarns (4)
  • avdi (4)
  • donnygitsome (2)
  • ioquatix (2)
  • kwatch (2)
  • apatniv (2)
  • x-yuri (1)
  • esotericpig (1)
  • junaruga (1)
  • alexeymuranov (1)
  • tomeon (1)
  • pkqk (1)
  • leonid-shevtsov (1)
  • gillisd (1)
  • satosho (1)

Top Pull Request Authors

  • dependabot[bot] (182)
  • hsbt (33)
  • pvdb (24)
  • tnir (10)
  • henrebotha (3)
  • fatkodima (3)
  • zenspider (2)
  • koic (2)
  • karreiro (2)
  • jeremyevans (2)
  • ksss (2)
  • gemmaro (2)
  • imanpalsingh (2)
  • amatsuda (2)
  • DormancyWang (2)

Top Issue Labels

Top Pull Request Labels

  • dependencies (182)
  • github_actions (166)
  • ruby (7)

Package metadata

gem.coop: rake

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. * Supports parallel execution of tasks.

  • Homepage: https://github.com/ruby/rake
  • Documentation: http://www.rubydoc.info/gems/rake/
  • Licenses: MIT
  • Latest release: 13.3.1 (published 4 months ago)
  • Last Synced: 2026-02-25T20:01:08.900Z (6 days ago)
  • Versions: 93
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,244,385,033 Total
  • Docker Downloads: 5,011,479,988
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Docker downloads count: 0.0%
    • Average: 0.001%
    • Downloads: 0.005%
  • Maintainers (3)
rubygems.org: rake

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. * Supports parallel execution of tasks.

  • Homepage: https://github.com/ruby/rake
  • Documentation: http://www.rubydoc.info/gems/rake/
  • Licenses: MIT
  • Latest release: 13.3.1 (published 4 months ago)
  • Last Synced: 2026-02-24T22:30:49.900Z (7 days ago)
  • Versions: 93
  • Dependent Packages: 80,840
  • Dependent Repositories: 1,222,401
  • Downloads: 1,243,508,038 Total
  • Docker Downloads: 5,011,479,988
  • Rankings:
    • Dependent packages count: 0.0%
    • Docker downloads count: 0.001%
    • Dependent repos count: 0.002%
    • Downloads: 0.008%
    • Average: 0.318%
    • Forks count: 0.871%
    • Stargazers count: 1.024%
  • Maintainers (3)
  • Advisories:
alpine-v3.18: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r2 (published almost 3 years ago)
  • Last Synced: 2026-02-03T16:34:00.117Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.953%
    • Forks count: 2.743%
    • Stargazers count: 5.067%
  • Maintainers (1)
alpine-v3.18: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r2 (published almost 3 years ago)
  • Last Synced: 2026-02-03T16:34:05.005Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.953%
    • Forks count: 2.743%
    • Stargazers count: 5.067%
  • Maintainers (1)
alpine-v3.17: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r1 (published almost 4 years ago)
  • Last Synced: 2026-02-04T00:10:28.708Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.498%
    • Average: 4.377%
    • Stargazers count: 5.153%
    • Dependent packages count: 9.857%
  • Maintainers (1)
alpine-v3.15: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r0 (published over 4 years ago)
  • Last Synced: 2026-02-01T11:44:18.569Z (about 1 month ago)
  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.27%
    • Stargazers count: 3.607%
    • Average: 5.589%
    • Dependent packages count: 16.479%
  • Maintainers (1)
repo1.maven.org: rubygems:rake

Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.

  • Homepage: https://github.com/ruby/rake
  • Documentation: https://appdoc.app/artifact/rubygems/rake/
  • Licenses: MIT
  • Latest release: 10.1.0 (published almost 11 years ago)
  • Last Synced: 2026-02-23T21:03:43.892Z (8 days ago)
  • Versions: 1
  • Dependent Packages: 7
  • Dependent Repositories: 41
  • Docker Downloads: 75,272
  • Rankings:
    • Docker downloads count: 2.98%
    • Dependent repos count: 3.475%
    • Average: 5.851%
    • Forks count: 7.191%
    • Stargazers count: 7.214%
    • Dependent packages count: 8.394%
alpine-edge: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-02T13:37:57.546Z (29 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 3.804%
    • Stargazers count: 5.131%
    • Average: 5.894%
    • Dependent packages count: 14.641%
  • Maintainers (1)
alpine-edge: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-02T11:06:19.083Z (29 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 3.804%
    • Stargazers count: 5.135%
    • Average: 5.895%
    • Dependent packages count: 14.641%
  • Maintainers (1)
alpine-v3.16: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r1 (published almost 4 years ago)
  • Last Synced: 2026-02-02T13:54:06.673Z (29 days ago)
  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.26%
    • Stargazers count: 3.862%
    • Average: 6.197%
    • Dependent packages count: 18.665%
  • Maintainers (1)
alpine-v3.15: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r0 (published over 4 years ago)
  • Last Synced: 2026-02-01T11:42:36.249Z (about 1 month ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.27%
    • Stargazers count: 3.607%
    • Average: 7.866%
    • Dependent packages count: 25.585%
  • Maintainers (1)
proxy.golang.org: github.com/ruby/rake

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/ruby/rake#section-documentation
  • Licenses: mit
  • Latest release: v13.3.1+incompatible (published 4 months ago)
  • Last Synced: 2026-02-23T21:03:31.698Z (8 days ago)
  • Versions: 39
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 6.999%
    • Average: 8.173%
    • Dependent repos count: 9.346%
alpine-v3.16: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r1 (published almost 4 years ago)
  • Last Synced: 2026-02-02T13:51:35.999Z (29 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.26%
    • Stargazers count: 3.862%
    • Average: 8.358%
    • Dependent packages count: 27.311%
  • Maintainers (1)
alpine-v3.17: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r1 (published almost 4 years ago)
  • Last Synced: 2026-02-03T13:42:12.201Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.498%
    • Stargazers count: 5.153%
    • Average: 8.726%
    • Dependent packages count: 27.254%
  • Maintainers (1)
spack.io: ruby-rake

Rake is a Make-like program implemented in Ruby.

  • Homepage: https://github.com/ruby/rake
  • Licenses: []
  • Latest release: 13.0.6 (published almost 3 years ago)
  • Last Synced: 2026-02-23T21:03:42.428Z (8 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 3.404%
    • Stargazers count: 4.752%
    • Average: 16.358%
    • Dependent packages count: 57.274%
  • Maintainers (1)
gem.coop: myprocessor

Write a longer description or delete this line.

  • Homepage: https://github.com/ruby/rake
  • Documentation: http://www.rubydoc.info/gems/myprocessor/
  • Licenses: MIT
  • Latest release: 0.1.0 (published over 5 years ago)
  • Last Synced: 2026-02-23T21:03:31.509Z (8 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,018 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 31.426%
    • Downloads: 94.279%
  • Maintainers (1)
rubygems.org: myprocessor

Write a longer description or delete this line.

  • Homepage: https://github.com/ruby/rake
  • Documentation: http://www.rubydoc.info/gems/myprocessor/
  • Licenses: MIT
  • Latest release: 0.1.0 (published over 5 years ago)
  • Last Synced: 2026-02-23T21:03:32.824Z (8 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,018 Total
  • Rankings:
    • Forks count: 0.805%
    • Stargazers count: 0.94%
    • Dependent packages count: 15.706%
    • Average: 32.181%
    • Dependent repos count: 46.782%
    • Downloads: 96.671%
  • Maintainers (1)
alpine-v3.19: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r2 (published almost 3 years ago)
  • Last Synced: 2026-02-03T13:30:05.005Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
nixpkgs-unstable: rake

Software task management and build automation tool

alpine-v3.20: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r0 (published almost 2 years ago)
  • Last Synced: 2026-02-03T12:21:45.530Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
debian-13: rake

  • Homepage: https://github.com/ruby/rake
  • Documentation: https://packages.debian.org/trixie/rake
  • Licenses:
  • Latest release: 13.2.1-1 (published 19 days ago)
  • Last Synced: 2026-02-13T13:05:58.917Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-12: rake

  • Homepage: https://github.com/ruby/rake
  • Documentation: https://packages.debian.org/bookworm/rake
  • Licenses:
  • Latest release: 13.0.6-3 (published 19 days ago)
  • Last Synced: 2026-02-12T23:15:09.000Z (19 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
alpine-v3.22: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-04T00:10:44.125Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
nixpkgs-23.05: rake

A software task management and build automation tool

alpine-v3.19: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.0.6-r2 (published almost 3 years ago)
  • Last Synced: 2026-02-02T15:28:44.142Z (29 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.21: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r0 (published almost 2 years ago)
  • Last Synced: 2026-02-04T00:11:16.088Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.21: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r0 (published almost 2 years ago)
  • Last Synced: 2026-02-04T00:10:44.023Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.22: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-04T00:11:15.093Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.23: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-03T10:01:25.275Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
alpine-v3.23: ruby-rake-doc

A Ruby task runner, inspired by make (ri docs)

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r1 (published 10 months ago)
  • Last Synced: 2026-02-03T10:01:32.839Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-24.04: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.0.6-3 (published 26 days ago)
  • Last Synced: 2026-02-05T07:37:58.737Z (26 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
debian-11: rake

  • Homepage: https://github.com/ruby/rake
  • Documentation: https://packages.debian.org/bullseye/rake
  • Licenses:
  • Latest release: 13.0.3-1 (published 21 days ago)
  • Last Synced: 2026-02-13T08:14:35.529Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-10: rake

  • Homepage: https://github.com/ruby/rake
  • Documentation: https://packages.debian.org/buster/rake
  • Licenses:
  • Latest release: 12.3.1-3+deb10u1 (published 20 days ago)
  • Last Synced: 2026-02-13T04:15:27.694Z (19 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.10: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.2.1-1 (published 23 days ago)
  • Last Synced: 2026-02-08T06:32:48.431Z (23 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-23.10: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.0.6-3 (published 22 days ago)
  • Last Synced: 2026-02-09T20:04:54.156Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
nixpkgs-23.11: rake

A software task management and build automation tool

nixpkgs-24.05: rake

A software task management and build automation tool

ubuntu-22.04: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.0.6-2 (published 25 days ago)
  • Last Synced: 2026-02-06T20:30:39.552Z (25 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-20.04: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.0.1-4 (published 24 days ago)
  • Last Synced: 2026-02-07T20:14:08.865Z (24 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
alpine-v3.20: ruby-rake

A Ruby task runner, inspired by make

  • Homepage: https://github.com/ruby/rake
  • Licenses: MIT
  • Latest release: 13.2.1-r0 (published almost 2 years ago)
  • Last Synced: 2026-02-03T12:20:34.876Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
ubuntu-23.04: rake

  • Homepage: https://github.com/ruby/rake
  • Licenses:
  • Latest release: 13.0.6-3 (published 21 days ago)
  • Last Synced: 2026-02-11T00:29:26.271Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
nixpkgs-24.11: rake

Software task management and build automation tool


Dependencies

Gemfile rubygems
  • bundler >= 0 development
  • coveralls >= 0 development
  • minitest = 5.15.0 development
  • rubocop ~> 1.12.1 development
.github/workflows/coverage.yml actions
  • actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
  • ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
.github/workflows/lint.yml actions
  • actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
  • ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
.github/workflows/test.yml actions
  • actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
  • ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
.github/workflows/dependabot_automerge.yml actions
  • dependabot/fetch-metadata v1 composite
  • lewagon/wait-on-check-action v1.3.3 composite
.github/workflows/gh-pages.yml actions
  • actions/checkout b4ffde65f46336ab88eb53be808477a3936bae11 composite
  • actions/configure-pages v4 composite
  • actions/deploy-pages v4 composite
  • actions/upload-pages-artifact v3 composite
  • ruby/setup-ruby d4526a55538b775af234ba4af27118ed6f8f6677 composite
rake.gemspec rubygems
.github/workflows/push_gem.yml actions
  • actions/checkout 08c6903cd8c0fde910a37f88322edcfb5dd907a8 composite
  • ruby/setup-ruby d5126b9b3579e429dd52e51e68624dda2e05be25 composite
  • rubygems/release-gem 1c162a739e8b4cb21a676e97b087e8268d8fc40b composite
  • step-security/harden-runner 95d9a5deda9de15063e7595e9719c11c38c90ae2 composite

Score: 36.45910379934346