Skip to content

Instantly share code, notes, and snippets.

@djanowski
Created October 22, 2008 15:21
Show Gist options
  • Save djanowski/18662 to your computer and use it in GitHub Desktop.
Save djanowski/18662 to your computer and use it in GitHub Desktop.
module ActiveRecord
class Base
alias_method :original_to_json, :to_json
end
end
require "json/add/rails"
module ActiveRecord
class Base
alias_method :to_json, :original_to_json
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment