class FlipTheSwitch::Environment

Public Class Methods

new(name, features = [], parent_name = nil) click to toggle source
Calls superclass method
# File lib/flip_the_switch/environment.rb, line 3
def initialize(name, features = [], parent_name = nil)
  super(name, features, parent_name)
end

Public Instance Methods

has_parent?() click to toggle source
# File lib/flip_the_switch/environment.rb, line 7
def has_parent?
  parent_name
end