Sha256: 9333a551acf967d67dd193095143447aa619e16c6963468b5f53a16fa49ebcdf

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

require 'interpolate/base'
require 'interpolate/add/core'

# deprecated as of 0.3.0; use Interpolate::Points instead
class Interpolation
  class << self
    # metaclass :new override method to return an instance of
    # Interpolate::Points
    def new(*args)
      warn "::Interpolation has been deprecated as of 0.3.0; use Interpolate::Points"
      Interpolate::Points.new(*args)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
interpolate-0.3.0 lib/interpolate.rb