compass 0.12.4 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.markdown +1 -1
- data/Rakefile +159 -79
- data/features/command_line.feature +44 -141
- data/features/step_definitions/command_line_steps.rb +7 -7
- data/lib/compass.rb +19 -17
- data/lib/compass/actions.rb +7 -4
- data/lib/compass/commands.rb +3 -1
- data/lib/compass/commands/print_version.rb +1 -12
- data/lib/compass/commands/project_stats.rb +5 -5
- data/lib/compass/commands/update_project.rb +55 -46
- data/lib/compass/commands/watch_project.rb +53 -106
- data/lib/compass/compiler.rb +87 -26
- data/lib/compass/configuration/comments.rb +4 -1
- data/lib/compass/configuration/helpers.rb +11 -58
- data/lib/compass/configuration/serialization.rb +10 -3
- data/lib/compass/deprecation.rb +19 -0
- data/lib/compass/errors.rb +1 -3
- data/lib/compass/exec/global_options_parser.rb +0 -4
- data/lib/compass/exec/project_options_parser.rb +8 -0
- data/lib/compass/generated_version.rb +4 -0
- data/lib/compass/logger.rb +55 -18
- data/lib/compass/sass_compiler.rb +151 -0
- data/lib/compass/sass_extensions.rb +0 -1
- data/lib/compass/sass_extensions/functions.rb +6 -25
- data/lib/compass/sass_extensions/functions/sprites.rb +143 -56
- data/lib/compass/sass_extensions/sprites.rb +2 -0
- data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +11 -9
- data/lib/compass/sass_extensions/sprites/image.rb +47 -36
- data/lib/compass/sass_extensions/sprites/image_methods.rb +25 -5
- data/lib/compass/sass_extensions/sprites/images.rb +29 -0
- data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
- data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
- data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
- data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
- data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
- data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
- data/lib/compass/sass_extensions/sprites/sprite_map.rb +14 -8
- data/lib/compass/sass_extensions/sprites/sprite_methods.rb +8 -14
- data/lib/compass/sprite_importer.rb +12 -11
- data/lib/compass/sprite_importer/content.erb +30 -24
- data/lib/compass/stats.rb +1 -1
- data/lib/compass/version.rb +27 -45
- data/test/fixtures/sprites/public/images/focus/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_active.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_target.png +0 -0
- data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
- data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +9 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +14 -0
- data/test/fixtures/stylesheets/compass/config.rb +2 -0
- data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +22 -0
- data/test/fixtures/stylesheets/compass/css/animation.css +22 -0
- data/test/fixtures/stylesheets/compass/css/appearance.css +3 -0
- data/test/fixtures/stylesheets/compass/css/background-clip.css +7 -6
- data/test/fixtures/stylesheets/compass/css/background-origin.css +11 -0
- data/test/fixtures/stylesheets/compass/css/background-size.css +17 -0
- data/test/fixtures/stylesheets/compass/css/border_radius.css +3 -3
- data/test/fixtures/stylesheets/compass/css/{box-sizeing.css → box-sizing.css} +7 -2
- data/test/fixtures/stylesheets/compass/css/box_shadow.css +15 -5
- data/test/fixtures/stylesheets/compass/css/brightness.css +14 -0
- data/test/fixtures/stylesheets/compass/css/browser-support.css +335 -0
- data/test/fixtures/stylesheets/compass/css/color.css +18 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +48 -75
- data/test/fixtures/stylesheets/compass/css/filters.css +30 -6
- data/test/fixtures/stylesheets/compass/css/flexbox.css +94 -0
- data/test/fixtures/stylesheets/compass/css/fonts.css +6 -2
- data/test/fixtures/stylesheets/compass/css/gradients.css +106 -86
- data/test/fixtures/stylesheets/compass/css/grid_background.css +42 -35
- data/test/fixtures/stylesheets/compass/css/hyphenation.css +4 -4
- data/test/fixtures/stylesheets/compass/css/lists.css +9 -15
- data/test/fixtures/stylesheets/compass/css/opacity.css +4 -0
- data/test/fixtures/stylesheets/compass/css/print.css +1 -1
- data/test/fixtures/stylesheets/compass/css/regions.css +4 -2
- data/test/fixtures/stylesheets/compass/css/replacement.css +7 -0
- data/test/fixtures/stylesheets/compass/css/reset.css +3 -3
- data/test/fixtures/stylesheets/compass/css/selection.css +50 -0
- data/test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css +19 -0
- data/test/fixtures/stylesheets/compass/css/support.css +69 -0
- data/test/fixtures/stylesheets/compass/css/text_shadow.css +6 -6
- data/test/fixtures/stylesheets/compass/css/transform.css +64 -164
- data/test/fixtures/stylesheets/compass/css/transition.css +26 -38
- data/test/fixtures/stylesheets/compass/css/typography/links/hover-link.css +4 -0
- data/test/fixtures/stylesheets/compass/css/units.css +34 -0
- data/test/fixtures/stylesheets/compass/css/user-interface.css +49 -1
- data/test/fixtures/stylesheets/compass/css/utilities.css +21 -6
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +5 -8
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css +53 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css +52 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css +67 -0
- data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png +0 -0
- data/{examples/compass/images/flag/ad.png → test/fixtures/stylesheets/compass/images/flag_states/foo.png} +0 -0
- data/{examples/compass/images/flag/fo.png → test/fixtures/stylesheets/compass/images/flag_states/foo_active.png} +0 -0
- data/{examples/compass/images/flag/hu.png → test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png} +0 -0
- data/{examples/compass/images/flag/bm.png → test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png} +0 -0
- data/{examples/compass/images/flag/cu.png → test/fixtures/stylesheets/compass/images/flag_states/foo_target.png} +0 -0
- data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +17 -0
- data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
- data/test/fixtures/stylesheets/compass/sass/appearance.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/background-clip.scss +1 -4
- data/test/fixtures/stylesheets/compass/sass/background-origin.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/background-size.scss +7 -0
- data/test/fixtures/stylesheets/compass/sass/{box-sizeing.scss → box-sizing.scss} +4 -1
- data/test/fixtures/stylesheets/compass/sass/box_shadow.scss +4 -2
- data/test/fixtures/stylesheets/compass/sass/brightness.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/browser-support.scss +30 -0
- data/test/fixtures/stylesheets/compass/sass/color.scss +25 -0
- data/test/fixtures/stylesheets/compass/sass/columns.scss +9 -9
- data/test/fixtures/stylesheets/compass/sass/filters.scss +1 -0
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +88 -0
- data/test/fixtures/stylesheets/compass/sass/fonts.sass +6 -1
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +40 -8
- data/test/fixtures/stylesheets/compass/sass/opacity.scss +4 -0
- data/test/fixtures/stylesheets/compass/sass/selection.scss +41 -0
- data/test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss +11 -0
- data/test/fixtures/stylesheets/compass/sass/support.scss +174 -0
- data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +7 -6
- data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -4
- data/test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss +3 -0
- data/test/fixtures/stylesheets/compass/sass/units.scss +50 -0
- data/test/fixtures/stylesheets/compass/sass/user-interface.scss +24 -1
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +17 -4
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +51 -7
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss +52 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss +50 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss +50 -0
- data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
- data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
- data/test/fixtures/stylesheets/sourcemaps/config.rb +10 -0
- data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css +2 -0
- data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map +7 -0
- data/test/fixtures/stylesheets/sourcemaps/css/simple.css +2 -0
- data/test/fixtures/stylesheets/sourcemaps/css/simple.css.map +7 -0
- data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css +2 -0
- data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map +7 -0
- data/test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss +3 -0
- data/test/fixtures/stylesheets/sourcemaps/sass/simple.sass +2 -0
- data/test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss +5 -0
- data/test/fixtures/stylesheets/valid/sass/another_simple.scss +3 -0
- data/test/fixtures/stylesheets/with_sass_globbing/config.rb +26 -0
- data/test/fixtures/stylesheets/with_sass_globbing/css/screen.css +19 -0
- data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss +3 -0
- data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss +3 -0
- data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss +4 -0
- data/test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss +3 -0
- data/test/helpers/diff.rb +1 -1
- data/test/integrations/compass_test.rb +49 -14
- data/test/integrations/sprites_test.rb +380 -100
- data/test/test_helper.rb +12 -20
- data/test/units/caniuse_test.rb +194 -0
- data/test/units/command_line_test.rb +9 -9
- data/test/units/compass_util_test.rb +11 -0
- data/test/units/compiler_test.rb +7 -2
- data/test/units/configuration_test.rb +187 -9
- data/test/units/regressions_test.rb +8 -8
- data/test/units/sass_extensions_test.rb +37 -3
- data/test/units/sass_extenstions/gradients_test.rb +30 -0
- data/test/units/sprites/image_test.rb +17 -0
- data/test/units/sprites/images_test.rb +46 -0
- data/test/units/sprites/layout_test.rb +29 -4
- data/test/units/sprites/sprite_map_test.rb +40 -2
- metadata +243 -713
- data/README.markdown +0 -31
- data/VERSION.yml +0 -5
- data/examples/README.markdown +0 -4
- data/examples/blueprint_default/config.rb +0 -7
- data/examples/blueprint_default/images/grid.png +0 -0
- data/examples/blueprint_default/index.html.haml +0 -85
- data/examples/blueprint_default/parts/elements.html.haml +0 -282
- data/examples/blueprint_default/parts/forms.html.haml +0 -200
- data/examples/blueprint_default/parts/grid.html.haml +0 -274
- data/examples/blueprint_default/parts/test-small.jpg +0 -0
- data/examples/blueprint_default/parts/test.jpg +0 -0
- data/examples/blueprint_default/parts/valid.png +0 -0
- data/examples/blueprint_default/src/ie.scss +0 -3
- data/examples/blueprint_default/src/images/grid.png +0 -0
- data/examples/blueprint_default/src/print.scss +0 -3
- data/examples/blueprint_default/src/screen.scss +0 -9
- data/examples/blueprint_plugins/config.rb +0 -8
- data/examples/blueprint_plugins/images/buttons/cross.png +0 -0
- data/examples/blueprint_plugins/images/buttons/key.png +0 -0
- data/examples/blueprint_plugins/images/buttons/tick.png +0 -0
- data/examples/blueprint_plugins/images/grid.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/doc.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/email.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/external.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/feed.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/im.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/pdf.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/visited.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/xls.png +0 -0
- data/examples/blueprint_plugins/images/test-small.jpg +0 -0
- data/examples/blueprint_plugins/images/test.jpg +0 -0
- data/examples/blueprint_plugins/images/valid.png +0 -0
- data/examples/blueprint_plugins/index.html.haml +0 -96
- data/examples/blueprint_plugins/plugins/buttons.html.haml +0 -67
- data/examples/blueprint_plugins/plugins/fancy_type.html.haml +0 -100
- data/examples/blueprint_plugins/plugins/link_icons.html.haml +0 -61
- data/examples/blueprint_plugins/plugins/rtl.html.haml +0 -100
- data/examples/blueprint_plugins/src/buttons.scss +0 -47
- data/examples/blueprint_plugins/src/ie.scss +0 -3
- data/examples/blueprint_plugins/src/images/grid.png +0 -0
- data/examples/blueprint_plugins/src/link_icons.scss +0 -13
- data/examples/blueprint_plugins/src/print.scss +0 -3
- data/examples/blueprint_plugins/src/rtl_screen.scss +0 -15
- data/examples/blueprint_plugins/src/screen.scss +0 -12
- data/examples/blueprint_scoped/images/grid.png +0 -0
- data/examples/blueprint_scoped/src/ie.scss +0 -4
- data/examples/blueprint_scoped/src/print.scss +0 -4
- data/examples/blueprint_scoped/src/screen.scss +0 -5
- data/examples/blueprint_scoped_form/images/grid.png +0 -0
- data/examples/blueprint_scoped_form/src/ie.scss +0 -3
- data/examples/blueprint_scoped_form/src/print.scss +0 -3
- data/examples/blueprint_scoped_form/src/screen.scss +0 -15
- data/examples/blueprint_semantic/config.rb +0 -7
- data/examples/blueprint_semantic/images/grid.png +0 -0
- data/examples/blueprint_semantic/index.html.haml +0 -86
- data/examples/blueprint_semantic/parts/fancy_type.html.haml +0 -100
- data/examples/blueprint_semantic/parts/liquid.html.haml +0 -100
- data/examples/blueprint_semantic/parts/test-small.jpg +0 -0
- data/examples/blueprint_semantic/parts/test.jpg +0 -0
- data/examples/blueprint_semantic/parts/valid.png +0 -0
- data/examples/blueprint_semantic/src/ie.scss +0 -3
- data/examples/blueprint_semantic/src/images/grid.png +0 -0
- data/examples/blueprint_semantic/src/liquid.scss +0 -69
- data/examples/blueprint_semantic/src/print.scss +0 -3
- data/examples/blueprint_semantic/src/screen.scss +0 -69
- data/examples/compass/bootstrap.rb +0 -4
- data/examples/compass/clean.rb +0 -2
- data/examples/compass/compass.html.haml +0 -39
- data/examples/compass/config.rb +0 -8
- data/examples/compass/headers.txt +0 -7
- data/examples/compass/images/blue_arrow.gif +0 -0
- data/examples/compass/images/border2.png +0 -0
- data/examples/compass/images/emblem/favorite.png +0 -0
- data/examples/compass/images/emblem/important.png +0 -0
- data/examples/compass/images/emblem/photos.png +0 -0
- data/examples/compass/images/emblem/readonly.png +0 -0
- data/examples/compass/images/emblem/symbolic-link.png +0 -0
- data/examples/compass/images/emblem/system.png +0 -0
- data/examples/compass/images/emblem/unreadable.png +0 -0
- data/examples/compass/images/flag/ae.png +0 -0
- data/examples/compass/images/flag/af.png +0 -0
- data/examples/compass/images/flag/ag.png +0 -0
- data/examples/compass/images/flag/ai.png +0 -0
- data/examples/compass/images/flag/al.png +0 -0
- data/examples/compass/images/flag/am.png +0 -0
- data/examples/compass/images/flag/an.png +0 -0
- data/examples/compass/images/flag/ao.png +0 -0
- data/examples/compass/images/flag/ar.png +0 -0
- data/examples/compass/images/flag/as.png +0 -0
- data/examples/compass/images/flag/at.png +0 -0
- data/examples/compass/images/flag/au.png +0 -0
- data/examples/compass/images/flag/aw.png +0 -0
- data/examples/compass/images/flag/ax.png +0 -0
- data/examples/compass/images/flag/az.png +0 -0
- data/examples/compass/images/flag/ba.png +0 -0
- data/examples/compass/images/flag/bb.png +0 -0
- data/examples/compass/images/flag/bd.png +0 -0
- data/examples/compass/images/flag/be.png +0 -0
- data/examples/compass/images/flag/bf.png +0 -0
- data/examples/compass/images/flag/bg.png +0 -0
- data/examples/compass/images/flag/bh.png +0 -0
- data/examples/compass/images/flag/bi.png +0 -0
- data/examples/compass/images/flag/bj.png +0 -0
- data/examples/compass/images/flag/bn.png +0 -0
- data/examples/compass/images/flag/bo.png +0 -0
- data/examples/compass/images/flag/br.png +0 -0
- data/examples/compass/images/flag/bs.png +0 -0
- data/examples/compass/images/flag/bt.png +0 -0
- data/examples/compass/images/flag/bv.png +0 -0
- data/examples/compass/images/flag/bw.png +0 -0
- data/examples/compass/images/flag/by.png +0 -0
- data/examples/compass/images/flag/bz.png +0 -0
- data/examples/compass/images/flag/ca.png +0 -0
- data/examples/compass/images/flag/catalonia.png +0 -0
- data/examples/compass/images/flag/cc.png +0 -0
- data/examples/compass/images/flag/cd.png +0 -0
- data/examples/compass/images/flag/cf.png +0 -0
- data/examples/compass/images/flag/cg.png +0 -0
- data/examples/compass/images/flag/ch.png +0 -0
- data/examples/compass/images/flag/ci.png +0 -0
- data/examples/compass/images/flag/ck.png +0 -0
- data/examples/compass/images/flag/cl.png +0 -0
- data/examples/compass/images/flag/cm.png +0 -0
- data/examples/compass/images/flag/cn.png +0 -0
- data/examples/compass/images/flag/co.png +0 -0
- data/examples/compass/images/flag/cr.png +0 -0
- data/examples/compass/images/flag/cs.png +0 -0
- data/examples/compass/images/flag/cv.png +0 -0
- data/examples/compass/images/flag/cx.png +0 -0
- data/examples/compass/images/flag/cy.png +0 -0
- data/examples/compass/images/flag/cz.png +0 -0
- data/examples/compass/images/flag/de.png +0 -0
- data/examples/compass/images/flag/dj.png +0 -0
- data/examples/compass/images/flag/dk.png +0 -0
- data/examples/compass/images/flag/dm.png +0 -0
- data/examples/compass/images/flag/do.png +0 -0
- data/examples/compass/images/flag/dz.png +0 -0
- data/examples/compass/images/flag/ec.png +0 -0
- data/examples/compass/images/flag/ee.png +0 -0
- data/examples/compass/images/flag/eg.png +0 -0
- data/examples/compass/images/flag/eh.png +0 -0
- data/examples/compass/images/flag/england.png +0 -0
- data/examples/compass/images/flag/er.png +0 -0
- data/examples/compass/images/flag/es.png +0 -0
- data/examples/compass/images/flag/et.png +0 -0
- data/examples/compass/images/flag/europeanunion.png +0 -0
- data/examples/compass/images/flag/fam.png +0 -0
- data/examples/compass/images/flag/fi.png +0 -0
- data/examples/compass/images/flag/fj.png +0 -0
- data/examples/compass/images/flag/fk.png +0 -0
- data/examples/compass/images/flag/fm.png +0 -0
- data/examples/compass/images/flag/fr.png +0 -0
- data/examples/compass/images/flag/ga.png +0 -0
- data/examples/compass/images/flag/gb.png +0 -0
- data/examples/compass/images/flag/gd.png +0 -0
- data/examples/compass/images/flag/ge.png +0 -0
- data/examples/compass/images/flag/gf.png +0 -0
- data/examples/compass/images/flag/gh.png +0 -0
- data/examples/compass/images/flag/gi.png +0 -0
- data/examples/compass/images/flag/gl.png +0 -0
- data/examples/compass/images/flag/gm.png +0 -0
- data/examples/compass/images/flag/gn.png +0 -0
- data/examples/compass/images/flag/gp.png +0 -0
- data/examples/compass/images/flag/gq.png +0 -0
- data/examples/compass/images/flag/gr.png +0 -0
- data/examples/compass/images/flag/gs.png +0 -0
- data/examples/compass/images/flag/gt.png +0 -0
- data/examples/compass/images/flag/gu.png +0 -0
- data/examples/compass/images/flag/gw.png +0 -0
- data/examples/compass/images/flag/gy.png +0 -0
- data/examples/compass/images/flag/hk.png +0 -0
- data/examples/compass/images/flag/hm.png +0 -0
- data/examples/compass/images/flag/hn.png +0 -0
- data/examples/compass/images/flag/hr.png +0 -0
- data/examples/compass/images/flag/ht.png +0 -0
- data/examples/compass/images/flag/id-2.png +0 -0
- data/examples/compass/images/flag/ie.png +0 -0
- data/examples/compass/images/flag/il.png +0 -0
- data/examples/compass/images/flag/in.png +0 -0
- data/examples/compass/images/flag/io.png +0 -0
- data/examples/compass/images/flag/iq.png +0 -0
- data/examples/compass/images/flag/ir.png +0 -0
- data/examples/compass/images/flag/is.png +0 -0
- data/examples/compass/images/flag/it.png +0 -0
- data/examples/compass/images/flag/jm.png +0 -0
- data/examples/compass/images/flag/jo.png +0 -0
- data/examples/compass/images/flag/jp.png +0 -0
- data/examples/compass/images/flag/ke.png +0 -0
- data/examples/compass/images/flag/kg.png +0 -0
- data/examples/compass/images/flag/kh.png +0 -0
- data/examples/compass/images/flag/ki.png +0 -0
- data/examples/compass/images/flag/km.png +0 -0
- data/examples/compass/images/flag/kn.png +0 -0
- data/examples/compass/images/flag/kp.png +0 -0
- data/examples/compass/images/flag/kr.png +0 -0
- data/examples/compass/images/flag/kw.png +0 -0
- data/examples/compass/images/flag/ky.png +0 -0
- data/examples/compass/images/flag/kz.png +0 -0
- data/examples/compass/images/flag/la.png +0 -0
- data/examples/compass/images/flag/lb.png +0 -0
- data/examples/compass/images/flag/lc.png +0 -0
- data/examples/compass/images/flag/li.png +0 -0
- data/examples/compass/images/flag/lk.png +0 -0
- data/examples/compass/images/flag/lr.png +0 -0
- data/examples/compass/images/flag/ls.png +0 -0
- data/examples/compass/images/flag/lt.png +0 -0
- data/examples/compass/images/flag/lu.png +0 -0
- data/examples/compass/images/flag/lv.png +0 -0
- data/examples/compass/images/flag/ly.png +0 -0
- data/examples/compass/images/flag/ma.png +0 -0
- data/examples/compass/images/flag/mc.png +0 -0
- data/examples/compass/images/flag/md.png +0 -0
- data/examples/compass/images/flag/me.png +0 -0
- data/examples/compass/images/flag/mg.png +0 -0
- data/examples/compass/images/flag/mh.png +0 -0
- data/examples/compass/images/flag/mk.png +0 -0
- data/examples/compass/images/flag/ml.png +0 -0
- data/examples/compass/images/flag/mm.png +0 -0
- data/examples/compass/images/flag/mn.png +0 -0
- data/examples/compass/images/flag/mo.png +0 -0
- data/examples/compass/images/flag/mp.png +0 -0
- data/examples/compass/images/flag/mq.png +0 -0
- data/examples/compass/images/flag/mr.png +0 -0
- data/examples/compass/images/flag/ms.png +0 -0
- data/examples/compass/images/flag/mt.png +0 -0
- data/examples/compass/images/flag/mu.png +0 -0
- data/examples/compass/images/flag/mv.png +0 -0
- data/examples/compass/images/flag/mw.png +0 -0
- data/examples/compass/images/flag/mx.png +0 -0
- data/examples/compass/images/flag/my.png +0 -0
- data/examples/compass/images/flag/mz.png +0 -0
- data/examples/compass/images/flag/na.png +0 -0
- data/examples/compass/images/flag/nc.png +0 -0
- data/examples/compass/images/flag/ne.png +0 -0
- data/examples/compass/images/flag/nf.png +0 -0
- data/examples/compass/images/flag/ng.png +0 -0
- data/examples/compass/images/flag/ni.png +0 -0
- data/examples/compass/images/flag/nl.png +0 -0
- data/examples/compass/images/flag/no.png +0 -0
- data/examples/compass/images/flag/np.png +0 -0
- data/examples/compass/images/flag/nr.png +0 -0
- data/examples/compass/images/flag/nu.png +0 -0
- data/examples/compass/images/flag/nz.png +0 -0
- data/examples/compass/images/flag/om.png +0 -0
- data/examples/compass/images/flag/pa.png +0 -0
- data/examples/compass/images/flag/pe.png +0 -0
- data/examples/compass/images/flag/pf.png +0 -0
- data/examples/compass/images/flag/pg.png +0 -0
- data/examples/compass/images/flag/ph.png +0 -0
- data/examples/compass/images/flag/pk.png +0 -0
- data/examples/compass/images/flag/pl.png +0 -0
- data/examples/compass/images/flag/pm.png +0 -0
- data/examples/compass/images/flag/pn.png +0 -0
- data/examples/compass/images/flag/pr.png +0 -0
- data/examples/compass/images/flag/ps.png +0 -0
- data/examples/compass/images/flag/pt.png +0 -0
- data/examples/compass/images/flag/pw.png +0 -0
- data/examples/compass/images/flag/py.png +0 -0
- data/examples/compass/images/flag/qa.png +0 -0
- data/examples/compass/images/flag/re.png +0 -0
- data/examples/compass/images/flag/ro.png +0 -0
- data/examples/compass/images/flag/rs.png +0 -0
- data/examples/compass/images/flag/ru.png +0 -0
- data/examples/compass/images/flag/rw.png +0 -0
- data/examples/compass/images/flag/sa.png +0 -0
- data/examples/compass/images/flag/sb.png +0 -0
- data/examples/compass/images/flag/sc.png +0 -0
- data/examples/compass/images/flag/scotland.png +0 -0
- data/examples/compass/images/flag/sd.png +0 -0
- data/examples/compass/images/flag/se.png +0 -0
- data/examples/compass/images/flag/sg.png +0 -0
- data/examples/compass/images/flag/sh.png +0 -0
- data/examples/compass/images/flag/si.png +0 -0
- data/examples/compass/images/flag/sj.png +0 -0
- data/examples/compass/images/flag/sk.png +0 -0
- data/examples/compass/images/flag/sl.png +0 -0
- data/examples/compass/images/flag/sm.png +0 -0
- data/examples/compass/images/flag/sn.png +0 -0
- data/examples/compass/images/flag/so.png +0 -0
- data/examples/compass/images/flag/sr.png +0 -0
- data/examples/compass/images/flag/st.png +0 -0
- data/examples/compass/images/flag/sv.png +0 -0
- data/examples/compass/images/flag/sy.png +0 -0
- data/examples/compass/images/flag/sz.png +0 -0
- data/examples/compass/images/flag/tc.png +0 -0
- data/examples/compass/images/flag/td.png +0 -0
- data/examples/compass/images/flag/tf.png +0 -0
- data/examples/compass/images/flag/tg.png +0 -0
- data/examples/compass/images/flag/th.png +0 -0
- data/examples/compass/images/flag/tj.png +0 -0
- data/examples/compass/images/flag/tk.png +0 -0
- data/examples/compass/images/flag/tl.png +0 -0
- data/examples/compass/images/flag/tm.png +0 -0
- data/examples/compass/images/flag/tn.png +0 -0
- data/examples/compass/images/flag/to.png +0 -0
- data/examples/compass/images/flag/tr.png +0 -0
- data/examples/compass/images/flag/tt.png +0 -0
- data/examples/compass/images/flag/tv.png +0 -0
- data/examples/compass/images/flag/tw.png +0 -0
- data/examples/compass/images/flag/tz.png +0 -0
- data/examples/compass/images/flag/ua.png +0 -0
- data/examples/compass/images/flag/ug.png +0 -0
- data/examples/compass/images/flag/um.png +0 -0
- data/examples/compass/images/flag/us.png +0 -0
- data/examples/compass/images/flag/uy.png +0 -0
- data/examples/compass/images/flag/uz.png +0 -0
- data/examples/compass/images/flag/va.png +0 -0
- data/examples/compass/images/flag/vc.png +0 -0
- data/examples/compass/images/flag/ve.png +0 -0
- data/examples/compass/images/flag/vg.png +0 -0
- data/examples/compass/images/flag/vi.png +0 -0
- data/examples/compass/images/flag/vn.png +0 -0
- data/examples/compass/images/flag/vu.png +0 -0
- data/examples/compass/images/flag/wales.png +0 -0
- data/examples/compass/images/flag/wf.png +0 -0
- data/examples/compass/images/flag/ws.png +0 -0
- data/examples/compass/images/flag/ye.png +0 -0
- data/examples/compass/images/flag/yt.png +0 -0
- data/examples/compass/images/flag/za.png +0 -0
- data/examples/compass/images/flag/zm.png +0 -0
- data/examples/compass/images/flag/zw.png +0 -0
- data/examples/compass/images/icon-chrome.png +0 -0
- data/examples/compass/images/icon-firefox.png +0 -0
- data/examples/compass/images/icon-ie.png +0 -0
- data/examples/compass/images/icon-opera.png +0 -0
- data/examples/compass/images/icon-safari.png +0 -0
- data/examples/compass/pie.html.haml +0 -73
- data/examples/compass/sprites.html.haml +0 -37
- data/examples/compass/src/bp_layout.scss +0 -18
- data/examples/compass/src/compass.scss +0 -46
- data/examples/compass/src/images/blue_arrow.gif +0 -0
- data/examples/compass/src/pie.scss +0 -110
- data/examples/compass/src/sprites.scss +0 -25
- data/examples/compass/src/sticky_footer.scss +0 -11
- data/examples/compass/src/utilities.scss +0 -108
- data/examples/compass/sticky_footer.html.haml +0 -14
- data/examples/compass/utilities.html.haml +0 -189
- data/examples/css3/bootstrap.rb +0 -3
- data/examples/css3/clean.rb +0 -2
- data/examples/css3/config.rb +0 -6
- data/examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass +0 -10
- data/examples/css3/extensions/fancy-fonts/templates/project/manifest.rb +0 -6
- data/examples/css3/gradients.html.haml +0 -68
- data/examples/css3/images/button_bg.png +0 -0
- data/examples/css3/images/example.png +0 -0
- data/examples/css3/index.html.haml +0 -57
- data/examples/css3/src/_base.scss +0 -13
- data/examples/css3/src/fancy-fonts.scss +0 -13
- data/examples/css3/src/gradients.scss +0 -86
- data/examples/css3/src/main.scss +0 -108
- data/examples/downloader.rb +0 -58
- data/examples/ninesixty/bootstrap.rb +0 -4
- data/examples/ninesixty/clean.rb +0 -2
- data/examples/ninesixty/config.rb +0 -10
- data/examples/ninesixty/src/grid.scss +0 -15
- data/examples/ninesixty/src/text.scss +0 -8
- data/examples/susy/bootstrap.rb +0 -3
- data/examples/susy/clean.rb +0 -2
- data/examples/susy/config.rb +0 -10
- data/examples/susy/src/_base.scss +0 -61
- data/examples/susy/src/_defaults.scss +0 -140
- data/examples/susy/src/screen.scss +0 -100
- data/examples/yui/bootstrap.rb +0 -3
- data/examples/yui/clean.rb +0 -2
- data/examples/yui/config.rb +0 -1
- data/examples/yui/divisions.html.haml +0 -179
- data/examples/yui/index.html.haml +0 -19
- data/examples/yui/src/screen.scss +0 -13
- data/examples/yui/sub_divisions.html.haml +0 -169
- data/examples/yui/templates.html.haml +0 -54
- data/examples/yui/test.jpg +0 -0
- data/examples/yui/typography.html.haml +0 -132
- data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
- data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
- data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
- data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
- data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
- data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
- data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
- data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
- data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
- data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
- data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -83
- data/frameworks/blueprint/templates/basic/grid.png +0 -0
- data/frameworks/blueprint/templates/basic/ie.sass +0 -4
- data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
- data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/basic/print.sass +0 -4
- data/frameworks/blueprint/templates/basic/screen.sass +0 -12
- data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
- data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
- data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
- data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
- data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
- data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
- data/frameworks/blueprint/templates/project/grid.png +0 -0
- data/frameworks/blueprint/templates/project/ie.sass +0 -16
- data/frameworks/blueprint/templates/project/manifest.rb +0 -30
- data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
- data/frameworks/blueprint/templates/project/print.sass +0 -8
- data/frameworks/blueprint/templates/project/screen.sass +0 -46
- data/frameworks/blueprint/templates/semantic/grid.png +0 -0
- data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
- data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
- data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
- data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
- data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
- data/frameworks/blueprint/templates/semantic/print.sass +0 -5
- data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
- data/frameworks/compass/stylesheets/_compass.scss +0 -3
- data/frameworks/compass/stylesheets/_lemonade.scss +0 -38
- data/frameworks/compass/stylesheets/compass/_css3.scss +0 -20
- data/frameworks/compass/stylesheets/compass/_layout.scss +0 -3
- data/frameworks/compass/stylesheets/compass/_reset-legacy.scss +0 -3
- data/frameworks/compass/stylesheets/compass/_reset.scss +0 -3
- data/frameworks/compass/stylesheets/compass/_support.scss +0 -40
- data/frameworks/compass/stylesheets/compass/_typography.scss +0 -4
- data/frameworks/compass/stylesheets/compass/_utilities.scss +0 -9
- data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +0 -17
- data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +0 -43
- data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +0 -42
- data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +0 -26
- data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +0 -130
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +0 -76
- data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +0 -13
- data/frameworks/compass/stylesheets/compass/css3/_box.scss +0 -111
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +0 -157
- data/frameworks/compass/stylesheets/compass/css3/_filter.scss +0 -23
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -48
- data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +0 -77
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +0 -132
- data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +0 -22
- data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +0 -19
- data/frameworks/compass/stylesheets/compass/css3/_pie.scss +0 -73
- data/frameworks/compass/stylesheets/compass/css3/_regions.scss +0 -22
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +0 -38
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +0 -87
- data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +0 -87
- data/frameworks/compass/stylesheets/compass/css3/_transform.scss +0 -598
- data/frameworks/compass/stylesheets/compass/css3/_transition.scss +0 -221
- data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +0 -17
- data/frameworks/compass/stylesheets/compass/layout/_grid-background.scss +0 -178
- data/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss +0 -23
- data/frameworks/compass/stylesheets/compass/layout/_stretching.scss +0 -24
- data/frameworks/compass/stylesheets/compass/reset/_utilities-legacy.scss +0 -135
- data/frameworks/compass/stylesheets/compass/reset/_utilities.scss +0 -142
- data/frameworks/compass/stylesheets/compass/typography/_links.scss +0 -3
- data/frameworks/compass/stylesheets/compass/typography/_lists.scss +0 -4
- data/frameworks/compass/stylesheets/compass/typography/_text.scss +0 -4
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +0 -221
- data/frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss +0 -5
- data/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss +0 -28
- data/frameworks/compass/stylesheets/compass/typography/links/_unstyled-link.scss +0 -7
- data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +0 -34
- data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +0 -61
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +0 -50
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +0 -44
- data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +0 -25
- data/frameworks/compass/stylesheets/compass/typography/text/_force-wrap.scss +0 -12
- data/frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss +0 -2
- data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +0 -68
- data/frameworks/compass/stylesheets/compass/utilities/_color.scss +0 -1
- data/frameworks/compass/stylesheets/compass/utilities/_general.scss +0 -6
- data/frameworks/compass/stylesheets/compass/utilities/_links.scss +0 -5
- data/frameworks/compass/stylesheets/compass/utilities/_lists.scss +0 -6
- data/frameworks/compass/stylesheets/compass/utilities/_print.scss +0 -17
- data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +0 -2
- data/frameworks/compass/stylesheets/compass/utilities/_tables.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/_text.scss +0 -5
- data/frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss +0 -28
- data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss +0 -44
- data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +0 -30
- data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +0 -46
- data/frameworks/compass/stylesheets/compass/utilities/general/_min.scss +0 -16
- data/frameworks/compass/stylesheets/compass/utilities/general/_reset.scss +0 -2
- data/frameworks/compass/stylesheets/compass/utilities/general/_tabs.scss +0 -1
- data/frameworks/compass/stylesheets/compass/utilities/general/_tag-cloud.scss +0 -18
- data/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/links/_link-colors.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled-link.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +0 -66
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +0 -79
- data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss +0 -22
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +0 -33
- data/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss +0 -9
- data/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.scss +0 -3
- data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.scss +0 -3
- data/frameworks/compass/templates/ellipsis/ellipsis.sass +0 -9
- data/frameworks/compass/templates/ellipsis/manifest.rb +0 -27
- data/frameworks/compass/templates/ellipsis/xml/ellipsis.xml +0 -14
- data/frameworks/compass/templates/extension/manifest.rb +0 -26
- data/frameworks/compass/templates/extension/stylesheets/main.sass +0 -1
- data/frameworks/compass/templates/extension/templates/project/manifest.rb +0 -2
- data/frameworks/compass/templates/extension/templates/project/screen.sass +0 -2
- data/frameworks/compass/templates/pie/LICENSE +0 -12
- data/frameworks/compass/templates/pie/LICENSE-APACHE2.txt +0 -13
- data/frameworks/compass/templates/pie/LICENSE-GPL2.txt +0 -278
- data/frameworks/compass/templates/pie/PIE.htc +0 -96
- data/frameworks/compass/templates/pie/manifest.rb +0 -39
- data/frameworks/compass/templates/pie/pie.scss +0 -74
- data/frameworks/compass/templates/project/USAGE.markdown +0 -32
- data/frameworks/compass/templates/project/ie.sass +0 -6
- data/frameworks/compass/templates/project/manifest.rb +0 -4
- data/frameworks/compass/templates/project/print.sass +0 -6
- data/frameworks/compass/templates/project/screen.sass +0 -7
- data/lib/compass/app_integration/rails.rb +0 -18
- data/lib/compass/browser_support.rb +0 -62
- data/lib/compass/commands/generate_grid_background.rb +0 -96
- data/lib/compass/configuration.rb +0 -91
- data/lib/compass/configuration/adapters.rb +0 -77
- data/lib/compass/configuration/data.rb +0 -193
- data/lib/compass/configuration/defaults.rb +0 -187
- data/lib/compass/configuration/inheritance.rb +0 -304
- data/lib/compass/configuration/paths.rb +0 -19
- data/lib/compass/exec/switch_ui.rb +0 -179
- data/lib/compass/frameworks.rb +0 -133
- data/lib/compass/grid_builder.rb +0 -102
- data/lib/compass/sass_extensions/functions/colors.rb +0 -67
- data/lib/compass/sass_extensions/functions/constants.rb +0 -74
- data/lib/compass/sass_extensions/functions/cross_browser_support.rb +0 -70
- data/lib/compass/sass_extensions/functions/display.rb +0 -27
- data/lib/compass/sass_extensions/functions/enumerate.rb +0 -7
- data/lib/compass/sass_extensions/functions/env.rb +0 -5
- data/lib/compass/sass_extensions/functions/font_files.rb +0 -41
- data/lib/compass/sass_extensions/functions/gradient_support.rb +0 -540
- data/lib/compass/sass_extensions/functions/image_size.rb +0 -113
- data/lib/compass/sass_extensions/functions/inline_image.rb +0 -64
- data/lib/compass/sass_extensions/functions/lists.rb +0 -101
- data/lib/compass/sass_extensions/functions/math.rb +0 -63
- data/lib/compass/sass_extensions/functions/selectors.rb +0 -64
- data/lib/compass/sass_extensions/functions/urls.rb +0 -266
- data/lib/compass/sass_extensions/monkey_patches.rb +0 -3
- data/lib/compass/sass_extensions/monkey_patches/browser_support.rb +0 -95
- data/lib/compass/sass_extensions/monkey_patches/traversal.rb +0 -23
- data/lib/compass/util.rb +0 -29
- data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
- data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -815
- data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -11
- data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
- data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
- data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
- data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
- data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -75
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
- data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
- data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
- data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
- data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
- data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
- data/test/fixtures/stylesheets/compass/css/pie.css +0 -26
- data/test/fixtures/stylesheets/compass/css/sprites.css +0 -1262
- data/test/fixtures/stylesheets/compass/sass/pie.scss +0 -47
- data/test/fixtures/stylesheets/compass/sass/sprites.scss +0 -13
- data/test/units/compass_module_test.rb +0 -36
- data/test/units/compass_png_test.rb +0 -46
data/lib/compass/compiler.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
|
1
3
|
module Compass
|
2
4
|
class Compiler
|
3
5
|
|
@@ -6,6 +8,8 @@ module Compass
|
|
6
8
|
attr_accessor :working_path, :from, :to, :options, :sass_options, :staleness_checker, :importer
|
7
9
|
|
8
10
|
def initialize(working_path, from, to, options)
|
11
|
+
Compass::Deprecation.deprecated!(:compass_compiler_constructor,
|
12
|
+
"Compass::Compiler is deprecated. Use Compass::SassCompiler instead.")
|
9
13
|
self.working_path = working_path.to_s
|
10
14
|
self.from, self.to = File.expand_path(from), to
|
11
15
|
self.logger = options.delete(:logger)
|
@@ -15,10 +19,18 @@ module Compass
|
|
15
19
|
self.sass_options.delete(:quiet)
|
16
20
|
self.sass_options.update(sass_opts)
|
17
21
|
self.sass_options[:cache_location] ||= determine_cache_location
|
18
|
-
self.sass_options[:
|
22
|
+
self.sass_options[:filesystem_importer] ||= Sass::Importers::Filesystem
|
23
|
+
self.sass_options[:importer] = self.importer = self.sass_options[:filesystem_importer].new(from)
|
19
24
|
self.sass_options[:compass] ||= {}
|
20
25
|
self.sass_options[:compass][:logger] = self.logger
|
21
26
|
self.sass_options[:compass][:environment] = Compass.configuration.environment
|
27
|
+
self.sass_options[:compass][:compiler_in_use] = true
|
28
|
+
reset_staleness_checker!
|
29
|
+
end
|
30
|
+
|
31
|
+
def reset_staleness_checker!
|
32
|
+
self.staleness_checker = nil
|
33
|
+
#Sass::Plugin::StalenessChecker.dependencies_cache = {}
|
22
34
|
self.staleness_checker = Sass::Plugin::StalenessChecker.new(sass_options)
|
23
35
|
end
|
24
36
|
|
@@ -47,10 +59,18 @@ module Compass
|
|
47
59
|
@css_files ||= sass_files.map{|sass_file| corresponding_css_file(sass_file)}
|
48
60
|
end
|
49
61
|
|
62
|
+
def sourcemap_files
|
63
|
+
@sourcemap_files ||= sass_files.map{|sass_file| corresponding_sourcemap_file(sass_file)}
|
64
|
+
end
|
65
|
+
|
50
66
|
def corresponding_css_file(sass_file)
|
51
67
|
"#{to}/#{stylesheet_name(sass_file)}.css"
|
52
68
|
end
|
53
69
|
|
70
|
+
def corresponding_sourcemap_file(sass_file)
|
71
|
+
"#{to}/#{stylesheet_name(sass_file)}.css.map"
|
72
|
+
end
|
73
|
+
|
54
74
|
def target_directories
|
55
75
|
css_files.map{|css_file| File.dirname(css_file)}.uniq.sort.sort_by{|d| d.length }
|
56
76
|
end
|
@@ -78,10 +98,18 @@ module Compass
|
|
78
98
|
nil
|
79
99
|
end
|
80
100
|
|
101
|
+
def reset!
|
102
|
+
reset_staleness_checker!
|
103
|
+
@sass_files = nil
|
104
|
+
@css_files = nil
|
105
|
+
@sourcemap_files = nil
|
106
|
+
end
|
107
|
+
|
81
108
|
def clean!
|
82
109
|
remove options[:cache_location]
|
83
|
-
css_files.each do |css_file|
|
110
|
+
css_files.zip(sourcemap_files).each do |css_file, sourcemap_file|
|
84
111
|
remove css_file
|
112
|
+
remove sourcemap_file
|
85
113
|
end
|
86
114
|
end
|
87
115
|
|
@@ -98,9 +126,9 @@ module Compass
|
|
98
126
|
|
99
127
|
# Compile each sass file.
|
100
128
|
result = timed do
|
101
|
-
sass_files.zip(css_files).each do |sass_filename, css_filename|
|
129
|
+
sass_files.zip(css_files, sourcemap_files).each do |sass_filename, css_filename, sourcemap_filename|
|
102
130
|
begin
|
103
|
-
compile_if_required sass_filename, css_filename
|
131
|
+
compile_if_required sass_filename, css_filename, sourcemap_filename
|
104
132
|
rescue Sass::SyntaxError => e
|
105
133
|
failure_count += 1
|
106
134
|
handle_exception(sass_filename, css_filename, e)
|
@@ -113,69 +141,102 @@ module Compass
|
|
113
141
|
return failure_count
|
114
142
|
end
|
115
143
|
|
116
|
-
def compile_if_required(sass_filename, css_filename)
|
117
|
-
if should_compile?(sass_filename, css_filename)
|
118
|
-
compile sass_filename, css_filename
|
144
|
+
def compile_if_required(sass_filename, css_filename, sourcemap_filename = nil)
|
145
|
+
if should_compile?(sass_filename, css_filename, sourcemap_filename)
|
146
|
+
compile sass_filename, css_filename, sourcemap_filename
|
119
147
|
else
|
120
148
|
logger.record :unchanged, basename(sass_filename) unless options[:quiet]
|
149
|
+
remove(sourcemap_filename) if sourcemap_filename && !options[:sourcemap]
|
121
150
|
end
|
122
151
|
end
|
123
152
|
|
124
|
-
def timed
|
153
|
+
def timed(timed_thing = lambda {|res| res})
|
125
154
|
start_time = Time.now
|
126
155
|
res = yield
|
127
156
|
end_time = Time.now
|
128
|
-
|
129
|
-
|
157
|
+
has_duration = timed_thing.call(res)
|
158
|
+
has_duration.instance_variable_set("@__duration", end_time - start_time)
|
159
|
+
def has_duration.__duration
|
130
160
|
@__duration
|
131
161
|
end
|
132
162
|
res
|
133
163
|
end
|
134
164
|
|
135
165
|
# Compile one Sass file
|
136
|
-
def compile(sass_filename, css_filename)
|
137
|
-
css_content = logger.red do
|
138
|
-
timed do
|
139
|
-
engine(sass_filename, css_filename)
|
166
|
+
def compile(sass_filename, css_filename, sourcemap_filename = nil)
|
167
|
+
css_content, sourcemap = logger.red do
|
168
|
+
timed(lambda {|r| r[0]}) do
|
169
|
+
engine = engine(sass_filename, css_filename, sourcemap_filename)
|
170
|
+
if sourcemap_filename && options[:sourcemap]
|
171
|
+
engine.render_with_sourcemap(relative_path(css_filename, sourcemap_filename))
|
172
|
+
else
|
173
|
+
[engine.render, nil]
|
174
|
+
end
|
140
175
|
end
|
141
176
|
end
|
142
177
|
duration = options[:time] ? "(#{(css_content.__duration * 1000).round / 1000.0}s)" : ""
|
143
|
-
write_file(css_filename, css_content, options.merge(:force => true, :extra => duration))
|
178
|
+
write_file(css_filename, css_content, options.merge(:force => true, :extra => duration), sass_options[:unix_newlines])
|
144
179
|
Compass.configuration.run_stylesheet_saved(css_filename)
|
180
|
+
if sourcemap && sourcemap_filename
|
181
|
+
sourcemap_content = sourcemap.to_json(:css_path => css_filename,
|
182
|
+
:sourcemap_path => sourcemap_filename)
|
183
|
+
write_file(sourcemap_filename, sourcemap_content, options.merge(:force => true), sass_options[:unix_newlines])
|
184
|
+
Compass.configuration.run_sourcemap_saved(sourcemap_filename)
|
185
|
+
elsif sourcemap_filename && File.exist?(sourcemap_filename)
|
186
|
+
remove sourcemap_filename
|
187
|
+
Compass.configuration.run_sourcemap_removed(sourcemap_filename)
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
def relative_path(from_path, to_path)
|
192
|
+
Pathname.new(to_path).relative_path_from(Pathname.new(from_path).dirname).to_s
|
145
193
|
end
|
146
194
|
|
147
|
-
def should_compile?(sass_filename, css_filename)
|
148
|
-
|
195
|
+
def should_compile?(sass_filename, css_filename, sourcemap_filename = nil)
|
196
|
+
return true if css_filename && !File.exist?(css_filename)
|
197
|
+
return true if sourcemap_filename && options[:sourcemap] && !File.exist?(sourcemap_filename)
|
198
|
+
options[:force] ||
|
199
|
+
needs_update?(css_filename, sass_filename) ||
|
200
|
+
(options[:sourcemap] && needs_update?(sourcemap_filename, sass_filename))
|
149
201
|
end
|
150
202
|
|
151
203
|
# A sass engine for compiling a single file.
|
152
|
-
def engine(sass_filename, css_filename)
|
204
|
+
def engine(sass_filename, css_filename, sourcemap_filename = nil)
|
153
205
|
syntax = (sass_filename =~ /\.(s[ac]ss)$/) && $1.to_sym || :sass
|
154
|
-
opts = sass_options.merge(:filename => sass_filename,
|
155
|
-
|
206
|
+
opts = sass_options.merge(:filename => sass_filename,
|
207
|
+
:css_filename => css_filename,
|
208
|
+
:syntax => syntax,
|
209
|
+
:sourcemap_filename => sourcemap_filename)
|
210
|
+
Sass::Engine.new(open(sass_filename).read, opts)
|
156
211
|
end
|
157
212
|
|
158
213
|
# Place the syntax error into the target css file,
|
159
214
|
# formatted to display in the browser (in development mode)
|
160
215
|
# if there's an error.
|
161
216
|
def handle_exception(sass_filename, css_filename, e)
|
162
|
-
exception_file = basename(e.sass_filename)
|
217
|
+
exception_file = basename(e.sass_filename || sass_filename)
|
163
218
|
file = basename(sass_filename)
|
164
219
|
exception_file = nil if exception_file == file
|
165
220
|
formatted_error = "(Line #{e.sass_line}#{ " of #{exception_file}" if exception_file}: #{e.message})"
|
166
221
|
logger.record :error, file, formatted_error
|
167
222
|
Compass.configuration.run_stylesheet_error(sass_filename, formatted_error)
|
168
|
-
write_file css_filename, error_contents(e, sass_filename), options.merge(:force => true)
|
223
|
+
write_file css_filename, error_contents(e, sass_filename), options.merge(:force => true), sass_options[:unix_newlines]
|
169
224
|
end
|
170
225
|
|
171
226
|
# Haml refactored this logic in 2.3, this is backwards compatibility for either one
|
172
227
|
def error_contents(e, sass_filename)
|
173
|
-
if
|
228
|
+
if show_full_exception?
|
174
229
|
e.sass_template = sass_filename
|
175
|
-
Sass::SyntaxError.exception_to_css(e
|
230
|
+
Sass::SyntaxError.exception_to_css(e)
|
176
231
|
else
|
177
|
-
Sass::
|
178
|
-
|
232
|
+
header = Sass::SyntaxError.send(:header_string, e, 1)
|
233
|
+
<<END
|
234
|
+
/*
|
235
|
+
#{header.gsub("*/", "*\\/")}
|
236
|
+
|
237
|
+
Backtrace:\n#{e.backtrace.join("\n").gsub("*/", "*\\/")}
|
238
|
+
*/
|
239
|
+
END
|
179
240
|
end
|
180
241
|
end
|
181
242
|
|
@@ -42,7 +42,7 @@ module Compass
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def comment_for_preferred_syntax
|
45
|
-
if top_level.
|
45
|
+
if top_level.preferred_syntax_without_default.nil? && top_level.sass_dir
|
46
46
|
%Q{
|
47
47
|
# If you prefer the indented syntax, you might want to regenerate this
|
48
48
|
# project again passing --syntax sass, or you can uncomment this:
|
@@ -55,5 +55,8 @@ module Compass
|
|
55
55
|
end
|
56
56
|
end
|
57
57
|
end
|
58
|
+
class Data
|
59
|
+
include Comments
|
60
|
+
end
|
58
61
|
end
|
59
62
|
end
|
@@ -3,36 +3,13 @@ module Compass
|
|
3
3
|
@callbacks_loaded = false
|
4
4
|
# The helpers are available as methods on the Compass module. E.g. Compass.configuration
|
5
5
|
module Helpers
|
6
|
-
def configuration
|
7
|
-
@configuration ||= default_configuration
|
8
|
-
if block_given?
|
9
|
-
yield @configuration
|
10
|
-
end
|
11
|
-
@configuration
|
12
|
-
end
|
13
|
-
|
14
|
-
def default_configuration
|
15
|
-
Data.new('defaults').extend(Defaults).extend(Comments)
|
16
|
-
end
|
17
|
-
|
18
|
-
def add_configuration(config, filename = nil)
|
19
|
-
return if config.nil?
|
20
|
-
|
21
|
-
|
22
|
-
data = configuration_for(config, filename)
|
23
|
-
|
24
|
-
# puts "New configuration: #{data.name}"
|
25
|
-
# puts caller.join("\n")
|
26
|
-
data.inherit_from!(configuration)
|
27
|
-
data.on_top!
|
28
|
-
@configuration = data
|
29
|
-
end
|
30
|
-
|
31
6
|
def configuration_for(config, filename = nil, defaults = nil)
|
32
7
|
if config.nil?
|
33
8
|
nil
|
34
9
|
elsif config.is_a?(Compass::Configuration::Data)
|
35
10
|
config
|
11
|
+
elsif config.instance_of?(Hash)
|
12
|
+
Compass::Configuration::Data.new(filename, config)
|
36
13
|
elsif config.respond_to?(:read)
|
37
14
|
filename ||= config.to_s if config.is_a?(Pathname)
|
38
15
|
Compass::Configuration::FileData.new_from_string(config.read, filename, defaults)
|
@@ -47,11 +24,6 @@ module Compass
|
|
47
24
|
end
|
48
25
|
end
|
49
26
|
|
50
|
-
# Support for testing.
|
51
|
-
def reset_configuration!
|
52
|
-
@configuration = nil
|
53
|
-
end
|
54
|
-
|
55
27
|
def sass_plugin_configuration
|
56
28
|
configuration.to_sass_plugin_options
|
57
29
|
end
|
@@ -104,33 +76,7 @@ module Compass
|
|
104
76
|
end
|
105
77
|
add_configuration(data)
|
106
78
|
else
|
107
|
-
add_configuration(options[:project_type] || configuration.project_type_without_default || (yield if block_given?) || :stand_alone)
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
def discover_extensions!
|
112
|
-
Compass.shared_extension_paths.each do |extensions_path|
|
113
|
-
if File.directory?(extensions_path)
|
114
|
-
Compass::Frameworks.discover(extensions_path)
|
115
|
-
end
|
116
|
-
end
|
117
|
-
if File.directory?(configuration.extensions_path)
|
118
|
-
Compass::Frameworks.discover(configuration.extensions_path)
|
119
|
-
end
|
120
|
-
end
|
121
|
-
|
122
|
-
# Returns a full path to the relative path to the project directory
|
123
|
-
def projectize(path, project_path = nil)
|
124
|
-
project_path ||= configuration.project_path
|
125
|
-
File.join(project_path, *path.split('/'))
|
126
|
-
end
|
127
|
-
|
128
|
-
def deprojectize(path, project_path = nil)
|
129
|
-
project_path ||= configuration.project_path
|
130
|
-
if path[0..(project_path.size - 1)] == project_path
|
131
|
-
path[(project_path.size + 1)..-1]
|
132
|
-
else
|
133
|
-
path
|
79
|
+
add_configuration(options[:project_type] || configuration.project_type_without_default || (yield if block_given?) || :stand_alone)
|
134
80
|
end
|
135
81
|
end
|
136
82
|
|
@@ -149,12 +95,19 @@ module Compass
|
|
149
95
|
end
|
150
96
|
end
|
151
97
|
|
98
|
+
# @deprecated
|
152
99
|
def compiler
|
100
|
+
Compass::Deprecation.deprecated!(:compiler_accessor,
|
101
|
+
"Compass.compiler is deprecated. Use Compass.sass_compiler instead.")
|
102
|
+
Compass::Deprecation.mark_as_issued(:compass_compiler_constructor)
|
153
103
|
Compass::Compiler.new(*Compass.configuration.to_compiler_arguments)
|
154
104
|
end
|
105
|
+
|
106
|
+
def sass_compiler(*args)
|
107
|
+
Compass::SassCompiler.new(*args)
|
108
|
+
end
|
155
109
|
end
|
156
110
|
end
|
157
111
|
|
158
112
|
extend Configuration::Helpers
|
159
|
-
|
160
113
|
end
|
@@ -31,9 +31,9 @@ module Compass
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
if @added_import_paths
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
@added_import_paths.each do |p|
|
35
|
+
self.additional_import_paths << p unless self.additional_import_paths.include?(p)
|
36
|
+
end
|
37
37
|
end
|
38
38
|
issue_deprecation_warnings
|
39
39
|
end
|
@@ -43,6 +43,10 @@ module Compass
|
|
43
43
|
(required_libraries || []).each do |lib|
|
44
44
|
contents << %Q{require '#{lib}'\n}
|
45
45
|
end
|
46
|
+
unless (required_libraries || []).include?("compass/import-once/activate") ||
|
47
|
+
(required_libraries || []).include?("compass/import-once")
|
48
|
+
contents << "require 'compass/import-once/activate'\n"
|
49
|
+
end
|
46
50
|
(loaded_frameworks || []).each do |lib|
|
47
51
|
contents << %Q{load '#{lib}'\n}
|
48
52
|
end
|
@@ -84,5 +88,8 @@ module Compass
|
|
84
88
|
end
|
85
89
|
|
86
90
|
end
|
91
|
+
class Data
|
92
|
+
include Serialization
|
93
|
+
end
|
87
94
|
end
|
88
95
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Compass
|
2
|
+
module Deprecation
|
3
|
+
class << self
|
4
|
+
attr_accessor :issued_deprecations
|
5
|
+
end
|
6
|
+
self.issued_deprecations = {}
|
7
|
+
|
8
|
+
def self.deprecated!(identifier, message)
|
9
|
+
return if Deprecation.issued_deprecations[identifier]
|
10
|
+
Deprecation.issued_deprecations[identifier] = true
|
11
|
+
warn message
|
12
|
+
warn "Called from #{caller[1]}"
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.mark_as_issued(identifier)
|
16
|
+
Deprecation.issued_deprecations[identifier] = true
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/compass/errors.rb
CHANGED
@@ -45,10 +45,6 @@ module Compass::Exec::GlobalOptionsParser
|
|
45
45
|
self.options[:force] = true
|
46
46
|
end
|
47
47
|
|
48
|
-
opts.on('--dry-run', :NONE, 'Dry Run. Tells you what it plans to do.') do
|
49
|
-
self.options[:dry_run] = true
|
50
|
-
end
|
51
|
-
|
52
48
|
opts.on('--boring', :NONE, 'Turn off colorized output.') do
|
53
49
|
self.options[:color_output] = false
|
54
50
|
end
|
@@ -61,6 +61,14 @@ module Compass::Exec::ProjectOptionsParser
|
|
61
61
|
opts.on('--no-line-comments', :NONE, 'Disable line comments.') do
|
62
62
|
self.options[:line_comments] = false
|
63
63
|
end
|
64
|
+
|
65
|
+
opts.on('--http-path HTTP_PATH', 'Set this to the root of your project when deployed') do |http_path|
|
66
|
+
self.options[:http_path] = http_path
|
67
|
+
end
|
68
|
+
|
69
|
+
opts.on('--generated-images-path GENERATED_IMAGES_PATH', 'The path where you generate your images') do |generated_images_path|
|
70
|
+
self.options[:generated_images_path] = generated_images_path
|
71
|
+
end
|
64
72
|
end
|
65
73
|
|
66
74
|
end
|
data/lib/compass/logger.rb
CHANGED
@@ -2,17 +2,22 @@ module Compass
|
|
2
2
|
|
3
3
|
class Logger
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
COLORS = { :clear => 0, :red => 31, :green => 32, :yellow => 33 }
|
5
|
+
COLORS = { :clear => 0, :red => 31, :green => 32, :yellow => 33, :blue => 34 }
|
8
6
|
|
9
7
|
ACTION_COLORS = {
|
10
8
|
:error => :red,
|
11
9
|
:warning => :yellow,
|
10
|
+
:info => :green,
|
12
11
|
:compile => :green,
|
13
12
|
:overwrite => :yellow,
|
13
|
+
:modified => :yellow,
|
14
|
+
:clean => :yellow,
|
15
|
+
:write => :green,
|
14
16
|
:create => :green,
|
15
17
|
:remove => :yellow,
|
18
|
+
:delete => :yellow,
|
19
|
+
:deleted => :yellow,
|
20
|
+
:created => :yellow,
|
16
21
|
:exists => :green,
|
17
22
|
:directory => :green,
|
18
23
|
:identical => :green,
|
@@ -20,8 +25,30 @@ module Compass
|
|
20
25
|
:unchanged => :yellow
|
21
26
|
}
|
22
27
|
|
28
|
+
DEFAULT_ACTIONS = ACTION_COLORS.keys
|
29
|
+
|
30
|
+
ACTION_CAN_BE_QUIET = {
|
31
|
+
:error => false,
|
32
|
+
:warning => true,
|
33
|
+
:info => true,
|
34
|
+
:compile => true,
|
35
|
+
:overwrite => true,
|
36
|
+
:modified => true,
|
37
|
+
:clean => true,
|
38
|
+
:write => true,
|
39
|
+
:create => true,
|
40
|
+
:remove => true,
|
41
|
+
:delete => true,
|
42
|
+
:deleted => true,
|
43
|
+
:created => true,
|
44
|
+
:exists => true,
|
45
|
+
:directory => true,
|
46
|
+
:identical => true,
|
47
|
+
:convert => true,
|
48
|
+
:unchanged => true
|
49
|
+
}
|
23
50
|
|
24
|
-
attr_accessor :actions, :options
|
51
|
+
attr_accessor :actions, :options, :time
|
25
52
|
|
26
53
|
def initialize(*actions)
|
27
54
|
self.options = actions.last.is_a?(Hash) ? actions.pop : {}
|
@@ -31,7 +58,11 @@ module Compass
|
|
31
58
|
|
32
59
|
# Record an action that has occurred
|
33
60
|
def record(action, *arguments)
|
61
|
+
return if options[:quiet] && ACTION_CAN_BE_QUIET[action]
|
34
62
|
msg = ""
|
63
|
+
if time
|
64
|
+
msg << Time.now.strftime("%I:%M:%S.%3N %p")
|
65
|
+
end
|
35
66
|
msg << color(ACTION_COLORS[action]) if Compass.configuration.color_output
|
36
67
|
msg << "#{action_padding(action)}#{action}"
|
37
68
|
msg << color(:clear) if Compass.configuration.color_output
|
@@ -39,22 +70,26 @@ module Compass
|
|
39
70
|
log msg
|
40
71
|
end
|
41
72
|
|
73
|
+
def green
|
74
|
+
wrap(:green) { yield }
|
75
|
+
end
|
76
|
+
|
42
77
|
def red
|
43
|
-
|
44
|
-
$stdout.write(color(:red))
|
45
|
-
yield
|
46
|
-
ensure
|
47
|
-
$stderr.write(color(:clear))
|
48
|
-
$stdout.write(color(:clear))
|
78
|
+
wrap(:red) { yield }
|
49
79
|
end
|
50
80
|
|
51
81
|
def yellow
|
52
|
-
|
53
|
-
|
82
|
+
wrap(:yellow) { yield }
|
83
|
+
end
|
84
|
+
|
85
|
+
def wrap(c, reset_to = :clear)
|
86
|
+
$stderr.write(color(c))
|
87
|
+
$stdout.write(color(c))
|
54
88
|
yield
|
55
89
|
ensure
|
56
|
-
$stderr.write(color(
|
57
|
-
$stdout.write(color(
|
90
|
+
$stderr.write(color(reset_to))
|
91
|
+
$stdout.write(color(reset_to))
|
92
|
+
$stdout.flush
|
58
93
|
end
|
59
94
|
|
60
95
|
def color(c)
|
@@ -69,13 +104,16 @@ module Compass
|
|
69
104
|
end
|
70
105
|
end
|
71
106
|
|
107
|
+
# Emit a log message without a trailing newline
|
72
108
|
def emit(msg)
|
73
109
|
print msg
|
110
|
+
$stdout.flush
|
74
111
|
end
|
75
112
|
|
76
|
-
# Emit a log message
|
113
|
+
# Emit a log message with a trailing newline
|
77
114
|
def log(msg)
|
78
115
|
puts msg
|
116
|
+
$stdout.flush
|
79
117
|
end
|
80
118
|
|
81
119
|
# add padding to the left of an action that was performed.
|
@@ -89,15 +127,14 @@ module Compass
|
|
89
127
|
end
|
90
128
|
end
|
91
129
|
|
92
|
-
class NullLogger
|
130
|
+
class NullLogger < Logger
|
93
131
|
def record(*args)
|
94
132
|
end
|
95
133
|
|
96
134
|
def log(msg)
|
97
135
|
end
|
98
136
|
|
99
|
-
def
|
100
|
-
yield
|
137
|
+
def emit(msg)
|
101
138
|
end
|
102
139
|
end
|
103
140
|
end
|