netzke / netzke-core

Framework for Sencha Ext JS + Ruby on Rails client-server components
http://netzke.org
Other
263 stars 77 forks source link

String#jsonify for '_meta' #44

Closed scho closed 12 years ago

scho commented 12 years ago

There have been some changes in the ActiveSupport::Inflector class since Rails 3.2.0:

#  rails 3.1.x:
'_meta'.camelize(:lower) # => '_meta'
# rails 3.2.x:
'_meta'.camelize(:lower) # => 'Meta'

So this breaks String#jsonify as well as Symbol#jsonify.

mxgrn commented 12 years ago

Thanks for the fix!