Projet

Général

Profil

Paste
Télécharger (1,42 ko) Statistiques
| Branche: | Révision:

root / htmltest / sites / all / themes / omega / ohm / config.rb @ 5fc58a68

1
##
2
## This file is only needed for Compass/Sass integration. If you are not using
3
## Compass, you may safely ignore or delete this file.
4
##
5
## If you'd like to learn more about Sass and Compass, see the sass/README.txt
6
## file for more information.
7
##
8

    
9
# Default to development if environment is not set.
10
saved = environment
11
if (environment.nil?)
12
  environment = :development
13
else
14
  environment = saved
15
end
16

    
17
# Location of the theme's resources.
18
css_dir = "css"
19
sass_dir = "sass"
20
images_dir = "images"
21
generated_images_dir = images_dir + "/generated"
22
javascripts_dir = "js"
23

    
24
# Require any additional compass plugins installed on your system.
25
require 'compass-normalize'
26
require 'rgbapng'
27
require 'toolkit'
28
require 'susy'
29
require 'sass-globbing'
30

    
31
##
32
## You probably don't need to edit anything below this.
33
##
34

    
35
# You can select your preferred output style here (:expanded, :nested, :compact
36
# or :compressed).
37
output_style = (environment == :production) ? :expanded : :nested
38

    
39
# To enable relative paths to assets via compass helper functions. Since Drupal
40
# themes can be installed in multiple locations, we don't need to worry about
41
# the absolute path to the theme from the server omega.
42
relative_assets = true
43

    
44
# Conditionally enable line comments when in development mode.
45
line_comments = (environment == :production) ? false : true
46

    
47
# Output debugging info in development mode.
48
sass_options = (environment == :production) ? {} : {:debug_info => true}