Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@MatheusRich MatheusRich released this 25 Oct 21:36
· 3 commits to main since this release

[0.3.0] - 2021-10-25

Changed

  • Allow configuring EzAttributes (PR #3)
class User
  extend EzAttributes.configure(getters: false)

  attributes :name, :age, email: 'guest@user.com'
end

User.new(name: 'Matz', age: 22).name
# NoMethodError (undefined method `name' for #<User:0x000055bac152f130>)
  • Replace Rubocop with StandardRB