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
- Host: GitHub
- URL: https://github.com/hamdle/ruby_gem_hola
- Owner: hamdle
- Created: 2018-04-27T23:43:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T23:58:42.000Z (about 8 years ago)
- Last Synced: 2025-02-28T16:41:23.189Z (over 1 year ago)
- Language: Ruby
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```