class Neows::Models::Feed

Reverses the contents of a String or IO object.

@return [Boolean] if success

Public Instance Methods

coerce!() click to toggle source

Modifies existing list of hashes representing Near Earth Objects and coerces them each into NearEarthObject

@return [self]

# File lib/neows/models/feed.rb, line 28
def coerce!
  near_earth_objects.each_with_index do |data|
    near_earth_objects[data.first] = classify_list!(data[1], Neows::Models::NearEarthObject)
  end

  self
end