Files
SecGen/lib/erb_controller.rb
thomashaw ddf8194397 Configuration changes
Pulled System.rb out to individual classes.
2016-03-08 22:54:04 +00:00

11 lines
221 B
Ruby

class ERBController
# ERB Controller initializes the system and returns the binding when mapping .erb files
attr_accessor :systems
def initialize
@systems = []
end
def get_binding
return binding
end
end