Browse Source

remove puts statement

Andrew Cantino 9 years ago
parent
commit
f0951da149
1 changed files with 2 additions and 2 deletions
  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