mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
11 lines
221 B
Ruby
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 |