Class InterfaceLift::ThemeManager
In: lib/theme_manager.rb
Parent: Object

Methods

Public Instance methods

[Source]

# File lib/theme_manager.rb, line 3
    def available_themes
       Dir.foreach("#{File.expand_path(File.join(File.dirname(__FILE__), '..'))}/lib/templates") do |t|
         puts t unless t == "shared" || t == ".." || t == "."  ||  t == ".DS_Store"      
       end
    end

[Validate]