mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
17 lines
363 B
Ruby
17 lines
363 B
Ruby
class ERBController
|
|
|
|
# ERB Controller initializes the system and returns the binding when mapping .erb files
|
|
attr_accessor :systems
|
|
|
|
# Initialise systems array
|
|
# @return [Array] Empty array for systems
|
|
def initialize
|
|
@systems = []
|
|
end
|
|
|
|
# Returns binding of mapped .erb files
|
|
# @return binding ?????
|
|
def get_binding
|
|
return binding
|
|
end
|
|
end |