huboard / ghee

This is an unofficial ruby client for the Github API. The end goal is a complete, simple, and intuitive ruby API for all things Github.
http://documentup.com/huboard/ghee
MIT License
160 stars 51 forks source link

Has the Hashie gem been removed? #47

Open kstratis opened 7 years ago

kstratis commented 7 years ago

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