소스 검색

remove puts statement

Andrew Cantino 9 년 전
부모
커밋
f0951da149
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/concerns/markdown_class_attributes.rb

+ 2 - 2
app/concerns/markdown_class_attributes.rb

@@ -11,7 +11,7 @@ module MarkdownClassAttributes
 
           def #{attribute}
             if self.class.#{attribute}.is_a?(Proc)
-              Utils.unindent(self.instance_eval(&self.class.#{attribute}) || "No #{attribute} has been set.").tap {|i| p i}
+              Utils.unindent(self.instance_eval(&self.class.#{attribute}) || "No #{attribute} has been set.")
             else
               Utils.unindent(self.class.#{attribute} || "No #{attribute} has been set.")
             end
@@ -29,4 +29,4 @@ module MarkdownClassAttributes
       end
     end
   end
-end
+end