An open API service indexing awesome lists of open source software.

https://github.com/hamdle/ruby_gem_hola

Hello world Ruby gem
https://github.com/hamdle/ruby_gem_hola

Last synced: 30 days ago
JSON representation

Hello world Ruby gem

Awesome Lists containing this project

README

          

# ruby_gem_hola
Testing out how to build a ruby gem because I'm having an issue with ruby gems on my system and I want to know how they work.

Based on [this guide](http://guides.rubygems.org/make-your-own-gem) from the rubygems website.

### Build Steps

```
gem build hola.gemspec
gem install ./hola-0.0.0.gem
```

### Run steps

```
irb
require 'hola'
Hola.hi
```