Coder Social home page Coder Social logo

serialize_attributes's People

Contributors

dependabot[bot] avatar jalyna avatar nickcampbell18 avatar psteininger avatar yanniscoding avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

serialize_attributes's Issues

Add predicated method to `boolean` field.

serialize_attributes doesn't add the same predicated method on boolean field that the regular rails attributes have. This might be a nice little addition, so one doesn't have to remember which one, one is using.

Currently:

adhesive = Articles::AdhesiveTape.new(double_sided: true)
adhesive.double_sided? # => NoMethodError: undefined method `double_sided?'

Suggested:

adhesive = Articles::AdhesiveTape.new(double_sided: true)
adhesive.double_sided? # => true

Rename `decimal` to `big_decimal`

Rails' ActiveModel Type names somehow confusingly BigDecimal in Decimal.

This pattern creates friction when creating product. The Open API doesn't know of a Decimal type. This adds an extra step to the creation of product.

One way to solve this issue would be to rename decimal into big_decimal inside SerizalizeAttribute. This would match the actual Ruby class and avoid trouble with OpenAPI.

Another possible option would be to change the generator to do the conversion from decimal to big_decimal

(Big)Decimal attributes don't work immediately after writing

class Model
  serialize_attributes(:opts) do
    attribute :thickness, :decimal
  end
end
object = Model.new
object.thickness = BigDecimal("0.44")
object.opts
#=> { "thickness" => "0.44" }
object.thickness
#=> "0.44"

This does work if the record is saved to the database and reloaded though...

object = Model.first
object.thickness
#=> BigDecimal("0.44")

`BigDecimal` typecasted as string (again)

We thought we had completely fixed BigDecimal typecasting with #37, but the beast is still alive.

variant = Variant.new(decimal: 42.0)
variant.decimal #=> BigDecimal("42.0") # All good!
variant.whatever = "chunky bacon"
variant.decimal #=> "42.0" # Doh!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.