remove trailing spaces and blank lines

This commit is contained in:
Stella Rouzi 2014-08-18 21:26:45 +03:00
parent a1ed852287
commit f91467a00a
15 changed files with 259 additions and 37 deletions

View file

@ -1,6 +1,6 @@
class Answer < ActiveRecord::Base
attr_accessible :title
has_many :qanswers
has_many :questions, through: :qanswers

View file

@ -3,6 +3,6 @@ class Qanswer < ActiveRecord::Base
belongs_to :question
belongs_to :answer, dependent: :delete
has_and_belongs_to_many :registrations
end

View file

@ -1,5 +1,5 @@
class QuestionType < ActiveRecord::Base
attr_accessible :title, :description
has_many :questions
end