cscotta (owner)

Revisions

gist: 146663 Download_button fork
public
Public Clone URL: git://gist.github.com/146663.git
Embed All Files: show embed
monkey_patch.rb #
1
2
3
4
5
6
7
class String
  def blank?
    self !~ /\S/
  rescue ArgumentError
    self.valid_encoding? ? self.size > 0 : false
  end
end