Remove 18mode check from helpers

This commit is contained in:
Markus Schirp 2012-12-07 14:36:23 +01:00
parent 8ef816d012
commit 217aa9183c

View file

@ -18,20 +18,6 @@ module Mutant
def self.deep_clone(object)
Marshal.load(Marshal.dump(object))
end
# Check for ruby-1.8 mode
#
# @return [true]
# returns true if running under 1.8 mode
#
# @return [false]
# returns false otherwise
#
# @api private
#
def self.on_18?
RUBY_VERSION == '1.8.7'
end
# Extract option from options hash
#