module Skyblue::Rails

Constants

VERSION

Public Class Methods

load() click to toggle source
# File lib/skyblue/rails.rb, line 7
def self.load
  asset_root = File.expand_path("../../../assets", __FILE__)
  stylesheets_path  = File.join(asset_root, "stylesheets")
  javascripts_path  = File.join(asset_root, "javascripts")
  fonts_path        = File.join(asset_root, "fonts")

  Sass.load_paths << stylesheets_path

  Sprockets.append_path(stylesheets_path)
  Sprockets.append_path(fonts_path)
  Sprockets.append_path(javascripts_path)
end