Skip to content

Instantly share code, notes, and snippets.

@mauricioszabo
Created November 28, 2020 23:41
Show Gist options
  • Save mauricioszabo/17f109fd8d9662a35400bdf5f31f596c to your computer and use it in GitHub Desktop.
Save mauricioszabo/17f109fd8d9662a35400bdf5f31f596c to your computer and use it in GitHub Desktop.
Autoimport problems in Rails
class Account
def to_json(*args)
{amount: BigDecimal("200")}.to_json
end
end
class Money
end
class BigDecimal
def to_s(*args)
val = self.to_f
"R$ #{val}"
end
end
class TestController < ApplicationController
def index
render json: Account.new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment