active_attr icon indicating copy to clipboard operation
active_attr copied to clipboard

What ActiveModel left out

Results 52 active_attr issues
Sort by recently updated
recently updated
newest added

Hello, I'm considering using this gem but I don't know if this is possible to do: ```ruby class Person include ActiveAttr::Attributes attribute :first_name attribute :last_name # we retreive data from...

## Summary The model including `ActiveAttr::Model` should reject attribute changes by throwing FrozenError after`#freeze` is called. ## Reproduction ```rb require "bundler/inline" gemfile(true) do gem "active_attr", git: "https://github.com/cgriego/active_attr.git" gem "rspec" end...