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
@@ -4,12 +4,16 @@ require 'compass/exec'
|
|
4
4
|
require 'stringio'
|
5
5
|
|
6
6
|
class RegressionsTest < Test::Unit::TestCase
|
7
|
+
include SpriteHelper
|
7
8
|
include Compass::CommandLineHelper
|
8
|
-
|
9
|
+
|
10
|
+
def setup
|
11
|
+
create_sprite_temp
|
9
12
|
Compass.reset_configuration!
|
10
13
|
end
|
11
14
|
|
12
|
-
|
15
|
+
def teardown
|
16
|
+
clean_up_sprites
|
13
17
|
Compass.reset_configuration!
|
14
18
|
end
|
15
19
|
|
@@ -18,12 +22,8 @@ class RegressionsTest < Test::Unit::TestCase
|
|
18
22
|
compass "create --bare issue911"
|
19
23
|
FileUtils.mkdir_p "issue911/images/sprites/a"
|
20
24
|
FileUtils.mkdir_p "issue911/images/sprites/b"
|
21
|
-
|
22
|
-
|
23
|
-
end
|
24
|
-
open "issue911/images/sprites/b/bar.png", "wb" do |f|
|
25
|
-
f.write(Compass::PNG.new(5,10, [255,255,0]).to_blob)
|
26
|
-
end
|
25
|
+
FileUtils.cp File.join(@images_tmp_path, 'nested/squares/ten-by-ten.png'), "issue911/images/sprites/a/foo.png"
|
26
|
+
FileUtils.cp File.join(@images_tmp_path, 'nested/squares/ten-by-ten.png'), "issue911/images/sprites/a/bar.png"
|
27
27
|
Dir.chdir "issue911" do
|
28
28
|
result = compile_for_project(<<-SCSS)
|
29
29
|
@import "sprites/**/*.png";
|
@@ -77,17 +77,22 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
77
77
|
def test_math_functions
|
78
78
|
assert_equal "0.84147", evaluate("sin(1)")
|
79
79
|
assert_equal "0.84147px", evaluate("sin(1px)")
|
80
|
+
assert_equal "0.5236", evaluate("asin(0.5)")
|
81
|
+
assert_equal "0.5236", evaluate("asin(100px/200px)")
|
80
82
|
assert_equal "0.0", evaluate("sin(pi())")
|
81
83
|
assert_equal "1", evaluate("sin(pi() / 2)")
|
82
84
|
assert_equal "0.0", evaluate("sin(180deg)")
|
83
85
|
assert_equal "-1", evaluate("sin(3* pi() / 2)")
|
84
86
|
assert_equal "-1", evaluate("cos(pi())")
|
85
87
|
assert_equal "1", evaluate("cos(360deg)")
|
88
|
+
assert_equal "1.0472", evaluate("acos(0.5)")
|
89
|
+
assert_equal "1.0472", evaluate("acos(100px/200px)")
|
86
90
|
assert_equal "-0.17605", evaluate("sin(270)")
|
87
91
|
assert_equal "1", evaluate("cos(2*pi())")
|
88
92
|
assert_equal "0.0", evaluate("cos(pi() / 2)")
|
89
93
|
assert_equal "0.0", evaluate("cos(3* pi() / 2)")
|
90
94
|
assert_equal "0.0", evaluate("tan(pi())")
|
95
|
+
assert_equal "0.46365", evaluate("atan(0.5)")
|
91
96
|
assert_equal "0.0", evaluate("tan(360deg)")
|
92
97
|
assert_equal "0.95892", evaluate("sin(360)")
|
93
98
|
assert evaluate("tan(pi()/2 - 0.0001)").to_f > 1000, evaluate("tan(pi()/2 - 0.0001)")
|
@@ -104,6 +109,15 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
104
109
|
assert_equal "25px", evaluate("pow(5px, 2)")
|
105
110
|
assert_equal "25px", evaluate("pow($number: 5px, $exponent: 2)")
|
106
111
|
assert_equal "79.43236px", evaluate("pow(5px, e())")
|
112
|
+
assert((0..2).include?(evaluate("random(2)").to_i))
|
113
|
+
random_warning = capture_warning do
|
114
|
+
assert((4..16).include?(evaluate("random(4, 16)").to_i))
|
115
|
+
end
|
116
|
+
assert_equal <<WARNING.strip, random_warning.strip
|
117
|
+
WARNING: The $start value for random(4, 16) is not supported by Sass and is now
|
118
|
+
deprecated in Compass and will be removed in a future release.
|
119
|
+
Use `4 + random(12)` instead.
|
120
|
+
WARNING
|
107
121
|
end
|
108
122
|
|
109
123
|
def test_blank
|
@@ -129,6 +143,9 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
129
143
|
assert_equal "url(/font/with/no_ext) format('opentype')", evaluate("font_files('/font/with/no_ext', 'otf')")
|
130
144
|
assert_equal "url(/font/with/weird.ext) format('truetype')", evaluate("font_files('/font/with/weird.ext', 'ttf')")
|
131
145
|
|
146
|
+
# unquoted path strings used to break because of a regex test
|
147
|
+
assert_equal "url(/font/with/right_ext.woff) format('woff')", evaluate("font_files(unquote('/font/with/right_ext.woff'))")
|
148
|
+
|
132
149
|
assert_equal "url(/font/with/right_ext.woff) format('woff'), url(/font/with/right_ext_also.otf) format('opentype')", evaluate("font_files('/font/with/right_ext.woff', '/font/with/right_ext_also.otf')")
|
133
150
|
assert_equal "url(/font/with/wrong_ext.woff) format('truetype'), url(/font/with/right_ext.otf) format('opentype')", evaluate("font_files('/font/with/wrong_ext.woff', 'ttf', '/font/with/right_ext.otf')")
|
134
151
|
|
@@ -165,7 +182,7 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
165
182
|
:original
|
166
183
|
end
|
167
184
|
end
|
168
|
-
c.send(:include, Compass::SassExtensions::Functions::Urls)
|
185
|
+
c.send(:include, Compass::Core::SassExtensions::Functions::Urls)
|
169
186
|
assert_equal :original, c.new.#{helper}("logo.png")
|
170
187
|
end
|
171
188
|
}
|
@@ -175,15 +192,26 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
175
192
|
Compass.configuration.fonts_path = File.expand_path "../fixtures/fonts", File.dirname(__FILE__)
|
176
193
|
base64_string = File.read(File.join(Compass.configuration.fonts_path, "bgrove.base64.txt")).chomp
|
177
194
|
assert_equal "url('data:font/truetype;base64,#{base64_string}') format('truetype')", evaluate("inline_font_files('bgrove.ttf', truetype)")
|
195
|
+
|
196
|
+
# without specifying the format
|
197
|
+
assert_equal "url('data:font/truetype;base64,#{base64_string}') format('truetype')", evaluate("inline_font_files('bgrove.ttf')")
|
178
198
|
end
|
179
199
|
|
200
|
+
def test_font_formats
|
201
|
+
assert_equal "woff, truetype, svg, embedded-opentype", evaluate("font-formats('/font/name.woff', woff, '/fonts/name.ttf', '/fonts/name.svg#fontpath', unquote('/fonts/name.eot'))")
|
202
|
+
end
|
203
|
+
|
204
|
+
def test_linear_gradient_with_calc
|
205
|
+
assert_equal "-webkit-linear-gradient(left, #ffffff calc(100% - 50px), rgba(0, 0, 0, 0) calc(100% - 50px))",
|
206
|
+
evaluate("-webkit(-linear-gradient(to right, white calc(100% - 50px), transparent calc(100% - 50px)))")
|
207
|
+
end
|
180
208
|
|
181
209
|
def test_image_size_should_respond_to_to_path
|
182
210
|
object = mock()
|
183
211
|
object.expects(:to_path).returns('foo.jpg')
|
184
212
|
object.expects(:respond_to?).with(:to_path).returns(true)
|
185
213
|
|
186
|
-
Compass::SassExtensions::Functions::ImageSize::ImageProperties.new(object)
|
214
|
+
Compass::Core::SassExtensions::Functions::ImageSize::ImageProperties.new(object)
|
187
215
|
end
|
188
216
|
|
189
217
|
def test_reject
|
@@ -193,6 +221,12 @@ class SassExtensionsTest < Test::Unit::TestCase
|
|
193
221
|
|
194
222
|
protected
|
195
223
|
def evaluate(value)
|
196
|
-
Sass::Script::Parser.parse(value, 0, 0).perform(Sass::Environment.new)
|
224
|
+
result = Sass::Script::Parser.parse(value, 0, 0).perform(Sass::Environment.new)
|
225
|
+
begin
|
226
|
+
result.to_s
|
227
|
+
rescue Sass::SyntaxError => e
|
228
|
+
raise e unless e.message =~ /isn't a valid CSS value/
|
229
|
+
result.inspect
|
230
|
+
end
|
197
231
|
end
|
198
232
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
class GradientTestClass
|
2
|
+
extend Compass::Core::SassExtensions::Functions::Constants
|
3
|
+
extend Compass::Core::SassExtensions::Functions::GradientSupport::Functions
|
4
|
+
def self.options
|
5
|
+
{}
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'test_helper'
|
10
|
+
require 'compass'
|
11
|
+
|
12
|
+
class GradientsTest < Test::Unit::TestCase
|
13
|
+
include Sass::Script::Value::Helpers
|
14
|
+
|
15
|
+
def klass
|
16
|
+
GradientTestClass
|
17
|
+
end
|
18
|
+
|
19
|
+
test "should return correct angle" do
|
20
|
+
assert_equal number(330, 'deg'), klass.convert_angle_from_offical(number(120, 'deg'))
|
21
|
+
end
|
22
|
+
|
23
|
+
test "Should convert old to new" do
|
24
|
+
[:top => ['to', 'bottom'], :bottom => ['to', 'top'], :left => ['to', 'right'], :right => ['to', 'left']].each do |test_value|
|
25
|
+
assert_equal list(identifier(test_value.keys.first.to_s), :space), klass.convert_angle_from_offical(
|
26
|
+
list(identifier(test_value.values[0].first), identifier(test_value.values[0].last), :space))
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -52,6 +52,18 @@ class SpritesImageTest < Test::Unit::TestCase
|
|
52
52
|
assert_equal 'ten-by-ten_hover', test_image.hover.name
|
53
53
|
end
|
54
54
|
|
55
|
+
test 'hover should find image by _ or - in file name' do
|
56
|
+
map = test_map(:seperator => '-')
|
57
|
+
map.images.each_index do |i|
|
58
|
+
if map.images[i].name == 'ten-by-ten_hover'
|
59
|
+
map.images[i].stubs(:name).returns('ten-by-ten-hover')
|
60
|
+
end
|
61
|
+
end
|
62
|
+
test_image = map.images.first
|
63
|
+
|
64
|
+
assert_equal 'ten-by-ten-hover', test_image.hover.name
|
65
|
+
end
|
66
|
+
|
55
67
|
test 'no parent' do
|
56
68
|
assert_nil test_image.parent
|
57
69
|
end
|
@@ -74,6 +86,11 @@ class SpritesImageTest < Test::Unit::TestCase
|
|
74
86
|
assert img.repeat_x?
|
75
87
|
end
|
76
88
|
|
89
|
+
test 'image repeat-y' do
|
90
|
+
img = test_image "selectors_ten_by_ten_repeat" => Sass::Script::String.new('repeat-y')
|
91
|
+
assert img.repeat_y?
|
92
|
+
end
|
93
|
+
|
77
94
|
test 'image position' do
|
78
95
|
image = test_image "selectors_ten_by_ten_position" => Sass::Script::Number.new(100, ["px"])
|
79
96
|
assert_equal 100, image.position.value
|
@@ -0,0 +1,46 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
require 'compass/sass_extensions/sprites/images'
|
3
|
+
|
4
|
+
class ImagesTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@images = Compass::SassExtensions::Sprites::Images.new
|
8
|
+
@images << OpenStruct.new(:foo => 1, :name => 'bob', :size => 1200, :width => 10)
|
9
|
+
@images << OpenStruct.new(:foo => 2, :name => 'bob', :size => 300, :width => 100)
|
10
|
+
@images << OpenStruct.new(:foo => 3, :name => 'aob', :size => 120, :width => 50)
|
11
|
+
@images << OpenStruct.new(:foo => 4, :name => 'zbob', :size => 600, :width => 55)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
test "sort by size" do
|
16
|
+
@images.sort_by! :size
|
17
|
+
assert_equal [3, 2, 4, 1], @images.map(&:foo)
|
18
|
+
end
|
19
|
+
|
20
|
+
test "sort by !size" do
|
21
|
+
@images.sort_by! '!size'
|
22
|
+
assert_equal [3, 2, 4, 1].reverse, @images.map(&:foo)
|
23
|
+
end
|
24
|
+
|
25
|
+
test "sort by name" do
|
26
|
+
@images.sort_by! :name
|
27
|
+
assert_equal [3, 2, 1, 4], @images.map(&:foo)
|
28
|
+
end
|
29
|
+
|
30
|
+
test "sort by !name" do
|
31
|
+
@images.sort_by! '!name'
|
32
|
+
assert_equal [3, 2, 1, 4].reverse, @images.map(&:foo)
|
33
|
+
end
|
34
|
+
|
35
|
+
test "sort by width" do
|
36
|
+
@images.sort_by! :width
|
37
|
+
assert_equal [1, 3, 4, 2], @images.map(&:foo)
|
38
|
+
end
|
39
|
+
|
40
|
+
test "sort by !width" do
|
41
|
+
@images.sort_by! '!width'
|
42
|
+
assert_equal [1, 3, 4, 2].reverse, @images.map(&:foo)
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
@@ -44,20 +44,20 @@ class LayoutTest < Test::Unit::TestCase
|
|
44
44
|
sprite_map_test(opts)
|
45
45
|
end
|
46
46
|
|
47
|
-
def horizontal(options= {})
|
47
|
+
def horizontal(options= {}, uri=URI)
|
48
48
|
opts = @options.merge("layout" => Sass::Script::String.new('horizontal'))
|
49
49
|
opts.merge!(options)
|
50
50
|
|
51
|
-
sprite_map_test(opts)
|
51
|
+
sprite_map_test(opts, uri)
|
52
52
|
end
|
53
53
|
|
54
54
|
# REPEAT_X
|
55
55
|
|
56
56
|
test 'repeat-x layout single image' do
|
57
|
-
opts = {"repeat_x_three_repeat" => Sass::Script::String.new('repeat-x')}
|
57
|
+
opts = {"repeat_x_three_repeat" => Sass::Script::String.new('repeat-x'), 'sort_by' => Sass::Script::String.new('width')}
|
58
58
|
map = sprite_map_test(@options.merge(opts), 'repeat_x/*.png')
|
59
59
|
assert_equal 6, map.width
|
60
|
-
assert_equal [0,
|
60
|
+
assert_equal [0, 1, 3, 6, 10, 3, 3], map.images.map(&:top)
|
61
61
|
assert_equal [0, 0, 0, 0, 0, 0, 3], map.images.map(&:left)
|
62
62
|
end
|
63
63
|
|
@@ -67,6 +67,22 @@ class LayoutTest < Test::Unit::TestCase
|
|
67
67
|
assert_equal 12, map.width
|
68
68
|
end
|
69
69
|
|
70
|
+
test "repeat-y layout single image" do
|
71
|
+
opts = {"layout" => Sass::Script::String.new('horizontal'), "squares_ten_by_ten_repeat" => Sass::Script::String.new('repeat-y')}
|
72
|
+
map = sprite_map_test(@options.merge(opts), 'squares/*.png')
|
73
|
+
assert_equal 30, map.width
|
74
|
+
assert_equal 20, map.height
|
75
|
+
assert_equal 3, map.images.size
|
76
|
+
assert_equal [[0,0], [0,10], [10,0]], map.images.map { |img| [img.top, img.left] }
|
77
|
+
assert map.horizontal?
|
78
|
+
end
|
79
|
+
|
80
|
+
test "repeat-y layout multi image" do
|
81
|
+
opts = {"layout" => Sass::Script::String.new('horizontal'), "repeat_x_three_repeat" => Sass::Script::String.new('repeat-y'), "repeat_x_four_repeat" => Sass::Script::String.new('repeat-y')}
|
82
|
+
map = sprite_map_test(@options.merge(opts), 'repeat_x/*.png')
|
83
|
+
assert_equal [[0, 0], [0, 5], [0, 9], [0, 10], [0, 13], [4, 5], [8, 5], [3, 10], [6, 10], [9, 10]], map.images.map { |img| [img.top, img.left] }
|
84
|
+
end
|
85
|
+
|
70
86
|
# VERTICAL LAYOUT
|
71
87
|
|
72
88
|
it "should have a vertical layout" do
|
@@ -139,10 +155,19 @@ class LayoutTest < Test::Unit::TestCase
|
|
139
155
|
assert_equal [0, 0, 0, 0], base.images.map(&:top)
|
140
156
|
assert_equal 80, base.width
|
141
157
|
end
|
158
|
+
|
159
|
+
it "should layout horizontaly with spacing and and position" do
|
160
|
+
base = horizontal({"spacing" => Sass::Script::Number.new(10, ['px']), "position" => Sass::Script::Number.new(50, ['%'])}, 'squares/*.png')
|
161
|
+
assert_equal [0, 20], base.images.map(&:left)
|
162
|
+
assert_equal [5, 0], base.images.map(&:top)
|
163
|
+
assert_equal 50, base.width
|
164
|
+
end
|
142
165
|
|
143
166
|
it "should layout horizontaly with position" do
|
144
167
|
base = horizontal("selectors_ten_by_ten_active_position" => Sass::Script::Number.new(10, ['px']))
|
145
168
|
assert_equal [0, 10, 0, 0], base.images.map(&:top)
|
169
|
+
assert_equal 40, base.width
|
170
|
+
assert_equal 20, base.height
|
146
171
|
end
|
147
172
|
|
148
173
|
it "should generate a horrizontal sprite" do
|
@@ -6,7 +6,10 @@ class SpriteMapTest < Test::Unit::TestCase
|
|
6
6
|
def setup
|
7
7
|
Hash.send(:include, Compass::SassExtensions::Functions::Sprites::VariableReader)
|
8
8
|
create_sprite_temp
|
9
|
-
file = StringIO.new(
|
9
|
+
file = StringIO.new(<<-CONFIG)
|
10
|
+
project_path = "#{@images_proj_path}"
|
11
|
+
images_dir = "#{@images_tmp_dir}"
|
12
|
+
CONFIG
|
10
13
|
Compass.add_configuration(file, "sprite_config")
|
11
14
|
Compass.configure_sass_plugin!
|
12
15
|
@options = {'cleanup' => Sass::Script::Bool.new(true), 'layout' => Sass::Script::String.new('vertical')}
|
@@ -60,6 +63,17 @@ class SpriteMapTest < Test::Unit::TestCase
|
|
60
63
|
assert_equal "ten-by-ten_#{selector}", @base.image_for('ten-by-ten').send(:"#{selector}").name
|
61
64
|
end
|
62
65
|
|
66
|
+
it "should find file with '-' #{selector}" do
|
67
|
+
map = sprite_map_test(:seperator => '-')
|
68
|
+
map.images.each_index do |i|
|
69
|
+
if map.images[i].name != 'ten-by-ten'
|
70
|
+
name = map.images[i].name.gsub(/_/, '-')
|
71
|
+
map.images[i].stubs(:name).returns(name)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
assert_equal "ten-by-ten-#{selector}", map.image_for('ten-by-ten').send(:"#{selector}").name
|
75
|
+
end
|
76
|
+
|
63
77
|
end
|
64
78
|
|
65
79
|
it "should generate sprite" do
|
@@ -98,6 +112,30 @@ class SpriteMapTest < Test::Unit::TestCase
|
|
98
112
|
FileUtils.rm_rf other_folder
|
99
113
|
end
|
100
114
|
|
115
|
+
test "should get correct relative_name for directories with similar names" do
|
116
|
+
Compass.reset_configuration!
|
117
|
+
uri = 'foo/*.png'
|
118
|
+
other_folder = File.join(@images_tmp_path, '../other-temp')
|
119
|
+
other_folder2 = File.join(@images_tmp_path, '../other-temp2')
|
120
|
+
|
121
|
+
FileUtils.mkdir_p other_folder
|
122
|
+
FileUtils.mkdir_p other_folder2
|
123
|
+
|
124
|
+
FileUtils.mkdir_p File.join(other_folder2, 'foo')
|
125
|
+
%w(my bar).each do |file|
|
126
|
+
FileUtils.touch(File.join(other_folder2, "foo/#{file}.png"))
|
127
|
+
end
|
128
|
+
|
129
|
+
config = Compass::Configuration::Data.new('config')
|
130
|
+
config.images_path = @images_tmp_path
|
131
|
+
config.sprite_load_path = [@images_tmp_path, other_folder, other_folder2]
|
132
|
+
Compass.add_configuration(config, "sprite_config")
|
133
|
+
|
134
|
+
assert_equal 'foo/my.png', Compass::SassExtensions::Sprites::SpriteMap.relative_name(File.join(other_folder2, 'foo/my.png'))
|
135
|
+
FileUtils.rm_rf other_folder
|
136
|
+
FileUtils.rm_rf other_folder2
|
137
|
+
end
|
138
|
+
|
101
139
|
test "should create map for nested" do
|
102
140
|
base = Compass::SassExtensions::Sprites::SpriteMap.from_uri OpenStruct.new(:value => 'nested/squares/*.png'), @base.instance_variable_get(:@evaluation_context), @options
|
103
141
|
assert_equal 'squares', base.name
|
@@ -128,4 +166,4 @@ class SpriteMapTest < Test::Unit::TestCase
|
|
128
166
|
assert_equal 0, image.size
|
129
167
|
end
|
130
168
|
|
131
|
-
end
|
169
|
+
end
|
metadata
CHANGED
@@ -1,62 +1,109 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Eppstein
|
8
8
|
- Scott Davis
|
9
|
-
- Eric
|
9
|
+
- Eric M. Suzanne
|
10
10
|
- Brandon Mathis
|
11
|
-
- Anthony Short
|
12
11
|
- Nico Hagenburger
|
13
12
|
autorequire:
|
14
13
|
bindir: bin
|
15
14
|
cert_chain: []
|
16
|
-
date: 2014-
|
15
|
+
date: 2014-08-16 00:00:00.000000000 Z
|
17
16
|
dependencies:
|
18
17
|
- !ruby/object:Gem::Dependency
|
19
18
|
name: sass
|
20
19
|
requirement: !ruby/object:Gem::Requirement
|
21
20
|
requirements:
|
22
|
-
- -
|
21
|
+
- - ">="
|
23
22
|
- !ruby/object:Gem::Version
|
24
|
-
version: 3.
|
23
|
+
version: 3.3.13
|
24
|
+
- - "<"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.5'
|
27
|
+
type: :runtime
|
28
|
+
prerelease: false
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.3.13
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '3.5'
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: compass-core
|
39
|
+
requirement: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.0.0
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - "~>"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 1.0.0
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: compass-import-once
|
53
|
+
requirement: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.0.5
|
25
58
|
type: :runtime
|
26
59
|
prerelease: false
|
27
60
|
version_requirements: !ruby/object:Gem::Requirement
|
28
61
|
requirements:
|
29
|
-
- - ~>
|
62
|
+
- - "~>"
|
30
63
|
- !ruby/object:Gem::Version
|
31
|
-
version:
|
64
|
+
version: 1.0.5
|
32
65
|
- !ruby/object:Gem::Dependency
|
33
66
|
name: chunky_png
|
34
67
|
requirement: !ruby/object:Gem::Requirement
|
35
68
|
requirements:
|
36
|
-
- - ~>
|
69
|
+
- - "~>"
|
37
70
|
- !ruby/object:Gem::Version
|
38
71
|
version: '1.2'
|
39
72
|
type: :runtime
|
40
73
|
prerelease: false
|
41
74
|
version_requirements: !ruby/object:Gem::Requirement
|
42
75
|
requirements:
|
43
|
-
- - ~>
|
76
|
+
- - "~>"
|
44
77
|
- !ruby/object:Gem::Version
|
45
78
|
version: '1.2'
|
46
79
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
80
|
+
name: rb-fsevent
|
48
81
|
requirement: !ruby/object:Gem::Requirement
|
49
82
|
requirements:
|
50
|
-
- -
|
83
|
+
- - ">="
|
51
84
|
- !ruby/object:Gem::Version
|
52
|
-
version: 0.
|
85
|
+
version: 0.9.3
|
53
86
|
type: :runtime
|
54
87
|
prerelease: false
|
55
88
|
version_requirements: !ruby/object:Gem::Requirement
|
56
89
|
requirements:
|
57
|
-
- -
|
90
|
+
- - ">="
|
58
91
|
- !ruby/object:Gem::Version
|
59
|
-
version: 0.
|
92
|
+
version: 0.9.3
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: rb-inotify
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0.9'
|
100
|
+
type: :runtime
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0.9'
|
60
107
|
description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
|
61
108
|
and maintenance of CSS.
|
62
109
|
email: chris@eppsteins.net
|
@@ -65,554 +112,25 @@ executables:
|
|
65
112
|
extensions: []
|
66
113
|
extra_rdoc_files: []
|
67
114
|
files:
|
68
|
-
- README.markdown
|
69
115
|
- LICENSE.markdown
|
70
|
-
- VERSION.yml
|
71
116
|
- Rakefile
|
72
117
|
- bin/compass
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
- examples/blueprint_default/parts/grid.html.haml
|
79
|
-
- examples/blueprint_default/parts/test-small.jpg
|
80
|
-
- examples/blueprint_default/parts/test.jpg
|
81
|
-
- examples/blueprint_default/parts/valid.png
|
82
|
-
- examples/blueprint_default/src/ie.scss
|
83
|
-
- examples/blueprint_default/src/images/grid.png
|
84
|
-
- examples/blueprint_default/src/print.scss
|
85
|
-
- examples/blueprint_default/src/screen.scss
|
86
|
-
- examples/blueprint_plugins/config.rb
|
87
|
-
- examples/blueprint_plugins/images/buttons/cross.png
|
88
|
-
- examples/blueprint_plugins/images/buttons/key.png
|
89
|
-
- examples/blueprint_plugins/images/buttons/tick.png
|
90
|
-
- examples/blueprint_plugins/images/grid.png
|
91
|
-
- examples/blueprint_plugins/images/link_icons/doc.png
|
92
|
-
- examples/blueprint_plugins/images/link_icons/email.png
|
93
|
-
- examples/blueprint_plugins/images/link_icons/external.png
|
94
|
-
- examples/blueprint_plugins/images/link_icons/feed.png
|
95
|
-
- examples/blueprint_plugins/images/link_icons/im.png
|
96
|
-
- examples/blueprint_plugins/images/link_icons/pdf.png
|
97
|
-
- examples/blueprint_plugins/images/link_icons/visited.png
|
98
|
-
- examples/blueprint_plugins/images/link_icons/xls.png
|
99
|
-
- examples/blueprint_plugins/images/test-small.jpg
|
100
|
-
- examples/blueprint_plugins/images/test.jpg
|
101
|
-
- examples/blueprint_plugins/images/valid.png
|
102
|
-
- examples/blueprint_plugins/index.html.haml
|
103
|
-
- examples/blueprint_plugins/plugins/buttons.html.haml
|
104
|
-
- examples/blueprint_plugins/plugins/fancy_type.html.haml
|
105
|
-
- examples/blueprint_plugins/plugins/link_icons.html.haml
|
106
|
-
- examples/blueprint_plugins/plugins/rtl.html.haml
|
107
|
-
- examples/blueprint_plugins/src/buttons.scss
|
108
|
-
- examples/blueprint_plugins/src/ie.scss
|
109
|
-
- examples/blueprint_plugins/src/images/grid.png
|
110
|
-
- examples/blueprint_plugins/src/link_icons.scss
|
111
|
-
- examples/blueprint_plugins/src/print.scss
|
112
|
-
- examples/blueprint_plugins/src/rtl_screen.scss
|
113
|
-
- examples/blueprint_plugins/src/screen.scss
|
114
|
-
- examples/blueprint_scoped/images/grid.png
|
115
|
-
- examples/blueprint_scoped/src/ie.scss
|
116
|
-
- examples/blueprint_scoped/src/print.scss
|
117
|
-
- examples/blueprint_scoped/src/screen.scss
|
118
|
-
- examples/blueprint_scoped_form/images/grid.png
|
119
|
-
- examples/blueprint_scoped_form/src/ie.scss
|
120
|
-
- examples/blueprint_scoped_form/src/print.scss
|
121
|
-
- examples/blueprint_scoped_form/src/screen.scss
|
122
|
-
- examples/blueprint_semantic/config.rb
|
123
|
-
- examples/blueprint_semantic/images/grid.png
|
124
|
-
- examples/blueprint_semantic/index.html.haml
|
125
|
-
- examples/blueprint_semantic/parts/fancy_type.html.haml
|
126
|
-
- examples/blueprint_semantic/parts/liquid.html.haml
|
127
|
-
- examples/blueprint_semantic/parts/test-small.jpg
|
128
|
-
- examples/blueprint_semantic/parts/test.jpg
|
129
|
-
- examples/blueprint_semantic/parts/valid.png
|
130
|
-
- examples/blueprint_semantic/src/ie.scss
|
131
|
-
- examples/blueprint_semantic/src/images/grid.png
|
132
|
-
- examples/blueprint_semantic/src/liquid.scss
|
133
|
-
- examples/blueprint_semantic/src/print.scss
|
134
|
-
- examples/blueprint_semantic/src/screen.scss
|
135
|
-
- examples/compass/bootstrap.rb
|
136
|
-
- examples/compass/clean.rb
|
137
|
-
- examples/compass/compass.html.haml
|
138
|
-
- examples/compass/config.rb
|
139
|
-
- examples/compass/headers.txt
|
140
|
-
- examples/compass/images/blue_arrow.gif
|
141
|
-
- examples/compass/images/border2.png
|
142
|
-
- examples/compass/images/emblem/favorite.png
|
143
|
-
- examples/compass/images/emblem/important.png
|
144
|
-
- examples/compass/images/emblem/photos.png
|
145
|
-
- examples/compass/images/emblem/readonly.png
|
146
|
-
- examples/compass/images/emblem/symbolic-link.png
|
147
|
-
- examples/compass/images/emblem/system.png
|
148
|
-
- examples/compass/images/emblem/unreadable.png
|
149
|
-
- examples/compass/images/flag/ad.png
|
150
|
-
- examples/compass/images/flag/ae.png
|
151
|
-
- examples/compass/images/flag/af.png
|
152
|
-
- examples/compass/images/flag/ag.png
|
153
|
-
- examples/compass/images/flag/ai.png
|
154
|
-
- examples/compass/images/flag/al.png
|
155
|
-
- examples/compass/images/flag/am.png
|
156
|
-
- examples/compass/images/flag/an.png
|
157
|
-
- examples/compass/images/flag/ao.png
|
158
|
-
- examples/compass/images/flag/ar.png
|
159
|
-
- examples/compass/images/flag/as.png
|
160
|
-
- examples/compass/images/flag/at.png
|
161
|
-
- examples/compass/images/flag/au.png
|
162
|
-
- examples/compass/images/flag/aw.png
|
163
|
-
- examples/compass/images/flag/ax.png
|
164
|
-
- examples/compass/images/flag/az.png
|
165
|
-
- examples/compass/images/flag/ba.png
|
166
|
-
- examples/compass/images/flag/bb.png
|
167
|
-
- examples/compass/images/flag/bd.png
|
168
|
-
- examples/compass/images/flag/be.png
|
169
|
-
- examples/compass/images/flag/bf.png
|
170
|
-
- examples/compass/images/flag/bg.png
|
171
|
-
- examples/compass/images/flag/bh.png
|
172
|
-
- examples/compass/images/flag/bi.png
|
173
|
-
- examples/compass/images/flag/bj.png
|
174
|
-
- examples/compass/images/flag/bm.png
|
175
|
-
- examples/compass/images/flag/bn.png
|
176
|
-
- examples/compass/images/flag/bo.png
|
177
|
-
- examples/compass/images/flag/br.png
|
178
|
-
- examples/compass/images/flag/bs.png
|
179
|
-
- examples/compass/images/flag/bt.png
|
180
|
-
- examples/compass/images/flag/bv.png
|
181
|
-
- examples/compass/images/flag/bw.png
|
182
|
-
- examples/compass/images/flag/by.png
|
183
|
-
- examples/compass/images/flag/bz.png
|
184
|
-
- examples/compass/images/flag/ca.png
|
185
|
-
- examples/compass/images/flag/catalonia.png
|
186
|
-
- examples/compass/images/flag/cc.png
|
187
|
-
- examples/compass/images/flag/cd.png
|
188
|
-
- examples/compass/images/flag/cf.png
|
189
|
-
- examples/compass/images/flag/cg.png
|
190
|
-
- examples/compass/images/flag/ch.png
|
191
|
-
- examples/compass/images/flag/ci.png
|
192
|
-
- examples/compass/images/flag/ck.png
|
193
|
-
- examples/compass/images/flag/cl.png
|
194
|
-
- examples/compass/images/flag/cm.png
|
195
|
-
- examples/compass/images/flag/cn.png
|
196
|
-
- examples/compass/images/flag/co.png
|
197
|
-
- examples/compass/images/flag/cr.png
|
198
|
-
- examples/compass/images/flag/cs.png
|
199
|
-
- examples/compass/images/flag/cu.png
|
200
|
-
- examples/compass/images/flag/cv.png
|
201
|
-
- examples/compass/images/flag/cx.png
|
202
|
-
- examples/compass/images/flag/cy.png
|
203
|
-
- examples/compass/images/flag/cz.png
|
204
|
-
- examples/compass/images/flag/de.png
|
205
|
-
- examples/compass/images/flag/dj.png
|
206
|
-
- examples/compass/images/flag/dk.png
|
207
|
-
- examples/compass/images/flag/dm.png
|
208
|
-
- examples/compass/images/flag/do.png
|
209
|
-
- examples/compass/images/flag/dz.png
|
210
|
-
- examples/compass/images/flag/ec.png
|
211
|
-
- examples/compass/images/flag/ee.png
|
212
|
-
- examples/compass/images/flag/eg.png
|
213
|
-
- examples/compass/images/flag/eh.png
|
214
|
-
- examples/compass/images/flag/england.png
|
215
|
-
- examples/compass/images/flag/er.png
|
216
|
-
- examples/compass/images/flag/es.png
|
217
|
-
- examples/compass/images/flag/et.png
|
218
|
-
- examples/compass/images/flag/europeanunion.png
|
219
|
-
- examples/compass/images/flag/fam.png
|
220
|
-
- examples/compass/images/flag/fi.png
|
221
|
-
- examples/compass/images/flag/fj.png
|
222
|
-
- examples/compass/images/flag/fk.png
|
223
|
-
- examples/compass/images/flag/fm.png
|
224
|
-
- examples/compass/images/flag/fo.png
|
225
|
-
- examples/compass/images/flag/fr.png
|
226
|
-
- examples/compass/images/flag/ga.png
|
227
|
-
- examples/compass/images/flag/gb.png
|
228
|
-
- examples/compass/images/flag/gd.png
|
229
|
-
- examples/compass/images/flag/ge.png
|
230
|
-
- examples/compass/images/flag/gf.png
|
231
|
-
- examples/compass/images/flag/gh.png
|
232
|
-
- examples/compass/images/flag/gi.png
|
233
|
-
- examples/compass/images/flag/gl.png
|
234
|
-
- examples/compass/images/flag/gm.png
|
235
|
-
- examples/compass/images/flag/gn.png
|
236
|
-
- examples/compass/images/flag/gp.png
|
237
|
-
- examples/compass/images/flag/gq.png
|
238
|
-
- examples/compass/images/flag/gr.png
|
239
|
-
- examples/compass/images/flag/gs.png
|
240
|
-
- examples/compass/images/flag/gt.png
|
241
|
-
- examples/compass/images/flag/gu.png
|
242
|
-
- examples/compass/images/flag/gw.png
|
243
|
-
- examples/compass/images/flag/gy.png
|
244
|
-
- examples/compass/images/flag/hk.png
|
245
|
-
- examples/compass/images/flag/hm.png
|
246
|
-
- examples/compass/images/flag/hn.png
|
247
|
-
- examples/compass/images/flag/hr.png
|
248
|
-
- examples/compass/images/flag/ht.png
|
249
|
-
- examples/compass/images/flag/hu.png
|
250
|
-
- examples/compass/images/flag/id-2.png
|
251
|
-
- examples/compass/images/flag/ie.png
|
252
|
-
- examples/compass/images/flag/il.png
|
253
|
-
- examples/compass/images/flag/in.png
|
254
|
-
- examples/compass/images/flag/io.png
|
255
|
-
- examples/compass/images/flag/iq.png
|
256
|
-
- examples/compass/images/flag/ir.png
|
257
|
-
- examples/compass/images/flag/is.png
|
258
|
-
- examples/compass/images/flag/it.png
|
259
|
-
- examples/compass/images/flag/jm.png
|
260
|
-
- examples/compass/images/flag/jo.png
|
261
|
-
- examples/compass/images/flag/jp.png
|
262
|
-
- examples/compass/images/flag/ke.png
|
263
|
-
- examples/compass/images/flag/kg.png
|
264
|
-
- examples/compass/images/flag/kh.png
|
265
|
-
- examples/compass/images/flag/ki.png
|
266
|
-
- examples/compass/images/flag/km.png
|
267
|
-
- examples/compass/images/flag/kn.png
|
268
|
-
- examples/compass/images/flag/kp.png
|
269
|
-
- examples/compass/images/flag/kr.png
|
270
|
-
- examples/compass/images/flag/kw.png
|
271
|
-
- examples/compass/images/flag/ky.png
|
272
|
-
- examples/compass/images/flag/kz.png
|
273
|
-
- examples/compass/images/flag/la.png
|
274
|
-
- examples/compass/images/flag/lb.png
|
275
|
-
- examples/compass/images/flag/lc.png
|
276
|
-
- examples/compass/images/flag/li.png
|
277
|
-
- examples/compass/images/flag/lk.png
|
278
|
-
- examples/compass/images/flag/lr.png
|
279
|
-
- examples/compass/images/flag/ls.png
|
280
|
-
- examples/compass/images/flag/lt.png
|
281
|
-
- examples/compass/images/flag/lu.png
|
282
|
-
- examples/compass/images/flag/lv.png
|
283
|
-
- examples/compass/images/flag/ly.png
|
284
|
-
- examples/compass/images/flag/ma.png
|
285
|
-
- examples/compass/images/flag/mc.png
|
286
|
-
- examples/compass/images/flag/md.png
|
287
|
-
- examples/compass/images/flag/me.png
|
288
|
-
- examples/compass/images/flag/mg.png
|
289
|
-
- examples/compass/images/flag/mh.png
|
290
|
-
- examples/compass/images/flag/mk.png
|
291
|
-
- examples/compass/images/flag/ml.png
|
292
|
-
- examples/compass/images/flag/mm.png
|
293
|
-
- examples/compass/images/flag/mn.png
|
294
|
-
- examples/compass/images/flag/mo.png
|
295
|
-
- examples/compass/images/flag/mp.png
|
296
|
-
- examples/compass/images/flag/mq.png
|
297
|
-
- examples/compass/images/flag/mr.png
|
298
|
-
- examples/compass/images/flag/ms.png
|
299
|
-
- examples/compass/images/flag/mt.png
|
300
|
-
- examples/compass/images/flag/mu.png
|
301
|
-
- examples/compass/images/flag/mv.png
|
302
|
-
- examples/compass/images/flag/mw.png
|
303
|
-
- examples/compass/images/flag/mx.png
|
304
|
-
- examples/compass/images/flag/my.png
|
305
|
-
- examples/compass/images/flag/mz.png
|
306
|
-
- examples/compass/images/flag/na.png
|
307
|
-
- examples/compass/images/flag/nc.png
|
308
|
-
- examples/compass/images/flag/ne.png
|
309
|
-
- examples/compass/images/flag/nf.png
|
310
|
-
- examples/compass/images/flag/ng.png
|
311
|
-
- examples/compass/images/flag/ni.png
|
312
|
-
- examples/compass/images/flag/nl.png
|
313
|
-
- examples/compass/images/flag/no.png
|
314
|
-
- examples/compass/images/flag/np.png
|
315
|
-
- examples/compass/images/flag/nr.png
|
316
|
-
- examples/compass/images/flag/nu.png
|
317
|
-
- examples/compass/images/flag/nz.png
|
318
|
-
- examples/compass/images/flag/om.png
|
319
|
-
- examples/compass/images/flag/pa.png
|
320
|
-
- examples/compass/images/flag/pe.png
|
321
|
-
- examples/compass/images/flag/pf.png
|
322
|
-
- examples/compass/images/flag/pg.png
|
323
|
-
- examples/compass/images/flag/ph.png
|
324
|
-
- examples/compass/images/flag/pk.png
|
325
|
-
- examples/compass/images/flag/pl.png
|
326
|
-
- examples/compass/images/flag/pm.png
|
327
|
-
- examples/compass/images/flag/pn.png
|
328
|
-
- examples/compass/images/flag/pr.png
|
329
|
-
- examples/compass/images/flag/ps.png
|
330
|
-
- examples/compass/images/flag/pt.png
|
331
|
-
- examples/compass/images/flag/pw.png
|
332
|
-
- examples/compass/images/flag/py.png
|
333
|
-
- examples/compass/images/flag/qa.png
|
334
|
-
- examples/compass/images/flag/re.png
|
335
|
-
- examples/compass/images/flag/ro.png
|
336
|
-
- examples/compass/images/flag/rs.png
|
337
|
-
- examples/compass/images/flag/ru.png
|
338
|
-
- examples/compass/images/flag/rw.png
|
339
|
-
- examples/compass/images/flag/sa.png
|
340
|
-
- examples/compass/images/flag/sb.png
|
341
|
-
- examples/compass/images/flag/sc.png
|
342
|
-
- examples/compass/images/flag/scotland.png
|
343
|
-
- examples/compass/images/flag/sd.png
|
344
|
-
- examples/compass/images/flag/se.png
|
345
|
-
- examples/compass/images/flag/sg.png
|
346
|
-
- examples/compass/images/flag/sh.png
|
347
|
-
- examples/compass/images/flag/si.png
|
348
|
-
- examples/compass/images/flag/sj.png
|
349
|
-
- examples/compass/images/flag/sk.png
|
350
|
-
- examples/compass/images/flag/sl.png
|
351
|
-
- examples/compass/images/flag/sm.png
|
352
|
-
- examples/compass/images/flag/sn.png
|
353
|
-
- examples/compass/images/flag/so.png
|
354
|
-
- examples/compass/images/flag/sr.png
|
355
|
-
- examples/compass/images/flag/st.png
|
356
|
-
- examples/compass/images/flag/sv.png
|
357
|
-
- examples/compass/images/flag/sy.png
|
358
|
-
- examples/compass/images/flag/sz.png
|
359
|
-
- examples/compass/images/flag/tc.png
|
360
|
-
- examples/compass/images/flag/td.png
|
361
|
-
- examples/compass/images/flag/tf.png
|
362
|
-
- examples/compass/images/flag/tg.png
|
363
|
-
- examples/compass/images/flag/th.png
|
364
|
-
- examples/compass/images/flag/tj.png
|
365
|
-
- examples/compass/images/flag/tk.png
|
366
|
-
- examples/compass/images/flag/tl.png
|
367
|
-
- examples/compass/images/flag/tm.png
|
368
|
-
- examples/compass/images/flag/tn.png
|
369
|
-
- examples/compass/images/flag/to.png
|
370
|
-
- examples/compass/images/flag/tr.png
|
371
|
-
- examples/compass/images/flag/tt.png
|
372
|
-
- examples/compass/images/flag/tv.png
|
373
|
-
- examples/compass/images/flag/tw.png
|
374
|
-
- examples/compass/images/flag/tz.png
|
375
|
-
- examples/compass/images/flag/ua.png
|
376
|
-
- examples/compass/images/flag/ug.png
|
377
|
-
- examples/compass/images/flag/um.png
|
378
|
-
- examples/compass/images/flag/us.png
|
379
|
-
- examples/compass/images/flag/uy.png
|
380
|
-
- examples/compass/images/flag/uz.png
|
381
|
-
- examples/compass/images/flag/va.png
|
382
|
-
- examples/compass/images/flag/vc.png
|
383
|
-
- examples/compass/images/flag/ve.png
|
384
|
-
- examples/compass/images/flag/vg.png
|
385
|
-
- examples/compass/images/flag/vi.png
|
386
|
-
- examples/compass/images/flag/vn.png
|
387
|
-
- examples/compass/images/flag/vu.png
|
388
|
-
- examples/compass/images/flag/wales.png
|
389
|
-
- examples/compass/images/flag/wf.png
|
390
|
-
- examples/compass/images/flag/ws.png
|
391
|
-
- examples/compass/images/flag/ye.png
|
392
|
-
- examples/compass/images/flag/yt.png
|
393
|
-
- examples/compass/images/flag/za.png
|
394
|
-
- examples/compass/images/flag/zm.png
|
395
|
-
- examples/compass/images/flag/zw.png
|
396
|
-
- examples/compass/images/icon-chrome.png
|
397
|
-
- examples/compass/images/icon-firefox.png
|
398
|
-
- examples/compass/images/icon-ie.png
|
399
|
-
- examples/compass/images/icon-opera.png
|
400
|
-
- examples/compass/images/icon-safari.png
|
401
|
-
- examples/compass/pie.html.haml
|
402
|
-
- examples/compass/sprites.html.haml
|
403
|
-
- examples/compass/src/bp_layout.scss
|
404
|
-
- examples/compass/src/compass.scss
|
405
|
-
- examples/compass/src/images/blue_arrow.gif
|
406
|
-
- examples/compass/src/pie.scss
|
407
|
-
- examples/compass/src/sprites.scss
|
408
|
-
- examples/compass/src/sticky_footer.scss
|
409
|
-
- examples/compass/src/utilities.scss
|
410
|
-
- examples/compass/sticky_footer.html.haml
|
411
|
-
- examples/compass/utilities.html.haml
|
412
|
-
- examples/css3/bootstrap.rb
|
413
|
-
- examples/css3/clean.rb
|
414
|
-
- examples/css3/config.rb
|
415
|
-
- examples/css3/gradients.html.haml
|
416
|
-
- examples/css3/images/button_bg.png
|
417
|
-
- examples/css3/images/example.png
|
418
|
-
- examples/css3/index.html.haml
|
419
|
-
- examples/css3/src/_base.scss
|
420
|
-
- examples/css3/src/fancy-fonts.scss
|
421
|
-
- examples/css3/src/gradients.scss
|
422
|
-
- examples/css3/src/main.scss
|
423
|
-
- examples/downloader.rb
|
424
|
-
- examples/ninesixty/bootstrap.rb
|
425
|
-
- examples/ninesixty/clean.rb
|
426
|
-
- examples/ninesixty/config.rb
|
427
|
-
- examples/ninesixty/src/grid.scss
|
428
|
-
- examples/ninesixty/src/text.scss
|
429
|
-
- examples/README.markdown
|
430
|
-
- examples/susy/bootstrap.rb
|
431
|
-
- examples/susy/clean.rb
|
432
|
-
- examples/susy/config.rb
|
433
|
-
- examples/susy/src/_base.scss
|
434
|
-
- examples/susy/src/_defaults.scss
|
435
|
-
- examples/susy/src/screen.scss
|
436
|
-
- examples/yui/bootstrap.rb
|
437
|
-
- examples/yui/clean.rb
|
438
|
-
- examples/yui/config.rb
|
439
|
-
- examples/yui/divisions.html.haml
|
440
|
-
- examples/yui/index.html.haml
|
441
|
-
- examples/yui/src/screen.scss
|
442
|
-
- examples/yui/sub_divisions.html.haml
|
443
|
-
- examples/yui/templates.html.haml
|
444
|
-
- examples/yui/test.jpg
|
445
|
-
- examples/yui/typography.html.haml
|
446
|
-
- examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
|
447
|
-
- examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
|
448
|
-
- frameworks/blueprint/stylesheets/_blueprint.scss
|
449
|
-
- frameworks/blueprint/stylesheets/blueprint/_buttons.scss
|
450
|
-
- frameworks/blueprint/stylesheets/blueprint/_colors.scss
|
451
|
-
- frameworks/blueprint/stylesheets/blueprint/_debug.scss
|
452
|
-
- frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss
|
453
|
-
- frameworks/blueprint/stylesheets/blueprint/_form.scss
|
454
|
-
- frameworks/blueprint/stylesheets/blueprint/_grid.scss
|
455
|
-
- frameworks/blueprint/stylesheets/blueprint/_ie.scss
|
456
|
-
- frameworks/blueprint/stylesheets/blueprint/_interaction.scss
|
457
|
-
- frameworks/blueprint/stylesheets/blueprint/_link-icons.scss
|
458
|
-
- frameworks/blueprint/stylesheets/blueprint/_liquid.scss
|
459
|
-
- frameworks/blueprint/stylesheets/blueprint/_print.scss
|
460
|
-
- frameworks/blueprint/stylesheets/blueprint/_reset.scss
|
461
|
-
- frameworks/blueprint/stylesheets/blueprint/_rtl.scss
|
462
|
-
- frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss
|
463
|
-
- frameworks/blueprint/stylesheets/blueprint/_typography.scss
|
464
|
-
- frameworks/blueprint/stylesheets/blueprint/_utilities.scss
|
465
|
-
- frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss
|
466
|
-
- frameworks/blueprint/templates/basic/grid.png
|
467
|
-
- frameworks/blueprint/templates/basic/ie.sass
|
468
|
-
- frameworks/blueprint/templates/basic/manifest.rb
|
469
|
-
- frameworks/blueprint/templates/basic/partials/_base.sass
|
470
|
-
- frameworks/blueprint/templates/basic/print.sass
|
471
|
-
- frameworks/blueprint/templates/basic/screen.sass
|
472
|
-
- frameworks/blueprint/templates/buttons/buttons/cross.png
|
473
|
-
- frameworks/blueprint/templates/buttons/buttons/key.png
|
474
|
-
- frameworks/blueprint/templates/buttons/buttons/tick.png
|
475
|
-
- frameworks/blueprint/templates/buttons/buttons.sass
|
476
|
-
- frameworks/blueprint/templates/buttons/manifest.rb
|
477
|
-
- frameworks/blueprint/templates/link_icons/link_icons/doc.png
|
478
|
-
- frameworks/blueprint/templates/link_icons/link_icons/email.png
|
479
|
-
- frameworks/blueprint/templates/link_icons/link_icons/external.png
|
480
|
-
- frameworks/blueprint/templates/link_icons/link_icons/feed.png
|
481
|
-
- frameworks/blueprint/templates/link_icons/link_icons/im.png
|
482
|
-
- frameworks/blueprint/templates/link_icons/link_icons/pdf.png
|
483
|
-
- frameworks/blueprint/templates/link_icons/link_icons/visited.png
|
484
|
-
- frameworks/blueprint/templates/link_icons/link_icons/xls.png
|
485
|
-
- frameworks/blueprint/templates/link_icons/link_icons.sass
|
486
|
-
- frameworks/blueprint/templates/link_icons/manifest.rb
|
487
|
-
- frameworks/blueprint/templates/project/grid.png
|
488
|
-
- frameworks/blueprint/templates/project/ie.sass
|
489
|
-
- frameworks/blueprint/templates/project/manifest.rb
|
490
|
-
- frameworks/blueprint/templates/project/partials/_base.sass
|
491
|
-
- frameworks/blueprint/templates/project/print.sass
|
492
|
-
- frameworks/blueprint/templates/project/screen.sass
|
493
|
-
- frameworks/blueprint/templates/semantic/grid.png
|
494
|
-
- frameworks/blueprint/templates/semantic/ie.sass
|
495
|
-
- frameworks/blueprint/templates/semantic/manifest.rb
|
496
|
-
- frameworks/blueprint/templates/semantic/partials/_base.sass
|
497
|
-
- frameworks/blueprint/templates/semantic/partials/_form.sass
|
498
|
-
- frameworks/blueprint/templates/semantic/partials/_page.sass
|
499
|
-
- frameworks/blueprint/templates/semantic/partials/_two_col.sass
|
500
|
-
- frameworks/blueprint/templates/semantic/print.sass
|
501
|
-
- frameworks/blueprint/templates/semantic/screen.sass
|
502
|
-
- frameworks/compass/stylesheets/_compass.scss
|
503
|
-
- frameworks/compass/stylesheets/_lemonade.scss
|
504
|
-
- frameworks/compass/stylesheets/compass/_css3.scss
|
505
|
-
- frameworks/compass/stylesheets/compass/_layout.scss
|
506
|
-
- frameworks/compass/stylesheets/compass/_reset-legacy.scss
|
507
|
-
- frameworks/compass/stylesheets/compass/_reset.scss
|
508
|
-
- frameworks/compass/stylesheets/compass/_support.scss
|
509
|
-
- frameworks/compass/stylesheets/compass/_typography.scss
|
510
|
-
- frameworks/compass/stylesheets/compass/_utilities.scss
|
511
|
-
- frameworks/compass/stylesheets/compass/css3/_appearance.scss
|
512
|
-
- frameworks/compass/stylesheets/compass/css3/_background-clip.scss
|
513
|
-
- frameworks/compass/stylesheets/compass/css3/_background-origin.scss
|
514
|
-
- frameworks/compass/stylesheets/compass/css3/_background-size.scss
|
515
|
-
- frameworks/compass/stylesheets/compass/css3/_border-radius.scss
|
516
|
-
- frameworks/compass/stylesheets/compass/css3/_box-shadow.scss
|
517
|
-
- frameworks/compass/stylesheets/compass/css3/_box-sizing.scss
|
518
|
-
- frameworks/compass/stylesheets/compass/css3/_box.scss
|
519
|
-
- frameworks/compass/stylesheets/compass/css3/_columns.scss
|
520
|
-
- frameworks/compass/stylesheets/compass/css3/_filter.scss
|
521
|
-
- frameworks/compass/stylesheets/compass/css3/_font-face.scss
|
522
|
-
- frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
|
523
|
-
- frameworks/compass/stylesheets/compass/css3/_images.scss
|
524
|
-
- frameworks/compass/stylesheets/compass/css3/_inline-block.scss
|
525
|
-
- frameworks/compass/stylesheets/compass/css3/_opacity.scss
|
526
|
-
- frameworks/compass/stylesheets/compass/css3/_pie.scss
|
527
|
-
- frameworks/compass/stylesheets/compass/css3/_regions.scss
|
528
|
-
- frameworks/compass/stylesheets/compass/css3/_shared.scss
|
529
|
-
- frameworks/compass/stylesheets/compass/css3/_text-shadow.scss
|
530
|
-
- frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
|
531
|
-
- frameworks/compass/stylesheets/compass/css3/_transform.scss
|
532
|
-
- frameworks/compass/stylesheets/compass/css3/_transition.scss
|
533
|
-
- frameworks/compass/stylesheets/compass/css3/_user-interface.scss
|
534
|
-
- frameworks/compass/stylesheets/compass/layout/_grid-background.scss
|
535
|
-
- frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss
|
536
|
-
- frameworks/compass/stylesheets/compass/layout/_stretching.scss
|
537
|
-
- frameworks/compass/stylesheets/compass/reset/_utilities-legacy.scss
|
538
|
-
- frameworks/compass/stylesheets/compass/reset/_utilities.scss
|
539
|
-
- frameworks/compass/stylesheets/compass/typography/_links.scss
|
540
|
-
- frameworks/compass/stylesheets/compass/typography/_lists.scss
|
541
|
-
- frameworks/compass/stylesheets/compass/typography/_text.scss
|
542
|
-
- frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss
|
543
|
-
- frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss
|
544
|
-
- frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss
|
545
|
-
- frameworks/compass/stylesheets/compass/typography/links/_unstyled-link.scss
|
546
|
-
- frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss
|
547
|
-
- frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss
|
548
|
-
- frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss
|
549
|
-
- frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss
|
550
|
-
- frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss
|
551
|
-
- frameworks/compass/stylesheets/compass/typography/text/_force-wrap.scss
|
552
|
-
- frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss
|
553
|
-
- frameworks/compass/stylesheets/compass/typography/text/_replacement.scss
|
554
|
-
- frameworks/compass/stylesheets/compass/utilities/_color.scss
|
555
|
-
- frameworks/compass/stylesheets/compass/utilities/_general.scss
|
556
|
-
- frameworks/compass/stylesheets/compass/utilities/_links.scss
|
557
|
-
- frameworks/compass/stylesheets/compass/utilities/_lists.scss
|
558
|
-
- frameworks/compass/stylesheets/compass/utilities/_print.scss
|
559
|
-
- frameworks/compass/stylesheets/compass/utilities/_sprites.scss
|
560
|
-
- frameworks/compass/stylesheets/compass/utilities/_tables.scss
|
561
|
-
- frameworks/compass/stylesheets/compass/utilities/_text.scss
|
562
|
-
- frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss
|
563
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss
|
564
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_float.scss
|
565
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss
|
566
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_min.scss
|
567
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_reset.scss
|
568
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_tabs.scss
|
569
|
-
- frameworks/compass/stylesheets/compass/utilities/general/_tag-cloud.scss
|
570
|
-
- frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss
|
571
|
-
- frameworks/compass/stylesheets/compass/utilities/links/_link-colors.scss
|
572
|
-
- frameworks/compass/stylesheets/compass/utilities/links/_unstyled-link.scss
|
573
|
-
- frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss
|
574
|
-
- frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss
|
575
|
-
- frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss
|
576
|
-
- frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss
|
577
|
-
- frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss
|
578
|
-
- frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss
|
579
|
-
- frameworks/compass/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss
|
580
|
-
- frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss
|
581
|
-
- frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss
|
582
|
-
- frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.scss
|
583
|
-
- frameworks/compass/stylesheets/compass/utilities/text/_nowrap.scss
|
584
|
-
- frameworks/compass/stylesheets/compass/utilities/text/_replacement.scss
|
585
|
-
- frameworks/compass/templates/ellipsis/ellipsis.sass
|
586
|
-
- frameworks/compass/templates/ellipsis/manifest.rb
|
587
|
-
- frameworks/compass/templates/ellipsis/xml/ellipsis.xml
|
588
|
-
- frameworks/compass/templates/extension/manifest.rb
|
589
|
-
- frameworks/compass/templates/extension/stylesheets/main.sass
|
590
|
-
- frameworks/compass/templates/extension/templates/project/manifest.rb
|
591
|
-
- frameworks/compass/templates/extension/templates/project/screen.sass
|
592
|
-
- frameworks/compass/templates/pie/LICENSE
|
593
|
-
- frameworks/compass/templates/pie/LICENSE-APACHE2.txt
|
594
|
-
- frameworks/compass/templates/pie/LICENSE-GPL2.txt
|
595
|
-
- frameworks/compass/templates/pie/manifest.rb
|
596
|
-
- frameworks/compass/templates/pie/PIE.htc
|
597
|
-
- frameworks/compass/templates/pie/pie.scss
|
598
|
-
- frameworks/compass/templates/project/ie.sass
|
599
|
-
- frameworks/compass/templates/project/manifest.rb
|
600
|
-
- frameworks/compass/templates/project/print.sass
|
601
|
-
- frameworks/compass/templates/project/screen.sass
|
602
|
-
- frameworks/compass/templates/project/USAGE.markdown
|
118
|
+
- features/command_line.feature
|
119
|
+
- features/extensions.feature
|
120
|
+
- features/step_definitions/command_line_steps.rb
|
121
|
+
- features/step_definitions/extension_steps.rb
|
122
|
+
- lib/compass.rb
|
603
123
|
- lib/compass/actions.rb
|
604
|
-
- lib/compass/app_integration
|
124
|
+
- lib/compass/app_integration.rb
|
125
|
+
- lib/compass/app_integration/stand_alone.rb
|
605
126
|
- lib/compass/app_integration/stand_alone/configuration_defaults.rb
|
606
127
|
- lib/compass/app_integration/stand_alone/installer.rb
|
607
|
-
- lib/compass/
|
608
|
-
- lib/compass/app_integration.rb
|
609
|
-
- lib/compass/browser_support.rb
|
128
|
+
- lib/compass/commands.rb
|
610
129
|
- lib/compass/commands/base.rb
|
611
130
|
- lib/compass/commands/clean_project.rb
|
612
131
|
- lib/compass/commands/create_project.rb
|
613
132
|
- lib/compass/commands/default.rb
|
614
133
|
- lib/compass/commands/extension_command.rb
|
615
|
-
- lib/compass/commands/generate_grid_background.rb
|
616
134
|
- lib/compass/commands/help.rb
|
617
135
|
- lib/compass/commands/imports.rb
|
618
136
|
- lib/compass/commands/installer_command.rb
|
@@ -630,77 +148,57 @@ files:
|
|
630
148
|
- lib/compass/commands/validate_project.rb
|
631
149
|
- lib/compass/commands/watch_project.rb
|
632
150
|
- lib/compass/commands/write_configuration.rb
|
633
|
-
- lib/compass/commands.rb
|
634
151
|
- lib/compass/compiler.rb
|
635
|
-
- lib/compass/configuration/adapters.rb
|
636
152
|
- lib/compass/configuration/comments.rb
|
637
|
-
- lib/compass/configuration/data.rb
|
638
|
-
- lib/compass/configuration/defaults.rb
|
639
153
|
- lib/compass/configuration/file_data.rb
|
640
154
|
- lib/compass/configuration/helpers.rb
|
641
|
-
- lib/compass/configuration/inheritance.rb
|
642
|
-
- lib/compass/configuration/paths.rb
|
643
155
|
- lib/compass/configuration/serialization.rb
|
644
|
-
- lib/compass/configuration.rb
|
645
156
|
- lib/compass/dependencies.rb
|
157
|
+
- lib/compass/deprecation.rb
|
646
158
|
- lib/compass/errors.rb
|
159
|
+
- lib/compass/exec.rb
|
647
160
|
- lib/compass/exec/command_option_parser.rb
|
648
161
|
- lib/compass/exec/global_options_parser.rb
|
649
162
|
- lib/compass/exec/helpers.rb
|
650
163
|
- lib/compass/exec/project_options_parser.rb
|
651
164
|
- lib/compass/exec/sub_command_ui.rb
|
652
|
-
- lib/compass/
|
653
|
-
- lib/compass/
|
654
|
-
- lib/compass/frameworks.rb
|
655
|
-
- lib/compass/grid_builder.rb
|
165
|
+
- lib/compass/generated_version.rb
|
166
|
+
- lib/compass/installers.rb
|
656
167
|
- lib/compass/installers/bare_installer.rb
|
657
168
|
- lib/compass/installers/base.rb
|
658
169
|
- lib/compass/installers/manifest.rb
|
659
170
|
- lib/compass/installers/manifest_installer.rb
|
660
171
|
- lib/compass/installers/template_context.rb
|
661
|
-
- lib/compass/installers.rb
|
662
172
|
- lib/compass/logger.rb
|
663
173
|
- lib/compass/quick_cache.rb
|
664
174
|
- lib/compass/rails.rb
|
665
|
-
- lib/compass/
|
666
|
-
- lib/compass/sass_extensions
|
667
|
-
- lib/compass/sass_extensions/functions/cross_browser_support.rb
|
668
|
-
- lib/compass/sass_extensions/functions/display.rb
|
669
|
-
- lib/compass/sass_extensions/functions/enumerate.rb
|
670
|
-
- lib/compass/sass_extensions/functions/env.rb
|
671
|
-
- lib/compass/sass_extensions/functions/font_files.rb
|
672
|
-
- lib/compass/sass_extensions/functions/gradient_support.rb
|
673
|
-
- lib/compass/sass_extensions/functions/image_size.rb
|
674
|
-
- lib/compass/sass_extensions/functions/inline_image.rb
|
675
|
-
- lib/compass/sass_extensions/functions/lists.rb
|
676
|
-
- lib/compass/sass_extensions/functions/math.rb
|
677
|
-
- lib/compass/sass_extensions/functions/selectors.rb
|
678
|
-
- lib/compass/sass_extensions/functions/sprites.rb
|
679
|
-
- lib/compass/sass_extensions/functions/urls.rb
|
175
|
+
- lib/compass/sass_compiler.rb
|
176
|
+
- lib/compass/sass_extensions.rb
|
680
177
|
- lib/compass/sass_extensions/functions.rb
|
681
|
-
- lib/compass/sass_extensions/
|
682
|
-
- lib/compass/sass_extensions/
|
683
|
-
- lib/compass/sass_extensions/monkey_patches.rb
|
684
|
-
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
178
|
+
- lib/compass/sass_extensions/functions/sprites.rb
|
179
|
+
- lib/compass/sass_extensions/sprites.rb
|
685
180
|
- lib/compass/sass_extensions/sprites/engines.rb
|
181
|
+
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
686
182
|
- lib/compass/sass_extensions/sprites/image.rb
|
687
183
|
- lib/compass/sass_extensions/sprites/image_methods.rb
|
688
184
|
- lib/compass/sass_extensions/sprites/image_row.rb
|
185
|
+
- lib/compass/sass_extensions/sprites/images.rb
|
186
|
+
- lib/compass/sass_extensions/sprites/layout.rb
|
187
|
+
- lib/compass/sass_extensions/sprites/layout/diagonal.rb
|
188
|
+
- lib/compass/sass_extensions/sprites/layout/horizontal.rb
|
189
|
+
- lib/compass/sass_extensions/sprites/layout/smart.rb
|
190
|
+
- lib/compass/sass_extensions/sprites/layout/vertical.rb
|
689
191
|
- lib/compass/sass_extensions/sprites/layout_methods.rb
|
690
192
|
- lib/compass/sass_extensions/sprites/row_fitter.rb
|
691
193
|
- lib/compass/sass_extensions/sprites/sprite_map.rb
|
692
194
|
- lib/compass/sass_extensions/sprites/sprite_methods.rb
|
693
|
-
- lib/compass/
|
694
|
-
- lib/compass/sass_extensions.rb
|
195
|
+
- lib/compass/sprite_importer.rb
|
695
196
|
- lib/compass/sprite_importer/binding.rb
|
696
197
|
- lib/compass/sprite_importer/content.erb
|
697
|
-
- lib/compass/sprite_importer.rb
|
698
198
|
- lib/compass/stats.rb
|
699
199
|
- lib/compass/test_case.rb
|
700
|
-
- lib/compass/util.rb
|
701
200
|
- lib/compass/validator.rb
|
702
201
|
- lib/compass/version.rb
|
703
|
-
- lib/compass.rb
|
704
202
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
705
203
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
706
204
|
- test/fixtures/fonts/bgrove.base64.txt
|
@@ -711,6 +209,11 @@ files:
|
|
711
209
|
- test/fixtures/sprites/public/images/bool/true.png
|
712
210
|
- test/fixtures/sprites/public/images/colors/blue.png
|
713
211
|
- test/fixtures/sprites/public/images/colors/yellow.png
|
212
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten.png
|
213
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_active.png
|
214
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png
|
215
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png
|
216
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_target.png
|
714
217
|
- test/fixtures/sprites/public/images/image_row/large.png
|
715
218
|
- test/fixtures/sprites/public/images/image_row/large_square.png
|
716
219
|
- test/fixtures/sprites/public/images/image_row/medium.png
|
@@ -719,6 +222,7 @@ files:
|
|
719
222
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
720
223
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
721
224
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
225
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
722
226
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
723
227
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
724
228
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
@@ -732,56 +236,12 @@ files:
|
|
732
236
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
733
237
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
734
238
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
735
|
-
- test/fixtures/stylesheets/
|
736
|
-
- test/fixtures/stylesheets/
|
737
|
-
- test/fixtures/stylesheets/
|
738
|
-
- test/fixtures/stylesheets/
|
739
|
-
- test/fixtures/stylesheets/
|
740
|
-
- test/fixtures/stylesheets/
|
741
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/debug.css
|
742
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
743
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
744
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
745
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
746
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
747
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
748
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
749
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
750
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
751
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
752
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
753
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
754
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
755
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
756
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
757
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
758
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
759
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
760
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
761
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
762
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
763
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
764
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
765
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
766
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
767
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
768
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
769
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
770
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
771
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
772
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
773
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
774
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
775
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
776
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
777
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
778
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
779
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
780
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
781
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
782
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
783
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
784
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
|
239
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
240
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
241
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
242
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
243
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
244
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
785
245
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
786
246
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
787
247
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
@@ -790,13 +250,22 @@ files:
|
|
790
250
|
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
791
251
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
792
252
|
- test/fixtures/stylesheets/compass/config.rb
|
253
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
254
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
255
|
+
- test/fixtures/stylesheets/compass/css/appearance.css
|
793
256
|
- test/fixtures/stylesheets/compass/css/background-clip.css
|
257
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
258
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
794
259
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
795
|
-
- test/fixtures/stylesheets/compass/css/box-
|
260
|
+
- test/fixtures/stylesheets/compass/css/box-sizing.css
|
796
261
|
- test/fixtures/stylesheets/compass/css/box.css
|
797
262
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
263
|
+
- test/fixtures/stylesheets/compass/css/brightness.css
|
264
|
+
- test/fixtures/stylesheets/compass/css/browser-support.css
|
265
|
+
- test/fixtures/stylesheets/compass/css/color.css
|
798
266
|
- test/fixtures/stylesheets/compass/css/columns.css
|
799
267
|
- test/fixtures/stylesheets/compass/css/filters.css
|
268
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
800
269
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
801
270
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
802
271
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
@@ -808,24 +277,31 @@ files:
|
|
808
277
|
- test/fixtures/stylesheets/compass/css/legacy_clearfix.css
|
809
278
|
- test/fixtures/stylesheets/compass/css/lists.css
|
810
279
|
- test/fixtures/stylesheets/compass/css/opacity.css
|
811
|
-
- test/fixtures/stylesheets/compass/css/pie.css
|
812
280
|
- test/fixtures/stylesheets/compass/css/print.css
|
813
281
|
- test/fixtures/stylesheets/compass/css/regions.css
|
814
282
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
815
283
|
- test/fixtures/stylesheets/compass/css/reset.css
|
816
|
-
- test/fixtures/stylesheets/compass/css/
|
284
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
285
|
+
- test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css
|
817
286
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
287
|
+
- test/fixtures/stylesheets/compass/css/support.css
|
818
288
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
819
289
|
- test/fixtures/stylesheets/compass/css/transform.css
|
820
290
|
- test/fixtures/stylesheets/compass/css/transition.css
|
291
|
+
- test/fixtures/stylesheets/compass/css/typography/links/hover-link.css
|
292
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
821
293
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
822
294
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
823
295
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
296
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css
|
297
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css
|
298
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css
|
824
299
|
- test/fixtures/stylesheets/compass/images/100x150.gif
|
825
300
|
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
826
301
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
827
302
|
- test/fixtures/stylesheets/compass/images/100x150.png
|
828
303
|
- test/fixtures/stylesheets/compass/images/4x6.png
|
304
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
829
305
|
- test/fixtures/stylesheets/compass/images/flag/ad.png
|
830
306
|
- test/fixtures/stylesheets/compass/images/flag/ae.png
|
831
307
|
- test/fixtures/stylesheets/compass/images/flag/af.png
|
@@ -1073,13 +549,28 @@ files:
|
|
1073
549
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
1074
550
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
1075
551
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
552
|
+
- test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png
|
553
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo.png
|
554
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_active.png
|
555
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png
|
556
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png
|
557
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_target.png
|
558
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
559
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
560
|
+
- test/fixtures/stylesheets/compass/sass/appearance.scss
|
1076
561
|
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
562
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
563
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
1077
564
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
1078
|
-
- test/fixtures/stylesheets/compass/sass/box-
|
565
|
+
- test/fixtures/stylesheets/compass/sass/box-sizing.scss
|
1079
566
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
1080
567
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
568
|
+
- test/fixtures/stylesheets/compass/sass/brightness.scss
|
569
|
+
- test/fixtures/stylesheets/compass/sass/browser-support.scss
|
570
|
+
- test/fixtures/stylesheets/compass/sass/color.scss
|
1081
571
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
1082
572
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
573
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
1083
574
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
1084
575
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
1085
576
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
@@ -1091,19 +582,25 @@ files:
|
|
1091
582
|
- test/fixtures/stylesheets/compass/sass/legacy_clearfix.scss
|
1092
583
|
- test/fixtures/stylesheets/compass/sass/lists.scss
|
1093
584
|
- test/fixtures/stylesheets/compass/sass/opacity.scss
|
1094
|
-
- test/fixtures/stylesheets/compass/sass/pie.scss
|
1095
585
|
- test/fixtures/stylesheets/compass/sass/print.sass
|
1096
586
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
1097
587
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
1098
588
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
1099
|
-
- test/fixtures/stylesheets/compass/sass/
|
589
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
590
|
+
- test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss
|
1100
591
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
592
|
+
- test/fixtures/stylesheets/compass/sass/support.scss
|
1101
593
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
1102
594
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
1103
595
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
596
|
+
- test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss
|
597
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
1104
598
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
1105
599
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
1106
600
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
601
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss
|
602
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss
|
603
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss
|
1107
604
|
- test/fixtures/stylesheets/envtest/config.rb
|
1108
605
|
- test/fixtures/stylesheets/envtest/css/env.css
|
1109
606
|
- test/fixtures/stylesheets/envtest/sass/env.scss
|
@@ -1121,6 +618,16 @@ files:
|
|
1121
618
|
- test/fixtures/stylesheets/relative/sass/ie.sass
|
1122
619
|
- test/fixtures/stylesheets/relative/sass/print.sass
|
1123
620
|
- test/fixtures/stylesheets/relative/sass/screen.sass
|
621
|
+
- test/fixtures/stylesheets/sourcemaps/config.rb
|
622
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css
|
623
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
|
624
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css
|
625
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css.map
|
626
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
|
627
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
|
628
|
+
- test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
|
629
|
+
- test/fixtures/stylesheets/sourcemaps/sass/simple.sass
|
630
|
+
- test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
|
1124
631
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
|
1125
632
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
|
1126
633
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
|
@@ -1129,7 +636,14 @@ files:
|
|
1129
636
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
1130
637
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
1131
638
|
- test/fixtures/stylesheets/valid/config.rb
|
639
|
+
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
1132
640
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
641
|
+
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
642
|
+
- test/fixtures/stylesheets/with_sass_globbing/css/screen.css
|
643
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss
|
644
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss
|
645
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss
|
646
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss
|
1133
647
|
- test/helpers/command_line.rb
|
1134
648
|
- test/helpers/diff.rb
|
1135
649
|
- test/helpers/io.rb
|
@@ -1139,45 +653,44 @@ files:
|
|
1139
653
|
- test/integrations/sprites_test.rb
|
1140
654
|
- test/test_helper.rb
|
1141
655
|
- test/units/actions_test.rb
|
656
|
+
- test/units/caniuse_test.rb
|
1142
657
|
- test/units/command_line_test.rb
|
1143
|
-
- test/units/
|
1144
|
-
- test/units/compass_png_test.rb
|
658
|
+
- test/units/compass_util_test.rb
|
1145
659
|
- test/units/compiler_test.rb
|
1146
660
|
- test/units/configuration_test.rb
|
1147
661
|
- test/units/regressions_test.rb
|
1148
662
|
- test/units/sass_extensions_test.rb
|
663
|
+
- test/units/sass_extenstions/gradients_test.rb
|
1149
664
|
- test/units/sprites/engine_test.rb
|
1150
665
|
- test/units/sprites/image_row_test.rb
|
1151
666
|
- test/units/sprites/image_test.rb
|
667
|
+
- test/units/sprites/images_test.rb
|
1152
668
|
- test/units/sprites/importer_test.rb
|
1153
669
|
- test/units/sprites/layout_test.rb
|
1154
670
|
- test/units/sprites/row_fitter_test.rb
|
1155
671
|
- test/units/sprites/sprite_command_test.rb
|
1156
672
|
- test/units/sprites/sprite_map_test.rb
|
1157
|
-
- features/command_line.feature
|
1158
|
-
- features/extensions.feature
|
1159
|
-
- features/step_definitions/command_line_steps.rb
|
1160
|
-
- features/step_definitions/extension_steps.rb
|
1161
673
|
homepage: http://compass-style.org
|
1162
674
|
licenses: []
|
1163
675
|
metadata: {}
|
1164
|
-
post_install_message:
|
676
|
+
post_install_message: |2
|
677
|
+
Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!
|
1165
678
|
rdoc_options: []
|
1166
679
|
require_paths:
|
1167
680
|
- lib
|
1168
681
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1169
682
|
requirements:
|
1170
|
-
- -
|
683
|
+
- - ">="
|
1171
684
|
- !ruby/object:Gem::Version
|
1172
685
|
version: '0'
|
1173
686
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1174
687
|
requirements:
|
1175
|
-
- -
|
688
|
+
- - ">="
|
1176
689
|
- !ruby/object:Gem::Version
|
1177
690
|
version: '0'
|
1178
691
|
requirements: []
|
1179
692
|
rubyforge_project:
|
1180
|
-
rubygems_version: 2.
|
693
|
+
rubygems_version: 2.2.2
|
1181
694
|
signing_key:
|
1182
695
|
specification_version: 4
|
1183
696
|
summary: A Real Stylesheet Framework
|
@@ -1192,6 +705,11 @@ test_files:
|
|
1192
705
|
- test/fixtures/sprites/public/images/bool/true.png
|
1193
706
|
- test/fixtures/sprites/public/images/colors/blue.png
|
1194
707
|
- test/fixtures/sprites/public/images/colors/yellow.png
|
708
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten.png
|
709
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_active.png
|
710
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png
|
711
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png
|
712
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_target.png
|
1195
713
|
- test/fixtures/sprites/public/images/image_row/large.png
|
1196
714
|
- test/fixtures/sprites/public/images/image_row/large_square.png
|
1197
715
|
- test/fixtures/sprites/public/images/image_row/medium.png
|
@@ -1200,6 +718,7 @@ test_files:
|
|
1200
718
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
1201
719
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
1202
720
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
721
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
1203
722
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
1204
723
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
1205
724
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
@@ -1213,56 +732,12 @@ test_files:
|
|
1213
732
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
1214
733
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
1215
734
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
1216
|
-
- test/fixtures/stylesheets/
|
1217
|
-
- test/fixtures/stylesheets/
|
1218
|
-
- test/fixtures/stylesheets/
|
1219
|
-
- test/fixtures/stylesheets/
|
1220
|
-
- test/fixtures/stylesheets/
|
1221
|
-
- test/fixtures/stylesheets/
|
1222
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/debug.css
|
1223
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
1224
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
1225
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
1226
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
1227
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
1228
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
1229
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
1230
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
1231
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
1232
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
1233
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
1234
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
1235
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
1236
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
1237
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
1238
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
1239
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
1240
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
1241
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
1242
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
1243
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
1244
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
1245
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
1246
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
1247
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
1248
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
1249
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
1250
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
1251
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
1252
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
1253
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
1254
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
1255
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
1256
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
1257
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
1258
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
1259
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
1260
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
1261
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
1262
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
1263
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
1264
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
1265
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
|
735
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
736
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
737
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
738
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
739
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
740
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
1266
741
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
1267
742
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
1268
743
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
@@ -1271,13 +746,22 @@ test_files:
|
|
1271
746
|
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
1272
747
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
1273
748
|
- test/fixtures/stylesheets/compass/config.rb
|
749
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
750
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
751
|
+
- test/fixtures/stylesheets/compass/css/appearance.css
|
1274
752
|
- test/fixtures/stylesheets/compass/css/background-clip.css
|
753
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
754
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
1275
755
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
1276
|
-
- test/fixtures/stylesheets/compass/css/box-
|
756
|
+
- test/fixtures/stylesheets/compass/css/box-sizing.css
|
1277
757
|
- test/fixtures/stylesheets/compass/css/box.css
|
1278
758
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
759
|
+
- test/fixtures/stylesheets/compass/css/brightness.css
|
760
|
+
- test/fixtures/stylesheets/compass/css/browser-support.css
|
761
|
+
- test/fixtures/stylesheets/compass/css/color.css
|
1279
762
|
- test/fixtures/stylesheets/compass/css/columns.css
|
1280
763
|
- test/fixtures/stylesheets/compass/css/filters.css
|
764
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
1281
765
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
1282
766
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
1283
767
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
@@ -1289,19 +773,25 @@ test_files:
|
|
1289
773
|
- test/fixtures/stylesheets/compass/css/legacy_clearfix.css
|
1290
774
|
- test/fixtures/stylesheets/compass/css/lists.css
|
1291
775
|
- test/fixtures/stylesheets/compass/css/opacity.css
|
1292
|
-
- test/fixtures/stylesheets/compass/css/pie.css
|
1293
776
|
- test/fixtures/stylesheets/compass/css/print.css
|
1294
777
|
- test/fixtures/stylesheets/compass/css/regions.css
|
1295
778
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
1296
779
|
- test/fixtures/stylesheets/compass/css/reset.css
|
1297
|
-
- test/fixtures/stylesheets/compass/css/
|
780
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
781
|
+
- test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css
|
1298
782
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
783
|
+
- test/fixtures/stylesheets/compass/css/support.css
|
1299
784
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
1300
785
|
- test/fixtures/stylesheets/compass/css/transform.css
|
1301
786
|
- test/fixtures/stylesheets/compass/css/transition.css
|
787
|
+
- test/fixtures/stylesheets/compass/css/typography/links/hover-link.css
|
788
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
1302
789
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
1303
790
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
1304
791
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
792
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css
|
793
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css
|
794
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css
|
1305
795
|
- test/fixtures/stylesheets/compass/images/100x150.gif
|
1306
796
|
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
1307
797
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
@@ -1554,13 +1044,29 @@ test_files:
|
|
1554
1044
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
1555
1045
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
1556
1046
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
1047
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
1048
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo.png
|
1049
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_active.png
|
1050
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png
|
1051
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png
|
1052
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_target.png
|
1053
|
+
- test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png
|
1054
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
1055
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
1056
|
+
- test/fixtures/stylesheets/compass/sass/appearance.scss
|
1557
1057
|
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
1058
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
1059
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
1558
1060
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
1559
|
-
- test/fixtures/stylesheets/compass/sass/box-
|
1061
|
+
- test/fixtures/stylesheets/compass/sass/box-sizing.scss
|
1560
1062
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
1561
1063
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
1064
|
+
- test/fixtures/stylesheets/compass/sass/brightness.scss
|
1065
|
+
- test/fixtures/stylesheets/compass/sass/browser-support.scss
|
1066
|
+
- test/fixtures/stylesheets/compass/sass/color.scss
|
1562
1067
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
1563
1068
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
1069
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
1564
1070
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
1565
1071
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
1566
1072
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
@@ -1572,19 +1078,25 @@ test_files:
|
|
1572
1078
|
- test/fixtures/stylesheets/compass/sass/legacy_clearfix.scss
|
1573
1079
|
- test/fixtures/stylesheets/compass/sass/lists.scss
|
1574
1080
|
- test/fixtures/stylesheets/compass/sass/opacity.scss
|
1575
|
-
- test/fixtures/stylesheets/compass/sass/pie.scss
|
1576
1081
|
- test/fixtures/stylesheets/compass/sass/print.sass
|
1577
1082
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
1578
1083
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
1579
1084
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
1580
|
-
- test/fixtures/stylesheets/compass/sass/
|
1085
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
1086
|
+
- test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss
|
1581
1087
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
1088
|
+
- test/fixtures/stylesheets/compass/sass/support.scss
|
1582
1089
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
1583
1090
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
1584
1091
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
1092
|
+
- test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss
|
1093
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
1585
1094
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
1586
1095
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
1587
1096
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
1097
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss
|
1098
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss
|
1099
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss
|
1588
1100
|
- test/fixtures/stylesheets/envtest/config.rb
|
1589
1101
|
- test/fixtures/stylesheets/envtest/css/env.css
|
1590
1102
|
- test/fixtures/stylesheets/envtest/sass/env.scss
|
@@ -1602,6 +1114,16 @@ test_files:
|
|
1602
1114
|
- test/fixtures/stylesheets/relative/sass/ie.sass
|
1603
1115
|
- test/fixtures/stylesheets/relative/sass/print.sass
|
1604
1116
|
- test/fixtures/stylesheets/relative/sass/screen.sass
|
1117
|
+
- test/fixtures/stylesheets/sourcemaps/config.rb
|
1118
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css
|
1119
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
|
1120
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css
|
1121
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css.map
|
1122
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
|
1123
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
|
1124
|
+
- test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
|
1125
|
+
- test/fixtures/stylesheets/sourcemaps/sass/simple.sass
|
1126
|
+
- test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
|
1605
1127
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
|
1606
1128
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
|
1607
1129
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
|
@@ -1610,7 +1132,14 @@ test_files:
|
|
1610
1132
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
1611
1133
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
1612
1134
|
- test/fixtures/stylesheets/valid/config.rb
|
1135
|
+
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
1613
1136
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
1137
|
+
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
1138
|
+
- test/fixtures/stylesheets/with_sass_globbing/css/screen.css
|
1139
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss
|
1140
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss
|
1141
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss
|
1142
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss
|
1614
1143
|
- test/helpers/command_line.rb
|
1615
1144
|
- test/helpers/diff.rb
|
1616
1145
|
- test/helpers/io.rb
|
@@ -1620,16 +1149,18 @@ test_files:
|
|
1620
1149
|
- test/integrations/sprites_test.rb
|
1621
1150
|
- test/test_helper.rb
|
1622
1151
|
- test/units/actions_test.rb
|
1152
|
+
- test/units/caniuse_test.rb
|
1623
1153
|
- test/units/command_line_test.rb
|
1624
|
-
- test/units/
|
1625
|
-
- test/units/compass_png_test.rb
|
1154
|
+
- test/units/compass_util_test.rb
|
1626
1155
|
- test/units/compiler_test.rb
|
1627
1156
|
- test/units/configuration_test.rb
|
1628
1157
|
- test/units/regressions_test.rb
|
1629
1158
|
- test/units/sass_extensions_test.rb
|
1159
|
+
- test/units/sass_extenstions/gradients_test.rb
|
1630
1160
|
- test/units/sprites/engine_test.rb
|
1631
1161
|
- test/units/sprites/image_row_test.rb
|
1632
1162
|
- test/units/sprites/image_test.rb
|
1163
|
+
- test/units/sprites/images_test.rb
|
1633
1164
|
- test/units/sprites/importer_test.rb
|
1634
1165
|
- test/units/sprites/layout_test.rb
|
1635
1166
|
- test/units/sprites/row_fitter_test.rb
|
@@ -1639,4 +1170,3 @@ test_files:
|
|
1639
1170
|
- features/extensions.feature
|
1640
1171
|
- features/step_definitions/command_line_steps.rb
|
1641
1172
|
- features/step_definitions/extension_steps.rb
|
1642
|
-
has_rdoc:
|