Project

vermelinho

0.0
No release in over a year
Vermilinho attempts to translate 'hello world' in multiple languages
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Vermelinho

Vermilinho unit test vermelinho Ruby Gem

A simple gem example from How to make your own gem💎 Hands on ruby.

Get started

In the interactive shell:

% irb -Ilib -rvermelinho
irb(main):001:0> Vermelinho.hi("english")
=> "hello world"
irb(main):002:0> Vermelinho.hi("spanish")
=> "hola mundo"

You can quit the shell with exit. Use the bin:

% ruby -Ilib ./bin/vermelinho
"🤷‍️"

% ruby -Ilib ./bin/vermelinho spanish
"hola mundo"

Tests

Run the tests with:

rake test

Build gem

Build the gem

gem build *.gemspec