Rake
A make-like build utility for Ruby. (by ruby)
Trollop
Optimist is a commandline option parser for Ruby that just gets out of your way. (by ManageIQ)
Rake | Trollop | |
---|---|---|
18 | 2 | |
2,363 | 255 | |
0.3% | 0.0% | |
7.8 | 6.7 | |
6 days ago | 4 days ago | |
Ruby | Ruby | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Rake
Posts with mentions or reviews of Rake.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-12-06.
-
2. Creating a Sandbox Environment
btw, I use Rake to make the setup the proper symlinks to my dotfiles repository. Maybe I'll write about that one day.
-
What’s with DevOps engineers using `make` of all things?
Some competitors - Rake (ruby) - Bake - Earthly - SCons - doit
-
An Introduction to Metaprogramming in Ruby
where every argument except the name can either be missing, single (value) or multiple (array). Sure, it has the "advantage" that it's syntactically valid Ruby code, but it then requires some 70 lines of awful code to actually parse that data into a usable construct ([1] up to L145).
[1] https://github.com/ruby/rake/blob/7b50e9dc37abc57fd365c16cb1...
-
Taskfile: A Modern Alternative to Makefile
Rake[0] is still the best ‘make-like’ build tool I’ve used for general purpose stuff. The syntax is nice and it’s just Ruby which is a delight. I briefly used Mage (similar, but Go) and it was fine too.
[0]: https://github.com/ruby/rake
-
Knit: Making a Better Make
Yup! Two well-established alternatives are "rake", in the Ruby community, and "just" in the Rust community.
Rake is fully programmable in Ruby. Just is a bit less flexible, but it doesn't require learning Ruby, and it's quite pleasant to use.
https://ruby.github.io/rake/
-
Anyone have any good Ruby repos that showcase best practices?
Rake is a great way to homogenize and declare common behaviors of your script (called "tasks"); a guide.
-
Write your own Domain Specific Language in Ruby
In Ruby there's a gem named Rake. This gem provides a DSL to create tasks to be run from the command line. A small example looks like this:
-
Ruby
I think you're referring to Rake. https://ruby.github.io/rake/
- Fastlane: iOS 和 Android 的自动化构建工具
-
What about a CMake transpiler?
We use [Rake](https://github.com/ruby/rake) instead - it's awesome.
Trollop
Posts with mentions or reviews of Trollop.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-04-07.
-
Command line parser library, which one do you like the most, regardless of language?
My favorite is probably trollop but I haven’t needed to write a cli in years. Clap is also great, but the best I’ve used is probably Click which is saying something because I absolutely hate Python. Also deploying is a completely separate problem from which library is best. Click is by far the worst to deploy, then Clap, then trollop.
- Show HN: Piou – Build beautiful command-line interfaces with type validation
What are some alternatives?
When comparing Rake and Trollop you can also consider the following projects:
Thor - Thor is a toolkit for building powerful command-line interfaces.
GLI - Make awesome command-line applications the easy way
Slop - Simple Lightweight Option Parsing - ✨ new contributors welcome ✨
Cocaine