class SeaShipBuilder

Public Class Methods

new() click to toggle source

TODO: This… there has to be a better way to go super without overwriting what I need. Problem is, I need to run line 1 here, then line 2 in super… what about `yield`?

Calls superclass method ShipBuilder::new
# File lib/uss-enterprise/ship_builders.rb, line 33
def initialize
  super('SeaShip')
end