Sha256: 85a8f59f9b7ec05879623697c0ceac946532a0dd3ab8f250cda682d7007ecedf
Contents?: true
Size: 867 Bytes
Versions: 1
Compression:
Stored size: 867 Bytes
Contents
module GeoCalc autoload :PrettyPrint, 'geo_calc/pretty_print' end module GeoCalc module Calc autoload :Bearing, 'geo_calc/calc/bearing' autoload :Destination, 'geo_calc/calc/destination' autoload :Distance, 'geo_calc/calc/distance' autoload :Intersection, 'geo_calc/calc/intersection' autoload :Midpoint, 'geo_calc/calc/midpoint' autoload :Rhumb, 'geo_calc/calc/rhumb' module All def self.included base base.send :include, GeoCalc::Calc::Bearing base.send :include, GeoCalc::Calc::Destination base.send :include, GeoCalc::Calc::Distance base.send :include, GeoCalc::Calc::Intersection base.send :include, GeoCalc::Calc::Midpoint base.send :include, GeoCalc::Calc::Rhumb base.send :include, GeoCalc::PrettyPrint end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
geo_calc-0.7.1 | lib/geo_calc/calc.rb |