Closed netuoso closed 6 years ago
Users will encounter an error relating to Undefined Method Parse for Time Class if the Time gem is not loader first inside the helper file.
This minor change will help reduce the issues for users.
A current workaround is to include require 'time' inside the script that is requiring the bittrex gem.
require 'time'
bittrex
Thanks for the contribution, updates can be found in v0.0.4 https://rubygems.org/gems/bittrex/versions/0.0.4
v0.0.4
Users will encounter an error relating to Undefined Method Parse for Time Class if the Time gem is not loader first inside the helper file.
This minor change will help reduce the issues for users.
A current workaround is to include
require 'time'
inside the script that is requiring thebittrex
gem.