views:

38

answers:

1

I ran into a problem with ActiveRecord serialization. Apparently, it has trouble serializing hashes where ranges are keys. I found the Rails Lighthouse ticket (https://rails.lighthouseapp.com/projects/8994/tickets/3067-activerecord-cant-deserialize-hashes-with-range-keys). I've never contributed to an open-source project before, and this could very well take way more time and effort than is worth it for me at this point.

I'm just curious as to how one develops a fix and pushes the patch.

EDIT: I found this link on the Lighthouse page: https://rails.lighthouseapp.com/projects/8994/sending-patches

However, I'd still appreciate any tips, advice, pitfalls to avoid etc. For a problem like the serialization, would a fix to the serialization library be better, or perhaps a modification of ActiveRecord/ActiveSupport?

+1  A: 

Here's all you'll need http://guides.rubyonrails.org/contributing_to_rails.html, there are some awesome people helping on irc.freenode.net (#rubyonrails, #railsbridge)

Elad Meidar