Annotations (#327)

* Add annotate gem to the project
* Annotate models, fixtures, factories and model_specs
* Keep annotations only in Models
* Remove unwanted changes in model specs
* Exclude auto_annotate_models from rubocop
This commit is contained in:
Mukesh Chaudhary
2019-11-30 19:09:55 +05:30
committed by Sojan Jose
parent 60e96f446e
commit c08074b981
18 changed files with 335 additions and 0 deletions

View File

@@ -1,3 +1,23 @@
# == Schema Information
#
# Table name: contacts
#
# id :integer not null, primary key
# avatar :string
# email :string
# name :string
# phone_number :string
# pubsub_token :string
# created_at :datetime not null
# updated_at :datetime not null
# account_id :integer not null
#
# Indexes
#
# index_contacts_on_account_id (account_id)
# index_contacts_on_pubsub_token (pubsub_token) UNIQUE
#
class Contact < ApplicationRecord
include Pubsubable
validates :account_id, presence: true