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