Created
November 28, 2020 23:41
-
-
Save mauricioszabo/17f109fd8d9662a35400bdf5f31f596c to your computer and use it in GitHub Desktop.
Autoimport problems in Rails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Account | |
def to_json(*args) | |
{amount: BigDecimal("200")}.to_json | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Money | |
end | |
class BigDecimal | |
def to_s(*args) | |
val = self.to_f | |
"R$ #{val}" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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