class Object

Public Instance Methods

invalid_version?() click to toggle source
# File lib/support/ruby_version.rb, line 12
def invalid_version?
  RUBY_VERSION =~ /([\d]+)\.([\d]+)\.([\d]+)/
  major, minor, revision = $1.to_i, $2.to_i, $3.to_i
  if defined?(JRUBY_VERSION)
    major <= 1 && minor <= 9 && revision <= 1
  else
    major <= 1 && minor <= 9 && revision <= 2
  end
end
raise_version_error(message) click to toggle source

Go ahead and fail if not using Ruby 1.9.3, no since in letting people squarm for answers

# File lib/support/ruby_version.rb, line 6
def raise_version_error(message)
  puts message
  Rails.logger.info(message) if defined?(Rails) && Rails.logger
  raise
end