Hi,
I am trying to figure out if the Hashie gem is used anymore.
It used to be working but now if I do the following I get a No such method error:
require "ghee"
gh = Ghee.basic_auth("usr", "pwd")
all_gists = gh.users("nusco").gists
a_gist = all_gists[20]
a_gist.url # => "No such method"
a_gist.description # => "No such method"
a_gist.star
Have you removed it and switched back to a plain ruby hash or am I missing something here?
Thanks