module GoToMars

Constants

VERSION

Public Class Methods

land_at(latitude, longitude) click to toggle source
# File lib/go_to_mars.rb, line 6
def land_at(latitude, longitude)
  GoToMars::Converter.instance.convert(latitude, longitude)
end
out_of_empire?(latitude, longitude) click to toggle source
# File lib/go_to_mars.rb, line 10
def out_of_empire?(latitude, longitude)
  GoToMars::Converter.instance.need_convert?(latitude, longitude)
end