class Avo::AssetManager

def add_javascript(path)

def add_javascript(path)
  @javascripts.push path
end

def add_stylesheet(path)

def add_stylesheet(path)
  @stylesheets.push path
end

def initialize

def initialize
  @stylesheets = []
  @javascripts = []
end

def reset

def reset
  @stylesheets = []
  @javascripts = []
end