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
11 11
 
12 12
           def #{attribute}
13 13
             if self.class.#{attribute}.is_a?(Proc)
14
-              Utils.unindent(self.instance_eval(&self.class.#{attribute}) || "No #{attribute} has been set.").tap {|i| p i}
14
+              Utils.unindent(self.instance_eval(&self.class.#{attribute}) || "No #{attribute} has been set.")
15 15
             else
16 16
               Utils.unindent(self.class.#{attribute} || "No #{attribute} has been set.")
17 17
             end
@@ -29,4 +29,4 @@ module MarkdownClassAttributes
29 29
       end
30 30
     end
31 31
   end
32
-end
32
+end