class MoreMath::ContinuedFraction

def initialize

for_b { 1 } it approximates the golden ration phi if evaluated.
Creates a continued fraction instance. With the defaults for_a { 1 } and
def initialize
  @a = proc { 1 }
  @b = SIMPLE_B
end