Skip to content

Class not getting initialized #368

Description

@jayceef

I have a normal class in my Rails 5 app:

class Routine < ApplicationRecord
belongs_to :user
end

irb: a= Routine.new(:elevation => 2343)
=> #<Routine:0x007ff2a19c2ea8
elevation: 2343

But when I add the Virtus gem the class doesn't get initialized:

class Routine < ApplicationRecord
include Virtus.model
belongs_to :user
attribute :elevation, Integer
end

irb: ad = Routine.new(:elevation => 133)
=>< Routine:0x007ff29e860e78 not initialized>

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions