forward3d / rbhive

Ruby gem for querying Apache Hive
http://www.forward3d.com
MIT License
98 stars 74 forks source link

Remove hashie dependency #10

Closed kovyrin closed 10 years ago

kovyrin commented 11 years ago

TCLIConnection constructor had a separate check for Hashie (third-party hash implementation) w/o making sure Hashie classes are actually available. So this check would blow up in any project, that didn't use Hashie gem.

I've replaced it with a simple piece of code that would convert all incoming hash keys to symbols just as it would happen before. Hashie mimicks normal Hash class behaviour so it should work for them as well.

andytinycat commented 10 years ago

Thanks!