class FeatureFile

Attributes

content[RW]
title[RW]

Public Class Methods

new() click to toggle source
# File lib/feature_file.rb, line 5
def initialize
  @title = nil
  @link = nil
  @content = nil
end

Public Instance Methods

to_s() click to toggle source
# File lib/feature_file.rb, line 11
def to_s
  result = "Feature: " + title + "\n\n"
  result += "#{link}\n\n"
  result += content
  result
end