From 5054d2a4496e5d9ff7c02bf1edf7ed067e0544cf Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Wed, 7 Dec 2011 11:56:31 -0800 Subject: [PATCH] Whitespace fixes --- lib/active_model/serializer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/active_model/serializer.rb b/lib/active_model/serializer.rb index 6e3ea6cb..8281e26e 100644 --- a/lib/active_model/serializer.rb +++ b/lib/active_model/serializer.rb @@ -48,7 +48,7 @@ module ActiveModel # class PostSerializer < ActiveModel::Serializer # attributes :title, :body # has_many :comments - # + # # private # # def attributes @@ -56,7 +56,7 @@ module ActiveModel # hash.merge!(:email => post.email) if author? # hash # end - # + # # def author? # post.author == scope # end