Closed ryanmjacobs closed 9 years ago
Ruby 1.8.7 and 1.9.2 are both EOL as of July 2014 [1].
:-1: for any change solely to support these versions of ruby, unless it's in a branch that explicitly exists for legacy compatibility.
On a related note, 1.9.3 is also deprecated and will be EOL at the end of February 2015 [2].
The correct solution to #8 is to bump the minimum required ruby version to something > 1.9.3
.
@BM5k Should be fixed :grinning:
:clap: This is a much better approach. My personal opinion is that 1.9.2 may be too old, too. I guess the maintainer(s) will have to make that call.
Thank a lot, I'm all for not supporting ruby 1.8.
@ryanmjacobs Could you rebase this branch and remove the first commit and it's revert?
Squashed. :grin:
Thanks a lot!
Fixes https://github.com/monterail/redis-browser/issues/8.
Ruby 1.8 doesn't support
{key: "value"}
notation. It only supports{:key => "value"}
notation.See http://stackoverflow.com/a/8014115.