Method: QEDProject::Project#set_paths

Defined in:
lib/qedproject/project.rb

#set_pathsObject

Set up the basic paths we’ll use throughout



104
105
106
107
108
# File 'lib/qedproject/project.rb', line 104

def set_paths
   self.images_path = File.join(self.public_dir, "images")
   self.js_path = self.jammit ? "javascripts" : File.join(self.public_dir, "javascripts")
   self.css_path = self.jammit ? "stylesheets" : File.join(self.public_dir, "stylesheets")
end