I am extremely new to ruby as well as gem making. I made a simple gem that webscrapes some information depending on the input. However, to use my gem I need to go into the interpreter (irb) and require my gem and then call the method with some parameters.
Suppose the gem is called foo
.
Suppose the method is called print_website(x) # where x is a string
.
I want to be able to do something like:
$ foo test.com
and it should automatically call the method and execute it.
Thanks in advance! Please ask me for clarification if i was unclear! :D
Try it
Edit bin/foo
Add following to Gemfile
Push gem. Now you published command line utility
Simple, just run
bundle gem mygem -b
when creating your gem.