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 21 hours ago
JSON representation
Repository metadata
A make-like build utility for Ruby.
- Host: GitHub
- URL: https://github.com/ruby/rake
- Owner: ruby
- License: mit
- Created: 2014-05-21T21:11:31.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2026-02-10T00:47:59.000Z (22 days ago)
- Last Synced: 2026-02-23T10:10:02.849Z (8 days ago)
- Topics: hacktoberfest, rake, rakefile, ruby
- Language: Ruby
- Homepage: https://ruby.github.io/rake
- Size: 3.53 MB
- Stars: 2,436
- Watchers: 83
- Forks: 629
- Open Issues: 77
- Releases: 81
-
Metadata Files:
- Readme: README.rdoc
- Changelog: History.rdoc
- Contributing: CONTRIBUTING.rdoc
- License: MIT-LICENSE
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
- Name: The Ruby Programming Language
- Login: ruby
- Email: info@ruby-lang.org
- Kind: organization
- Description: Repositories related to the Ruby Programming language
- Website: https://www.ruby-lang.org/
- Location: Matsue, Japan
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/210414?v=4
- Repositories: 171
- Last ynced at: 2023-04-09T03:40:20.875Z
- Profile URL: https://github.com/ruby
GitHub Events
Total
- Release event: 1
- Delete event: 46
- Member event: 1
- Pull request event: 136
- Fork event: 15
- Issues event: 3
- Watch event: 99
- Issue comment event: 39
- Push event: 66
- Pull request review comment event: 4
- Pull request review event: 8
- Create event: 43
Last Year
- Release event: 1
- Delete event: 37
- Member event: 1
- Pull request event: 103
- Fork event: 10
- Issues event: 3
- Watch event: 60
- Issue comment event: 28
- Push event: 52
- Pull request review comment event: 4
- Pull request review event: 8
- Create event: 34
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 | 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:
- ruby-lang.org: 3
- redhat.com: 3
- cpan.org: 2
- shopify.com: 2
- akamai.com: 1
- anjbe.name: 1
- foxmail.com: 1
- zzak.io: 1
- subledger.com: 1
- injixo.com: 1
- realdigitalmedia.com: 1
- defself.com: 1
- andylindeman.com: 1
- codebright.net: 1
- stinky.com: 1
- locaweb.com.br: 1
- futurelearn.com: 1
- zacharyscott.net: 1
- ggasoftware.com: 1
- treat.flood.pivotallabs.com: 1
- rudisu.li: 1
- mgail.com: 1
- nleger.com: 1
- michelboaventura.com: 1
- segment7.net: 1
- mac.com: 1
- colby.fyi: 1
- jeremyevans.net: 1
- riseup.net: 1
- phusion.nl: 1
- rakuten.com: 1
- me.com: 1
- zenspider.com: 1
- keathley.io: 1
- .(none): 1
- server.fake: 1
- pfenniger.name: 1
- avdi.org: 1
- dio.jp: 1
- rubinick.dev: 1
- samsara.com: 1
- znuny.com: 1
- teoljungberg.com: 1
- wyeworks.com: 1
- daniel.priv.no: 1
- yukinishijima.net: 1
- onlyoffice.com: 1
- suse.de: 1
- kursator.de: 1
- envylabs.com: 1
- archlinux.org: 1
- designingpatterns.com: 1
- pragprog.com: 1
- fluentradical.com: 1
- danielholmes.org: 1
- alum.mit.edu: 1
- orien.io: 1
- braingourmets.com: 1
- morearty.com: 1
- matthewbradley.me: 1
- mattenoble.com: 1
- hezmatt.org: 1
- atg.auto: 1
- mailq.de: 1
- callcc.net: 1
- mbf.nifty.com: 1
- astori.fr: 1
- rubypair.com: 1
- noragh.com: 1
- prevailhs.com: 1
- thoughtbot.com: 1
- trusteer.com: 1
- artsymail.com: 1
- validic.com: 1
- commercekitchen.com: 1
- iki.fi: 1
- m4x.org: 1
- wg-e26.de: 1
- stepsecurity.io: 1
- salimane.com: 1
- fastmail.fm: 1
- zephyros-systems.co.uk: 1
- rdil.rocks: 1
- arndt.io: 1
- annesley.cc: 1
- paulisageek.com: 1
- jcs.org: 1
- ya.ru: 1
- kampers.net: 1
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
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
- Total packages: 42
-
Total downloads:
- rubygems: 2,487,897,107 total
- Total docker downloads: 10,023,035,248
- Total dependent packages: 80,852 (may contain duplicates)
- Total dependent repositories: 1,222,442 (may contain duplicates)
- Total versions: 273
- Total maintainers: 6
- Total advisories: 1
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
- Homepage: https://github.com/ruby/rake
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/by-name/ra/rake/package.nix#L15
- Licenses: MIT
- Latest release: 13.2.1 (published about 1 month ago)
- Last Synced: 2026-02-03T22:30:25.136Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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
- Homepage: https://github.com/ruby/rake
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/development/tools/build-managers/rake/default.nix#L11
- Licenses: MIT
- Latest release: 13.0.6 (published about 1 month ago)
- Last Synced: 2026-02-03T21:25:15.289Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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
alpine-v3.23: ruby-rake-doc
A Ruby task runner, inspired by make (ri docs)
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 (19 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%
nixpkgs-23.11: rake
A software task management and build automation tool
- Homepage: https://github.com/ruby/rake
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-23.11/pkgs/development/tools/build-managers/rake/default.nix#L11
- Licenses: MIT
- Latest release: 13.0.6 (published 30 days ago)
- Last Synced: 2026-02-03T20:55:35.502Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
nixpkgs-24.05: rake
A software task management and build automation tool
- Homepage: https://github.com/ruby/rake
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.05/pkgs/development/tools/build-managers/rake/default.nix#L15
- Licenses: MIT
- Latest release: 13.2.1 (published 30 days ago)
- Last Synced: 2026-02-03T19:27:16.005Z (28 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)
nixpkgs-24.11: rake
Software task management and build automation tool
- Homepage: https://github.com/ruby/rake
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.11/pkgs/development/tools/build-managers/rake/default.nix#L15
- Licenses: MIT
- Latest release: 13.2.1 (published about 1 month ago)
- Last Synced: 2026-02-03T18:22:50.996Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
Dependencies
- bundler >= 0 development
- coveralls >= 0 development
- minitest = 5.15.0 development
- rubocop ~> 1.12.1 development
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- ruby/setup-ruby 319066216501fbd5e2d568f14b7d68c19fb67a5d composite
- dependabot/fetch-metadata v1 composite
- lewagon/wait-on-check-action v1.3.3 composite
- 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
- actions/checkout 08c6903cd8c0fde910a37f88322edcfb5dd907a8 composite
- ruby/setup-ruby d5126b9b3579e429dd52e51e68624dda2e05be25 composite
- rubygems/release-gem 1c162a739e8b4cb21a676e97b087e8268d8fc40b composite
- step-security/harden-runner 95d9a5deda9de15063e7595e9719c11c38c90ae2 composite
Score: 36.45910379934346