Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
The name Rclid stands for Rapid Command Line Interface Development and is pronounced the way you like.
As its name implies, the goal of this gem is to provide you with a light structure to create command line interfaces like a breeze.
Focusing on rapid development, creating basic single command line application or a more complex one using composite sub commands is achieve in light speed.
If you have ideas that would reduce even more development time and could be that this library, come discuss it with me by creating an issue on github.com.
Install it via rubygems
$ gem install rclid
Rclid is really to get started with. The simplest command line
application is like the following (file hello
):
#!/usr/bin/env
require 'rclid/base'
class Hello < Rclid::Base
def execute()
puts "Hello, World!"
end
end
Hello.new().run()
This will create a command line application that will print Hello, World!
in the console when hello
is called.
Until I improve this section, there is different locations where you can check for samples that use Rclid
The samples directory contains some samples ruby files that use Rclid. They are commented at different locations to explain the features that you can use.
Buildozer is using Rclid for its command line interface. Check here.
Clivers is using Rclid for its command line interface. Check here.
My personal bin is on github. I use Rclid for each command I create.
Fork it
Create either a fix branch or a feature branch
git checkout -b fix-(name-here)
git checkout -b feature-(name-here)
git commit -am 'Message describing the fix or feature'
git push origin feature-(name-here)
FAQs
Unknown package
We found that rclid 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.