# File lib/compass/frameworks.rb, line 11 def initialize(name, *arguments) options = arguments.last.is_a?(Hash) ? arguments.pop : {} path = options[:path] || arguments.shift @name = name @templates_directory = options[:templates_directory] || File.join(path, 'templates') @stylesheets_directory = options[:stylesheets_directory] || File.join(path, 'stylesheets') end