File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/tins-1.25.0/lib/tins/xt/

Viewing File: range_plus.rb

require 'tins/range_plus'

module Tins
  class ::Range
    if method_defined?(:+)
      warn "#{self}#+ already defined, didn't include at #{__FILE__}:#{__LINE__}"
    else
      include RangePlus
    end
  end
end