phenomenal/phenomenal

View on GitHub
lib/phenomenal/context/feature.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Represents a first class feature from context
class Phenomenal::Feature < Phenomenal::Context
  include Phenomenal::FeatureRelationships

  def initialize(name=nil,manager=nil)
    super(name,manager)
    initialize_relationships
  end
end