[0.3.0] - 2021-10-25
Changed
- Allow configuring EzAttributes (PR #3)
class User
extend EzAttributes.configure(getters: false)
attributes :name, :age, email: '[email protected]'
end
User.new(name: 'Matz', age: 22).name
# NoMethodError (undefined method `name' for #<User:0x000055bac152f130>)
- Replace Rubocop with StandardRB