X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=vendor%2Frails%2Factionmailer%2Flib%2Faction_mailer%2Fvendor%2Ftmail-1.2.3%2Ftmail%2Fcore_extensions.rb;fp=vendor%2Frails%2Factionmailer%2Flib%2Faction_mailer%2Fvendor%2Ftmail-1.2.3%2Ftmail%2Fcore_extensions.rb;h=0000000000000000000000000000000000000000;hb=36d9f3351a3b4e8159279445190e2287ffdea86c;hp=da62c33bbfbbe3de555f9371f0363cf817494d27;hpb=913cf6054b1d29b5d2f5e620304af7ee77cc1f1f;p=feedcatcher.git

diff --git a/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb b/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb
deleted file mode 100644
index da62c33..0000000
--- a/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb
+++ /dev/null
@@ -1,63 +0,0 @@
-#:stopdoc:
-unless Object.respond_to?(:blank?)
-  class Object
-    # Check first to see if we are in a Rails environment, no need to 
-    # define these methods if we are
-
-    # An object is blank if it's nil, empty, or a whitespace string.
-    # For example, "", "   ", nil, [], and {} are blank.
-    #
-    # This simplifies
-    #   if !address.nil? && !address.empty?
-    # to
-    #   if !address.blank?
-    def blank?
-      if respond_to?(:empty?) && respond_to?(:strip)
-        empty? or strip.empty?
-      elsif respond_to?(:empty?)
-        empty?
-      else
-        !self
-      end
-    end
-  end
-
-  class NilClass
-    def blank?
-      true
-    end
-  end
-
-  class FalseClass
-    def blank?
-      true
-    end
-  end
-
-  class TrueClass
-    def blank?
-      false
-    end
-  end
-
-  class Array
-    alias_method :blank?, :empty?
-  end
-
-  class Hash
-    alias_method :blank?, :empty?
-  end
-
-  class String
-    def blank?
-      empty? || strip.empty?
-    end
-  end
-
-  class Numeric
-    def blank?
-      false
-    end
-  end
-end
-#:startdoc:
\ No newline at end of file