I just downloaded the wrapper gem to connect to linkedin with Rby by doing
gem install linkedin
The origin of this gem is here: https://github.com/genadinik/linkedin
Now I am learning IRB to try to test it.
The purpose of this gem is to be the Ruby wrapper for handling LinkedIn connections. But I am not sure how to test that it is working. How would I go about invoking it and testing that my connection keys work to connect, and then running commands?
Thanks!
You basically take the example code you’re trying to test, and input into IRB one line at a time. For example, if I wanted to test the sample code from https://github.com/genadinik/linkedin:
And so on. The line after your input starting with => represents the return value of your input. Hope that helps!