Closed rdp closed 12 years ago
ex:
class OS if RUBY_DESCRIPTION =~ /mingw/ def windows?; true; end else def windows? false; end end end
That type of thing.
or would this actually be less efficient, since it has to do extra lookup checks at runtime :P
ex:
That type of thing.