Advertisement
asanchez75

Compass/sass/ruby/config.rb

Apr 19th, 2013
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  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.  
  10. # Change this to :production when ready to deploy the CSS to the live server.
  11. environment = :development
  12. #environment = :production
  13.  
  14. # In development, we can turn on the FireSass-compatible debug_info.
  15. #firesass = false
  16. firesass = true
  17.  
  18.  
  19. # Require any additional compass plugins here.
  20.  
  21. # Set this to the root of your project when deployed:
  22. http_path = "/"
  23. css_dir = "css"
  24. sass_dir = "scss"
  25. images_dir = "images"
  26. javascripts_dir = "js"
  27.  
  28. # You can select your preferred output style here (can be overridden via the command line):
  29. # output_style = :expanded or :nested or :compact or :compressed
  30.  
  31. # To enable relative paths to assets via compass helper functions. Uncomment:
  32. # relative_assets = true
  33.  
  34. # To disable debugging comments that display the original location of your selectors. Uncomment:
  35. # line_comments = false
  36.  
  37.  
  38. # If you prefer the indented syntax, you might want to regenerate this
  39. # project again passing --syntax sass, or you can uncomment this:
  40. # preferred_syntax = :sass
  41. # and then run:
  42. # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
  43.  
  44.  
  45. ##
  46. ## You probably don't need to edit anything below this.
  47. ##
  48.  
  49. # You can select your preferred output style here (can be overridden via the command line):
  50. # output_style = :expanded or :nested or :compact or :compressed
  51. output_style = (environment == :development) ? :expanded : :compressed
  52.  
  53. # To enable relative paths to assets via compass helper functions. Since Drupal
  54. # themes can be installed in multiple locations, we don't need to worry about
  55. # the absolute path to the theme from the server root.
  56. relative_assets = true
  57.  
  58. # To disable debugging comments that display the original location of your selectors. Uncomment:
  59. # line_comments = false
  60.  
  61. # Pass options to sass. For development, we turn on the FireSass-compatible
  62. # debug_info if the firesass config variable above is true.
  63. sass_options = (environment == :development && firesass == true) ? {:debug_info => true} : {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement