lib/rails_erd/entity.rb in rails-erd-0.1.0 vs lib/rails_erd/entity.rb in rails-erd-0.1.1
- old
+ new
@@ -1,12 +1,12 @@
module RailsERD
- # Entities represent your +ActiveRecord+ models. Entities may be connected
+ # Entities represent your Active Record models. Entities may be connected
# to other entities.
class Entity
# The domain in which this entity resides.
attr_reader :domain
- # The +ActiveRecord+ model that this entity corresponds to.
+ # The Active Record model that this entity corresponds to.
attr_reader :model
def initialize(domain, model) #:nodoc:
@domain, @model = domain, model
end