compass-sass37 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.markdown +1 -0
- data/Rakefile +237 -0
- data/VERSION +1 -0
- data/VERSION_NAME +1 -0
- data/bin/compass +45 -0
- data/features/command_line.feature +195 -0
- data/features/extensions.feature +27 -0
- data/features/step_definitions/command_line_steps.rb +268 -0
- data/features/step_definitions/extension_steps.rb +24 -0
- data/lib/compass/actions.rb +116 -0
- data/lib/compass/app_integration/stand_alone/configuration_defaults.rb +32 -0
- data/lib/compass/app_integration/stand_alone/installer.rb +83 -0
- data/lib/compass/app_integration/stand_alone.rb +22 -0
- data/lib/compass/app_integration.rb +39 -0
- data/lib/compass/commands/base.rb +44 -0
- data/lib/compass/commands/clean_project.rb +79 -0
- data/lib/compass/commands/create_project.rb +131 -0
- data/lib/compass/commands/default.rb +50 -0
- data/lib/compass/commands/extension_command.rb +60 -0
- data/lib/compass/commands/help.rb +85 -0
- data/lib/compass/commands/imports.rb +35 -0
- data/lib/compass/commands/installer_command.rb +32 -0
- data/lib/compass/commands/interactive.rb +61 -0
- data/lib/compass/commands/list_frameworks.rb +39 -0
- data/lib/compass/commands/print_version.rb +88 -0
- data/lib/compass/commands/project_base.rb +103 -0
- data/lib/compass/commands/project_stats.rb +178 -0
- data/lib/compass/commands/project_structure.rb +93 -0
- data/lib/compass/commands/registry.rb +40 -0
- data/lib/compass/commands/sprite.rb +89 -0
- data/lib/compass/commands/stamp_pattern.rb +90 -0
- data/lib/compass/commands/unpack_extension.rb +120 -0
- data/lib/compass/commands/update_project.rb +148 -0
- data/lib/compass/commands/validate_project.rb +77 -0
- data/lib/compass/commands/watch_project.rb +117 -0
- data/lib/compass/commands/write_configuration.rb +125 -0
- data/lib/compass/commands.rb +14 -0
- data/lib/compass/compiler.rb +249 -0
- data/lib/compass/configuration/comments.rb +62 -0
- data/lib/compass/configuration/file_data.rb +21 -0
- data/lib/compass/configuration/helpers.rb +113 -0
- data/lib/compass/configuration/serialization.rb +95 -0
- data/lib/compass/dependencies.rb +12 -0
- data/lib/compass/deprecation.rb +19 -0
- data/lib/compass/errors.rb +9 -0
- data/lib/compass/exec/command_option_parser.rb +23 -0
- data/lib/compass/exec/global_options_parser.rb +59 -0
- data/lib/compass/exec/helpers.rb +21 -0
- data/lib/compass/exec/project_options_parser.rb +74 -0
- data/lib/compass/exec/sub_command_ui.rb +51 -0
- data/lib/compass/exec.rb +23 -0
- data/lib/compass/generated_version.rb +4 -0
- data/lib/compass/installers/bare_installer.rb +58 -0
- data/lib/compass/installers/base.rb +187 -0
- data/lib/compass/installers/manifest.rb +161 -0
- data/lib/compass/installers/manifest_installer.rb +61 -0
- data/lib/compass/installers/template_context.rb +44 -0
- data/lib/compass/installers.rb +3 -0
- data/lib/compass/logger.rb +140 -0
- data/lib/compass/quick_cache.rb +15 -0
- data/lib/compass/rails.rb +2 -0
- data/lib/compass/sass_compiler.rb +152 -0
- data/lib/compass/sass_extensions/functions/sprites.rb +305 -0
- data/lib/compass/sass_extensions/functions.rb +15 -0
- data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +35 -0
- data/lib/compass/sass_extensions/sprites/engines.rb +25 -0
- data/lib/compass/sass_extensions/sprites/image.rb +162 -0
- data/lib/compass/sass_extensions/sprites/image_methods.rb +52 -0
- data/lib/compass/sass_extensions/sprites/image_row.rb +47 -0
- data/lib/compass/sass_extensions/sprites/images.rb +29 -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.rb +39 -0
- data/lib/compass/sass_extensions/sprites/layout_methods.rb +53 -0
- data/lib/compass/sass_extensions/sprites/row_fitter.rb +92 -0
- data/lib/compass/sass_extensions/sprites/sprite_map.rb +93 -0
- data/lib/compass/sass_extensions/sprites/sprite_methods.rb +136 -0
- data/lib/compass/sass_extensions/sprites.rb +21 -0
- data/lib/compass/sass_extensions.rb +9 -0
- data/lib/compass/sprite_importer/binding.rb +11 -0
- data/lib/compass/sprite_importer/content.erb +87 -0
- data/lib/compass/sprite_importer.rb +117 -0
- data/lib/compass/stats.rb +99 -0
- data/lib/compass/test_case.rb +38 -0
- data/lib/compass/validator.rb +16 -0
- data/lib/compass/version.rb +42 -0
- data/lib/compass.rb +39 -0
- data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
- data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
- data/test/fixtures/fonts/bgrove.base64.txt +1 -0
- data/test/fixtures/fonts/bgrove.ttf +0 -0
- data/test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif +0 -0
- data/test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg +0 -0
- data/test/fixtures/sprites/public/images/bool/false.png +0 -0
- data/test/fixtures/sprites/public/images/bool/true.png +0 -0
- data/test/fixtures/sprites/public/images/colors/blue.png +0 -0
- data/test/fixtures/sprites/public/images/colors/yellow.png +0 -0
- 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/image_row/large.png +0 -0
- data/test/fixtures/sprites/public/images/image_row/large_square.png +0 -0
- data/test/fixtures/sprites/public/images/image_row/medium.png +0 -0
- data/test/fixtures/sprites/public/images/image_row/small.png +0 -0
- data/test/fixtures/sprites/public/images/image_row/tall.png +0 -0
- data/test/fixtures/sprites/public/images/ko/default_background.png +0 -0
- data/test/fixtures/sprites/public/images/ko/starbg26x27.png +0 -0
- data/test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
- data/test/fixtures/sprites/public/images/prefix/20-by-20.png +0 -0
- data/test/fixtures/sprites/public/images/prefix/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/repeat_x/five.png +0 -0
- data/test/fixtures/sprites/public/images/repeat_x/four.png +0 -0
- data/test/fixtures/sprites/public/images/repeat_x/one.png +0 -0
- data/test/fixtures/sprites/public/images/repeat_x/three.png +0 -0
- data/test/fixtures/sprites/public/images/repeat_x/two.png +0 -0
- data/test/fixtures/sprites/public/images/selectors/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png +0 -0
- data/test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png +0 -0
- data/test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png +0 -0
- data/test/fixtures/sprites/public/images/squares/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/squares/twenty-by-twenty.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/busted_image_urls/config.rb +29 -0
- data/test/fixtures/stylesheets/busted_image_urls/css/screen.css +9 -0
- data/test/fixtures/stylesheets/busted_image_urls/images/feed.png +0 -0
- data/test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png +0 -0
- data/test/fixtures/stylesheets/busted_image_urls/images/grid.png +0 -0
- data/test/fixtures/stylesheets/busted_image_urls/sass/screen.sass +14 -0
- data/test/fixtures/stylesheets/compass/100x150.jpg +0 -0
- data/test/fixtures/stylesheets/compass/config.rb +18 -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 +11 -0
- 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 +14 -0
- data/test/fixtures/stylesheets/compass/css/box-sizing.css +14 -0
- data/test/fixtures/stylesheets/compass/css/box.css +103 -0
- data/test/fixtures/stylesheets/compass/css/box_shadow.css +24 -0
- 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 +134 -0
- data/test/fixtures/stylesheets/compass/css/filters.css +53 -0
- data/test/fixtures/stylesheets/compass/css/flexbox.css +94 -0
- data/test/fixtures/stylesheets/compass/css/fonts.css +8 -0
- data/test/fixtures/stylesheets/compass/css/force-wrap.css +9 -0
- data/test/fixtures/stylesheets/compass/css/gradients.css +222 -0
- data/test/fixtures/stylesheets/compass/css/grid_background.css +79 -0
- data/test/fixtures/stylesheets/compass/css/hyphenation.css +16 -0
- data/test/fixtures/stylesheets/compass/css/image_size.css +15 -0
- data/test/fixtures/stylesheets/compass/css/images.css +8 -0
- data/test/fixtures/stylesheets/compass/css/layout.css +16 -0
- data/test/fixtures/stylesheets/compass/css/legacy_clearfix.css +26 -0
- data/test/fixtures/stylesheets/compass/css/lists.css +145 -0
- data/test/fixtures/stylesheets/compass/css/opacity.css +7 -0
- data/test/fixtures/stylesheets/compass/css/print.css +11 -0
- data/test/fixtures/stylesheets/compass/css/regions.css +9 -0
- data/test/fixtures/stylesheets/compass/css/replacement.css +66 -0
- data/test/fixtures/stylesheets/compass/css/reset.css +59 -0
- 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/stretching.css +66 -0
- data/test/fixtures/stylesheets/compass/css/support.css +116 -0
- data/test/fixtures/stylesheets/compass/css/text_shadow.css +29 -0
- data/test/fixtures/stylesheets/compass/css/transform.css +341 -0
- data/test/fixtures/stylesheets/compass/css/transition.css +116 -0
- 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 +52 -0
- data/test/fixtures/stylesheets/compass/css/utilities.css +71 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +42 -0
- 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/100x150.gif +0 -0
- data/test/fixtures/stylesheets/compass/images/100x150.jpeg +0 -0
- data/test/fixtures/stylesheets/compass/images/100x150.jpg +0 -0
- data/test/fixtures/stylesheets/compass/images/100x150.png +0 -0
- data/test/fixtures/stylesheets/compass/images/4x6.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ad.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ae.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/af.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ag.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ai.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/al.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/am.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/an.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ao.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ar.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/as.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/at.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/au.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/aw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ax.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/az.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ba.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bb.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bd.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/be.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bi.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bj.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/br.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bs.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/by.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/bz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ca.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/catalonia.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cd.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ch.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ci.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ck.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/co.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cs.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cx.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cy.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/cz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/de.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/dj.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/dk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/dm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/do.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/dz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ec.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ee.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/eg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/eh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/england.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/er.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/es.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/et.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/europeanunion.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fam.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fi.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fj.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/fr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ga.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gb.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gd.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ge.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gi.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gp.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gq.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gs.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/gy.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/hk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/hm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/hn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/hr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ht.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/hu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/id-2.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ie.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/il.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/in.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/io.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/iq.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ir.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/is.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/it.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/jm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/jo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/jp.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ke.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ki.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/km.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kp.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ky.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/kz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/la.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lb.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/li.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ls.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/lv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ly.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ma.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/md.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/me.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ml.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mp.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mq.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ms.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mx.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/my.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/mz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/na.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ne.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ng.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ni.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/no.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/np.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/nz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/om.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pa.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pe.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ph.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ps.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/pw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/py.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/qa.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/re.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ro.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/rs.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ru.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/rw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sa.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sb.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/scotland.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sd.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/se.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sh.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/si.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sj.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/so.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/st.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sy.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/sz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/td.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/th.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tj.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tk.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tl.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/to.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tr.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tv.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/tz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ua.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ug.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/um.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/us.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/uy.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/uz.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/va.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/vc.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ve.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/vg.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/vi.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/vn.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/vu.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/wales.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/wf.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ws.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/ye.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/yt.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/za.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/zm.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag/zw.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_active.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_target.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.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 +5 -0
- 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/border_radius.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/box-sizing.scss +11 -0
- data/test/fixtures/stylesheets/compass/sass/box.sass +50 -0
- data/test/fixtures/stylesheets/compass/sass/box_shadow.scss +7 -0
- 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 +29 -0
- data/test/fixtures/stylesheets/compass/sass/filters.scss +25 -0
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +88 -0
- data/test/fixtures/stylesheets/compass/sass/fonts.sass +8 -0
- data/test/fixtures/stylesheets/compass/sass/force-wrap.scss +3 -0
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +128 -0
- data/test/fixtures/stylesheets/compass/sass/grid_background.scss +34 -0
- data/test/fixtures/stylesheets/compass/sass/hyphenation.scss +11 -0
- data/test/fixtures/stylesheets/compass/sass/image_size.sass +15 -0
- data/test/fixtures/stylesheets/compass/sass/images.scss +9 -0
- data/test/fixtures/stylesheets/compass/sass/layout.sass +3 -0
- data/test/fixtures/stylesheets/compass/sass/legacy_clearfix.scss +14 -0
- data/test/fixtures/stylesheets/compass/sass/lists.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/opacity.scss +9 -0
- data/test/fixtures/stylesheets/compass/sass/print.sass +5 -0
- data/test/fixtures/stylesheets/compass/sass/regions.scss +4 -0
- data/test/fixtures/stylesheets/compass/sass/replacement.scss +22 -0
- data/test/fixtures/stylesheets/compass/sass/reset.sass +12 -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/stretching.sass +34 -0
- data/test/fixtures/stylesheets/compass/sass/support.scss +174 -0
- data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/transform.scss +87 -0
- data/test/fixtures/stylesheets/compass/sass/transition.scss +21 -0
- 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 +28 -0
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +33 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +60 -0
- 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/config.rb +9 -0
- data/test/fixtures/stylesheets/envtest/css/env.css +10 -0
- data/test/fixtures/stylesheets/envtest/sass/env.scss +19 -0
- data/test/fixtures/stylesheets/error/config.rb +10 -0
- data/test/fixtures/stylesheets/error/sass/screen.sass +2 -0
- data/test/fixtures/stylesheets/image_urls/config.rb +19 -0
- data/test/fixtures/stylesheets/image_urls/css/screen.css +5 -0
- data/test/fixtures/stylesheets/image_urls/images/grid.png +0 -0
- data/test/fixtures/stylesheets/image_urls/sass/screen.sass +8 -0
- data/test/fixtures/stylesheets/relative/assets/images/testing.png +0 -0
- data/test/fixtures/stylesheets/relative/config.rb +10 -0
- data/test/fixtures/stylesheets/relative/css/ie.css +1 -0
- data/test/fixtures/stylesheets/relative/css/print.css +1 -0
- data/test/fixtures/stylesheets/relative/css/screen.css +1 -0
- data/test/fixtures/stylesheets/relative/sass/ie.sass +5 -0
- data/test/fixtures/stylesheets/relative/sass/print.sass +3 -0
- data/test/fixtures/stylesheets/relative/sass/screen.sass +2 -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/uses_only_stylesheets_ext/config.rb +25 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
- data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
- data/test/fixtures/stylesheets/valid/config.rb +9 -0
- data/test/fixtures/stylesheets/valid/sass/another_simple.scss +3 -0
- data/test/fixtures/stylesheets/valid/sass/simple.sass +2 -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/command_line.rb +114 -0
- data/test/helpers/diff.rb +49 -0
- data/test/helpers/io.rb +36 -0
- data/test/helpers/rails.rb +55 -0
- data/test/helpers/test_case.rb +62 -0
- data/test/integrations/compass_test.rb +259 -0
- data/test/integrations/sprites_test.rb +1123 -0
- data/test/test_helper.rb +67 -0
- data/test/units/actions_test.rb +24 -0
- data/test/units/caniuse_test.rb +194 -0
- data/test/units/command_line_test.rb +60 -0
- data/test/units/compass_util_test.rb +11 -0
- data/test/units/compiler_test.rb +16 -0
- data/test/units/configuration_test.rb +618 -0
- data/test/units/regressions_test.rb +35 -0
- data/test/units/sass_extensions_test.rb +232 -0
- data/test/units/sass_extenstions/gradients_test.rb +30 -0
- data/test/units/sprites/engine_test.rb +48 -0
- data/test/units/sprites/image_row_test.rb +58 -0
- data/test/units/sprites/image_test.rb +116 -0
- data/test/units/sprites/images_test.rb +46 -0
- data/test/units/sprites/importer_test.rb +91 -0
- data/test/units/sprites/layout_test.rb +180 -0
- data/test/units/sprites/row_fitter_test.rb +66 -0
- data/test/units/sprites/sprite_command_test.rb +55 -0
- data/test/units/sprites/sprite_map_test.rb +169 -0
- metadata +1175 -0
metadata
ADDED
|
@@ -0,0 +1,1175 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: compass-sass37
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Vladimir Ivanin
|
|
8
|
+
- Chris Eppstein
|
|
9
|
+
- Scott Davis
|
|
10
|
+
- Eric M. Suzanne
|
|
11
|
+
- Brandon Mathis
|
|
12
|
+
- Nico Hagenburger
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
date: 2025-10-13 00:00:00.000000000 Z
|
|
17
|
+
dependencies:
|
|
18
|
+
- !ruby/object:Gem::Dependency
|
|
19
|
+
name: sass
|
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
|
21
|
+
requirements:
|
|
22
|
+
- - ">="
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: '3.7'
|
|
25
|
+
- - "<"
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: '3.8'
|
|
28
|
+
type: :runtime
|
|
29
|
+
prerelease: false
|
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '3.7'
|
|
35
|
+
- - "<"
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '3.8'
|
|
38
|
+
- !ruby/object:Gem::Dependency
|
|
39
|
+
name: compass-core-sass37
|
|
40
|
+
requirement: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - "~>"
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: 1.1.0
|
|
45
|
+
type: :runtime
|
|
46
|
+
prerelease: false
|
|
47
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - "~>"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: 1.1.0
|
|
52
|
+
- !ruby/object:Gem::Dependency
|
|
53
|
+
name: compass-import-once-sass37
|
|
54
|
+
requirement: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - "~>"
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: 1.1.0
|
|
59
|
+
type: :runtime
|
|
60
|
+
prerelease: false
|
|
61
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - "~>"
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: 1.1.0
|
|
66
|
+
- !ruby/object:Gem::Dependency
|
|
67
|
+
name: chunky_png
|
|
68
|
+
requirement: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '1.2'
|
|
73
|
+
type: :runtime
|
|
74
|
+
prerelease: false
|
|
75
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - "~>"
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '1.2'
|
|
80
|
+
- !ruby/object:Gem::Dependency
|
|
81
|
+
name: rb-fsevent
|
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: 0.9.3
|
|
87
|
+
type: :runtime
|
|
88
|
+
prerelease: false
|
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
90
|
+
requirements:
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: 0.9.3
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: rb-inotify
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - ">="
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '0.9'
|
|
101
|
+
type: :runtime
|
|
102
|
+
prerelease: false
|
|
103
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - ">="
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '0.9'
|
|
108
|
+
description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
|
|
109
|
+
and maintenance of CSS. This fork maintains compatibility with Sass 3.7.
|
|
110
|
+
email: ivaninww@gmail.com
|
|
111
|
+
executables:
|
|
112
|
+
- compass
|
|
113
|
+
extensions: []
|
|
114
|
+
extra_rdoc_files: []
|
|
115
|
+
files:
|
|
116
|
+
- LICENSE.markdown
|
|
117
|
+
- Rakefile
|
|
118
|
+
- VERSION
|
|
119
|
+
- VERSION_NAME
|
|
120
|
+
- bin/compass
|
|
121
|
+
- features/command_line.feature
|
|
122
|
+
- features/extensions.feature
|
|
123
|
+
- features/step_definitions/command_line_steps.rb
|
|
124
|
+
- features/step_definitions/extension_steps.rb
|
|
125
|
+
- lib/compass.rb
|
|
126
|
+
- lib/compass/actions.rb
|
|
127
|
+
- lib/compass/app_integration.rb
|
|
128
|
+
- lib/compass/app_integration/stand_alone.rb
|
|
129
|
+
- lib/compass/app_integration/stand_alone/configuration_defaults.rb
|
|
130
|
+
- lib/compass/app_integration/stand_alone/installer.rb
|
|
131
|
+
- lib/compass/commands.rb
|
|
132
|
+
- lib/compass/commands/base.rb
|
|
133
|
+
- lib/compass/commands/clean_project.rb
|
|
134
|
+
- lib/compass/commands/create_project.rb
|
|
135
|
+
- lib/compass/commands/default.rb
|
|
136
|
+
- lib/compass/commands/extension_command.rb
|
|
137
|
+
- lib/compass/commands/help.rb
|
|
138
|
+
- lib/compass/commands/imports.rb
|
|
139
|
+
- lib/compass/commands/installer_command.rb
|
|
140
|
+
- lib/compass/commands/interactive.rb
|
|
141
|
+
- lib/compass/commands/list_frameworks.rb
|
|
142
|
+
- lib/compass/commands/print_version.rb
|
|
143
|
+
- lib/compass/commands/project_base.rb
|
|
144
|
+
- lib/compass/commands/project_stats.rb
|
|
145
|
+
- lib/compass/commands/project_structure.rb
|
|
146
|
+
- lib/compass/commands/registry.rb
|
|
147
|
+
- lib/compass/commands/sprite.rb
|
|
148
|
+
- lib/compass/commands/stamp_pattern.rb
|
|
149
|
+
- lib/compass/commands/unpack_extension.rb
|
|
150
|
+
- lib/compass/commands/update_project.rb
|
|
151
|
+
- lib/compass/commands/validate_project.rb
|
|
152
|
+
- lib/compass/commands/watch_project.rb
|
|
153
|
+
- lib/compass/commands/write_configuration.rb
|
|
154
|
+
- lib/compass/compiler.rb
|
|
155
|
+
- lib/compass/configuration/comments.rb
|
|
156
|
+
- lib/compass/configuration/file_data.rb
|
|
157
|
+
- lib/compass/configuration/helpers.rb
|
|
158
|
+
- lib/compass/configuration/serialization.rb
|
|
159
|
+
- lib/compass/dependencies.rb
|
|
160
|
+
- lib/compass/deprecation.rb
|
|
161
|
+
- lib/compass/errors.rb
|
|
162
|
+
- lib/compass/exec.rb
|
|
163
|
+
- lib/compass/exec/command_option_parser.rb
|
|
164
|
+
- lib/compass/exec/global_options_parser.rb
|
|
165
|
+
- lib/compass/exec/helpers.rb
|
|
166
|
+
- lib/compass/exec/project_options_parser.rb
|
|
167
|
+
- lib/compass/exec/sub_command_ui.rb
|
|
168
|
+
- lib/compass/generated_version.rb
|
|
169
|
+
- lib/compass/installers.rb
|
|
170
|
+
- lib/compass/installers/bare_installer.rb
|
|
171
|
+
- lib/compass/installers/base.rb
|
|
172
|
+
- lib/compass/installers/manifest.rb
|
|
173
|
+
- lib/compass/installers/manifest_installer.rb
|
|
174
|
+
- lib/compass/installers/template_context.rb
|
|
175
|
+
- lib/compass/logger.rb
|
|
176
|
+
- lib/compass/quick_cache.rb
|
|
177
|
+
- lib/compass/rails.rb
|
|
178
|
+
- lib/compass/sass_compiler.rb
|
|
179
|
+
- lib/compass/sass_extensions.rb
|
|
180
|
+
- lib/compass/sass_extensions/functions.rb
|
|
181
|
+
- lib/compass/sass_extensions/functions/sprites.rb
|
|
182
|
+
- lib/compass/sass_extensions/sprites.rb
|
|
183
|
+
- lib/compass/sass_extensions/sprites/engines.rb
|
|
184
|
+
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
|
185
|
+
- lib/compass/sass_extensions/sprites/image.rb
|
|
186
|
+
- lib/compass/sass_extensions/sprites/image_methods.rb
|
|
187
|
+
- lib/compass/sass_extensions/sprites/image_row.rb
|
|
188
|
+
- lib/compass/sass_extensions/sprites/images.rb
|
|
189
|
+
- lib/compass/sass_extensions/sprites/layout.rb
|
|
190
|
+
- lib/compass/sass_extensions/sprites/layout/diagonal.rb
|
|
191
|
+
- lib/compass/sass_extensions/sprites/layout/horizontal.rb
|
|
192
|
+
- lib/compass/sass_extensions/sprites/layout/smart.rb
|
|
193
|
+
- lib/compass/sass_extensions/sprites/layout/vertical.rb
|
|
194
|
+
- lib/compass/sass_extensions/sprites/layout_methods.rb
|
|
195
|
+
- lib/compass/sass_extensions/sprites/row_fitter.rb
|
|
196
|
+
- lib/compass/sass_extensions/sprites/sprite_map.rb
|
|
197
|
+
- lib/compass/sass_extensions/sprites/sprite_methods.rb
|
|
198
|
+
- lib/compass/sprite_importer.rb
|
|
199
|
+
- lib/compass/sprite_importer/binding.rb
|
|
200
|
+
- lib/compass/sprite_importer/content.erb
|
|
201
|
+
- lib/compass/stats.rb
|
|
202
|
+
- lib/compass/test_case.rb
|
|
203
|
+
- lib/compass/validator.rb
|
|
204
|
+
- lib/compass/version.rb
|
|
205
|
+
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
206
|
+
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
207
|
+
- test/fixtures/fonts/bgrove.base64.txt
|
|
208
|
+
- test/fixtures/fonts/bgrove.ttf
|
|
209
|
+
- test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
|
|
210
|
+
- test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
|
|
211
|
+
- test/fixtures/sprites/public/images/bool/false.png
|
|
212
|
+
- test/fixtures/sprites/public/images/bool/true.png
|
|
213
|
+
- test/fixtures/sprites/public/images/colors/blue.png
|
|
214
|
+
- test/fixtures/sprites/public/images/colors/yellow.png
|
|
215
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten.png
|
|
216
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_active.png
|
|
217
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png
|
|
218
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png
|
|
219
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_target.png
|
|
220
|
+
- test/fixtures/sprites/public/images/image_row/large.png
|
|
221
|
+
- test/fixtures/sprites/public/images/image_row/large_square.png
|
|
222
|
+
- test/fixtures/sprites/public/images/image_row/medium.png
|
|
223
|
+
- test/fixtures/sprites/public/images/image_row/small.png
|
|
224
|
+
- test/fixtures/sprites/public/images/image_row/tall.png
|
|
225
|
+
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
226
|
+
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
227
|
+
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
228
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
229
|
+
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
230
|
+
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
231
|
+
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
232
|
+
- test/fixtures/sprites/public/images/repeat_x/four.png
|
|
233
|
+
- test/fixtures/sprites/public/images/repeat_x/one.png
|
|
234
|
+
- test/fixtures/sprites/public/images/repeat_x/three.png
|
|
235
|
+
- test/fixtures/sprites/public/images/repeat_x/two.png
|
|
236
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten.png
|
|
237
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png
|
|
238
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png
|
|
239
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
240
|
+
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
241
|
+
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
242
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
|
243
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
|
244
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
|
245
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
|
246
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
|
247
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
|
248
|
+
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
249
|
+
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
250
|
+
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
251
|
+
- test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
|
|
252
|
+
- test/fixtures/stylesheets/busted_image_urls/images/grid.png
|
|
253
|
+
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
|
254
|
+
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
255
|
+
- test/fixtures/stylesheets/compass/config.rb
|
|
256
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
|
257
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
|
258
|
+
- test/fixtures/stylesheets/compass/css/appearance.css
|
|
259
|
+
- test/fixtures/stylesheets/compass/css/background-clip.css
|
|
260
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
|
261
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
|
262
|
+
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
263
|
+
- test/fixtures/stylesheets/compass/css/box-sizing.css
|
|
264
|
+
- test/fixtures/stylesheets/compass/css/box.css
|
|
265
|
+
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
266
|
+
- test/fixtures/stylesheets/compass/css/brightness.css
|
|
267
|
+
- test/fixtures/stylesheets/compass/css/browser-support.css
|
|
268
|
+
- test/fixtures/stylesheets/compass/css/color.css
|
|
269
|
+
- test/fixtures/stylesheets/compass/css/columns.css
|
|
270
|
+
- test/fixtures/stylesheets/compass/css/filters.css
|
|
271
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
272
|
+
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
273
|
+
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
274
|
+
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
275
|
+
- test/fixtures/stylesheets/compass/css/grid_background.css
|
|
276
|
+
- test/fixtures/stylesheets/compass/css/hyphenation.css
|
|
277
|
+
- test/fixtures/stylesheets/compass/css/image_size.css
|
|
278
|
+
- test/fixtures/stylesheets/compass/css/images.css
|
|
279
|
+
- test/fixtures/stylesheets/compass/css/layout.css
|
|
280
|
+
- test/fixtures/stylesheets/compass/css/legacy_clearfix.css
|
|
281
|
+
- test/fixtures/stylesheets/compass/css/lists.css
|
|
282
|
+
- test/fixtures/stylesheets/compass/css/opacity.css
|
|
283
|
+
- test/fixtures/stylesheets/compass/css/print.css
|
|
284
|
+
- test/fixtures/stylesheets/compass/css/regions.css
|
|
285
|
+
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
286
|
+
- test/fixtures/stylesheets/compass/css/reset.css
|
|
287
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
288
|
+
- test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css
|
|
289
|
+
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
290
|
+
- test/fixtures/stylesheets/compass/css/support.css
|
|
291
|
+
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
292
|
+
- test/fixtures/stylesheets/compass/css/transform.css
|
|
293
|
+
- test/fixtures/stylesheets/compass/css/transition.css
|
|
294
|
+
- test/fixtures/stylesheets/compass/css/typography/links/hover-link.css
|
|
295
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
296
|
+
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
297
|
+
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
298
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
299
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css
|
|
300
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css
|
|
301
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css
|
|
302
|
+
- test/fixtures/stylesheets/compass/images/100x150.gif
|
|
303
|
+
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
|
304
|
+
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
|
305
|
+
- test/fixtures/stylesheets/compass/images/100x150.png
|
|
306
|
+
- test/fixtures/stylesheets/compass/images/4x6.png
|
|
307
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
|
308
|
+
- test/fixtures/stylesheets/compass/images/flag/ad.png
|
|
309
|
+
- test/fixtures/stylesheets/compass/images/flag/ae.png
|
|
310
|
+
- test/fixtures/stylesheets/compass/images/flag/af.png
|
|
311
|
+
- test/fixtures/stylesheets/compass/images/flag/ag.png
|
|
312
|
+
- test/fixtures/stylesheets/compass/images/flag/ai.png
|
|
313
|
+
- test/fixtures/stylesheets/compass/images/flag/al.png
|
|
314
|
+
- test/fixtures/stylesheets/compass/images/flag/am.png
|
|
315
|
+
- test/fixtures/stylesheets/compass/images/flag/an.png
|
|
316
|
+
- test/fixtures/stylesheets/compass/images/flag/ao.png
|
|
317
|
+
- test/fixtures/stylesheets/compass/images/flag/ar.png
|
|
318
|
+
- test/fixtures/stylesheets/compass/images/flag/as.png
|
|
319
|
+
- test/fixtures/stylesheets/compass/images/flag/at.png
|
|
320
|
+
- test/fixtures/stylesheets/compass/images/flag/au.png
|
|
321
|
+
- test/fixtures/stylesheets/compass/images/flag/aw.png
|
|
322
|
+
- test/fixtures/stylesheets/compass/images/flag/ax.png
|
|
323
|
+
- test/fixtures/stylesheets/compass/images/flag/az.png
|
|
324
|
+
- test/fixtures/stylesheets/compass/images/flag/ba.png
|
|
325
|
+
- test/fixtures/stylesheets/compass/images/flag/bb.png
|
|
326
|
+
- test/fixtures/stylesheets/compass/images/flag/bd.png
|
|
327
|
+
- test/fixtures/stylesheets/compass/images/flag/be.png
|
|
328
|
+
- test/fixtures/stylesheets/compass/images/flag/bf.png
|
|
329
|
+
- test/fixtures/stylesheets/compass/images/flag/bg.png
|
|
330
|
+
- test/fixtures/stylesheets/compass/images/flag/bh.png
|
|
331
|
+
- test/fixtures/stylesheets/compass/images/flag/bi.png
|
|
332
|
+
- test/fixtures/stylesheets/compass/images/flag/bj.png
|
|
333
|
+
- test/fixtures/stylesheets/compass/images/flag/bm.png
|
|
334
|
+
- test/fixtures/stylesheets/compass/images/flag/bn.png
|
|
335
|
+
- test/fixtures/stylesheets/compass/images/flag/bo.png
|
|
336
|
+
- test/fixtures/stylesheets/compass/images/flag/br.png
|
|
337
|
+
- test/fixtures/stylesheets/compass/images/flag/bs.png
|
|
338
|
+
- test/fixtures/stylesheets/compass/images/flag/bt.png
|
|
339
|
+
- test/fixtures/stylesheets/compass/images/flag/bv.png
|
|
340
|
+
- test/fixtures/stylesheets/compass/images/flag/bw.png
|
|
341
|
+
- test/fixtures/stylesheets/compass/images/flag/by.png
|
|
342
|
+
- test/fixtures/stylesheets/compass/images/flag/bz.png
|
|
343
|
+
- test/fixtures/stylesheets/compass/images/flag/ca.png
|
|
344
|
+
- test/fixtures/stylesheets/compass/images/flag/catalonia.png
|
|
345
|
+
- test/fixtures/stylesheets/compass/images/flag/cc.png
|
|
346
|
+
- test/fixtures/stylesheets/compass/images/flag/cd.png
|
|
347
|
+
- test/fixtures/stylesheets/compass/images/flag/cf.png
|
|
348
|
+
- test/fixtures/stylesheets/compass/images/flag/cg.png
|
|
349
|
+
- test/fixtures/stylesheets/compass/images/flag/ch.png
|
|
350
|
+
- test/fixtures/stylesheets/compass/images/flag/ci.png
|
|
351
|
+
- test/fixtures/stylesheets/compass/images/flag/ck.png
|
|
352
|
+
- test/fixtures/stylesheets/compass/images/flag/cl.png
|
|
353
|
+
- test/fixtures/stylesheets/compass/images/flag/cm.png
|
|
354
|
+
- test/fixtures/stylesheets/compass/images/flag/cn.png
|
|
355
|
+
- test/fixtures/stylesheets/compass/images/flag/co.png
|
|
356
|
+
- test/fixtures/stylesheets/compass/images/flag/cr.png
|
|
357
|
+
- test/fixtures/stylesheets/compass/images/flag/cs.png
|
|
358
|
+
- test/fixtures/stylesheets/compass/images/flag/cu.png
|
|
359
|
+
- test/fixtures/stylesheets/compass/images/flag/cv.png
|
|
360
|
+
- test/fixtures/stylesheets/compass/images/flag/cx.png
|
|
361
|
+
- test/fixtures/stylesheets/compass/images/flag/cy.png
|
|
362
|
+
- test/fixtures/stylesheets/compass/images/flag/cz.png
|
|
363
|
+
- test/fixtures/stylesheets/compass/images/flag/de.png
|
|
364
|
+
- test/fixtures/stylesheets/compass/images/flag/dj.png
|
|
365
|
+
- test/fixtures/stylesheets/compass/images/flag/dk.png
|
|
366
|
+
- test/fixtures/stylesheets/compass/images/flag/dm.png
|
|
367
|
+
- test/fixtures/stylesheets/compass/images/flag/do.png
|
|
368
|
+
- test/fixtures/stylesheets/compass/images/flag/dz.png
|
|
369
|
+
- test/fixtures/stylesheets/compass/images/flag/ec.png
|
|
370
|
+
- test/fixtures/stylesheets/compass/images/flag/ee.png
|
|
371
|
+
- test/fixtures/stylesheets/compass/images/flag/eg.png
|
|
372
|
+
- test/fixtures/stylesheets/compass/images/flag/eh.png
|
|
373
|
+
- test/fixtures/stylesheets/compass/images/flag/england.png
|
|
374
|
+
- test/fixtures/stylesheets/compass/images/flag/er.png
|
|
375
|
+
- test/fixtures/stylesheets/compass/images/flag/es.png
|
|
376
|
+
- test/fixtures/stylesheets/compass/images/flag/et.png
|
|
377
|
+
- test/fixtures/stylesheets/compass/images/flag/europeanunion.png
|
|
378
|
+
- test/fixtures/stylesheets/compass/images/flag/fam.png
|
|
379
|
+
- test/fixtures/stylesheets/compass/images/flag/fi.png
|
|
380
|
+
- test/fixtures/stylesheets/compass/images/flag/fj.png
|
|
381
|
+
- test/fixtures/stylesheets/compass/images/flag/fk.png
|
|
382
|
+
- test/fixtures/stylesheets/compass/images/flag/fm.png
|
|
383
|
+
- test/fixtures/stylesheets/compass/images/flag/fo.png
|
|
384
|
+
- test/fixtures/stylesheets/compass/images/flag/fr.png
|
|
385
|
+
- test/fixtures/stylesheets/compass/images/flag/ga.png
|
|
386
|
+
- test/fixtures/stylesheets/compass/images/flag/gb.png
|
|
387
|
+
- test/fixtures/stylesheets/compass/images/flag/gd.png
|
|
388
|
+
- test/fixtures/stylesheets/compass/images/flag/ge.png
|
|
389
|
+
- test/fixtures/stylesheets/compass/images/flag/gf.png
|
|
390
|
+
- test/fixtures/stylesheets/compass/images/flag/gh.png
|
|
391
|
+
- test/fixtures/stylesheets/compass/images/flag/gi.png
|
|
392
|
+
- test/fixtures/stylesheets/compass/images/flag/gl.png
|
|
393
|
+
- test/fixtures/stylesheets/compass/images/flag/gm.png
|
|
394
|
+
- test/fixtures/stylesheets/compass/images/flag/gn.png
|
|
395
|
+
- test/fixtures/stylesheets/compass/images/flag/gp.png
|
|
396
|
+
- test/fixtures/stylesheets/compass/images/flag/gq.png
|
|
397
|
+
- test/fixtures/stylesheets/compass/images/flag/gr.png
|
|
398
|
+
- test/fixtures/stylesheets/compass/images/flag/gs.png
|
|
399
|
+
- test/fixtures/stylesheets/compass/images/flag/gt.png
|
|
400
|
+
- test/fixtures/stylesheets/compass/images/flag/gu.png
|
|
401
|
+
- test/fixtures/stylesheets/compass/images/flag/gw.png
|
|
402
|
+
- test/fixtures/stylesheets/compass/images/flag/gy.png
|
|
403
|
+
- test/fixtures/stylesheets/compass/images/flag/hk.png
|
|
404
|
+
- test/fixtures/stylesheets/compass/images/flag/hm.png
|
|
405
|
+
- test/fixtures/stylesheets/compass/images/flag/hn.png
|
|
406
|
+
- test/fixtures/stylesheets/compass/images/flag/hr.png
|
|
407
|
+
- test/fixtures/stylesheets/compass/images/flag/ht.png
|
|
408
|
+
- test/fixtures/stylesheets/compass/images/flag/hu.png
|
|
409
|
+
- test/fixtures/stylesheets/compass/images/flag/id-2.png
|
|
410
|
+
- test/fixtures/stylesheets/compass/images/flag/ie.png
|
|
411
|
+
- test/fixtures/stylesheets/compass/images/flag/il.png
|
|
412
|
+
- test/fixtures/stylesheets/compass/images/flag/in.png
|
|
413
|
+
- test/fixtures/stylesheets/compass/images/flag/io.png
|
|
414
|
+
- test/fixtures/stylesheets/compass/images/flag/iq.png
|
|
415
|
+
- test/fixtures/stylesheets/compass/images/flag/ir.png
|
|
416
|
+
- test/fixtures/stylesheets/compass/images/flag/is.png
|
|
417
|
+
- test/fixtures/stylesheets/compass/images/flag/it.png
|
|
418
|
+
- test/fixtures/stylesheets/compass/images/flag/jm.png
|
|
419
|
+
- test/fixtures/stylesheets/compass/images/flag/jo.png
|
|
420
|
+
- test/fixtures/stylesheets/compass/images/flag/jp.png
|
|
421
|
+
- test/fixtures/stylesheets/compass/images/flag/ke.png
|
|
422
|
+
- test/fixtures/stylesheets/compass/images/flag/kg.png
|
|
423
|
+
- test/fixtures/stylesheets/compass/images/flag/kh.png
|
|
424
|
+
- test/fixtures/stylesheets/compass/images/flag/ki.png
|
|
425
|
+
- test/fixtures/stylesheets/compass/images/flag/km.png
|
|
426
|
+
- test/fixtures/stylesheets/compass/images/flag/kn.png
|
|
427
|
+
- test/fixtures/stylesheets/compass/images/flag/kp.png
|
|
428
|
+
- test/fixtures/stylesheets/compass/images/flag/kr.png
|
|
429
|
+
- test/fixtures/stylesheets/compass/images/flag/kw.png
|
|
430
|
+
- test/fixtures/stylesheets/compass/images/flag/ky.png
|
|
431
|
+
- test/fixtures/stylesheets/compass/images/flag/kz.png
|
|
432
|
+
- test/fixtures/stylesheets/compass/images/flag/la.png
|
|
433
|
+
- test/fixtures/stylesheets/compass/images/flag/lb.png
|
|
434
|
+
- test/fixtures/stylesheets/compass/images/flag/lc.png
|
|
435
|
+
- test/fixtures/stylesheets/compass/images/flag/li.png
|
|
436
|
+
- test/fixtures/stylesheets/compass/images/flag/lk.png
|
|
437
|
+
- test/fixtures/stylesheets/compass/images/flag/lr.png
|
|
438
|
+
- test/fixtures/stylesheets/compass/images/flag/ls.png
|
|
439
|
+
- test/fixtures/stylesheets/compass/images/flag/lt.png
|
|
440
|
+
- test/fixtures/stylesheets/compass/images/flag/lu.png
|
|
441
|
+
- test/fixtures/stylesheets/compass/images/flag/lv.png
|
|
442
|
+
- test/fixtures/stylesheets/compass/images/flag/ly.png
|
|
443
|
+
- test/fixtures/stylesheets/compass/images/flag/ma.png
|
|
444
|
+
- test/fixtures/stylesheets/compass/images/flag/mc.png
|
|
445
|
+
- test/fixtures/stylesheets/compass/images/flag/md.png
|
|
446
|
+
- test/fixtures/stylesheets/compass/images/flag/me.png
|
|
447
|
+
- test/fixtures/stylesheets/compass/images/flag/mg.png
|
|
448
|
+
- test/fixtures/stylesheets/compass/images/flag/mh.png
|
|
449
|
+
- test/fixtures/stylesheets/compass/images/flag/mk.png
|
|
450
|
+
- test/fixtures/stylesheets/compass/images/flag/ml.png
|
|
451
|
+
- test/fixtures/stylesheets/compass/images/flag/mm.png
|
|
452
|
+
- test/fixtures/stylesheets/compass/images/flag/mn.png
|
|
453
|
+
- test/fixtures/stylesheets/compass/images/flag/mo.png
|
|
454
|
+
- test/fixtures/stylesheets/compass/images/flag/mp.png
|
|
455
|
+
- test/fixtures/stylesheets/compass/images/flag/mq.png
|
|
456
|
+
- test/fixtures/stylesheets/compass/images/flag/mr.png
|
|
457
|
+
- test/fixtures/stylesheets/compass/images/flag/ms.png
|
|
458
|
+
- test/fixtures/stylesheets/compass/images/flag/mt.png
|
|
459
|
+
- test/fixtures/stylesheets/compass/images/flag/mu.png
|
|
460
|
+
- test/fixtures/stylesheets/compass/images/flag/mv.png
|
|
461
|
+
- test/fixtures/stylesheets/compass/images/flag/mw.png
|
|
462
|
+
- test/fixtures/stylesheets/compass/images/flag/mx.png
|
|
463
|
+
- test/fixtures/stylesheets/compass/images/flag/my.png
|
|
464
|
+
- test/fixtures/stylesheets/compass/images/flag/mz.png
|
|
465
|
+
- test/fixtures/stylesheets/compass/images/flag/na.png
|
|
466
|
+
- test/fixtures/stylesheets/compass/images/flag/nc.png
|
|
467
|
+
- test/fixtures/stylesheets/compass/images/flag/ne.png
|
|
468
|
+
- test/fixtures/stylesheets/compass/images/flag/nf.png
|
|
469
|
+
- test/fixtures/stylesheets/compass/images/flag/ng.png
|
|
470
|
+
- test/fixtures/stylesheets/compass/images/flag/ni.png
|
|
471
|
+
- test/fixtures/stylesheets/compass/images/flag/nl.png
|
|
472
|
+
- test/fixtures/stylesheets/compass/images/flag/no.png
|
|
473
|
+
- test/fixtures/stylesheets/compass/images/flag/np.png
|
|
474
|
+
- test/fixtures/stylesheets/compass/images/flag/nr.png
|
|
475
|
+
- test/fixtures/stylesheets/compass/images/flag/nu.png
|
|
476
|
+
- test/fixtures/stylesheets/compass/images/flag/nz.png
|
|
477
|
+
- test/fixtures/stylesheets/compass/images/flag/om.png
|
|
478
|
+
- test/fixtures/stylesheets/compass/images/flag/pa.png
|
|
479
|
+
- test/fixtures/stylesheets/compass/images/flag/pe.png
|
|
480
|
+
- test/fixtures/stylesheets/compass/images/flag/pf.png
|
|
481
|
+
- test/fixtures/stylesheets/compass/images/flag/pg.png
|
|
482
|
+
- test/fixtures/stylesheets/compass/images/flag/ph.png
|
|
483
|
+
- test/fixtures/stylesheets/compass/images/flag/pk.png
|
|
484
|
+
- test/fixtures/stylesheets/compass/images/flag/pl.png
|
|
485
|
+
- test/fixtures/stylesheets/compass/images/flag/pm.png
|
|
486
|
+
- test/fixtures/stylesheets/compass/images/flag/pn.png
|
|
487
|
+
- test/fixtures/stylesheets/compass/images/flag/pr.png
|
|
488
|
+
- test/fixtures/stylesheets/compass/images/flag/ps.png
|
|
489
|
+
- test/fixtures/stylesheets/compass/images/flag/pt.png
|
|
490
|
+
- test/fixtures/stylesheets/compass/images/flag/pw.png
|
|
491
|
+
- test/fixtures/stylesheets/compass/images/flag/py.png
|
|
492
|
+
- test/fixtures/stylesheets/compass/images/flag/qa.png
|
|
493
|
+
- test/fixtures/stylesheets/compass/images/flag/re.png
|
|
494
|
+
- test/fixtures/stylesheets/compass/images/flag/ro.png
|
|
495
|
+
- test/fixtures/stylesheets/compass/images/flag/rs.png
|
|
496
|
+
- test/fixtures/stylesheets/compass/images/flag/ru.png
|
|
497
|
+
- test/fixtures/stylesheets/compass/images/flag/rw.png
|
|
498
|
+
- test/fixtures/stylesheets/compass/images/flag/sa.png
|
|
499
|
+
- test/fixtures/stylesheets/compass/images/flag/sb.png
|
|
500
|
+
- test/fixtures/stylesheets/compass/images/flag/sc.png
|
|
501
|
+
- test/fixtures/stylesheets/compass/images/flag/scotland.png
|
|
502
|
+
- test/fixtures/stylesheets/compass/images/flag/sd.png
|
|
503
|
+
- test/fixtures/stylesheets/compass/images/flag/se.png
|
|
504
|
+
- test/fixtures/stylesheets/compass/images/flag/sg.png
|
|
505
|
+
- test/fixtures/stylesheets/compass/images/flag/sh.png
|
|
506
|
+
- test/fixtures/stylesheets/compass/images/flag/si.png
|
|
507
|
+
- test/fixtures/stylesheets/compass/images/flag/sj.png
|
|
508
|
+
- test/fixtures/stylesheets/compass/images/flag/sk.png
|
|
509
|
+
- test/fixtures/stylesheets/compass/images/flag/sl.png
|
|
510
|
+
- test/fixtures/stylesheets/compass/images/flag/sm.png
|
|
511
|
+
- test/fixtures/stylesheets/compass/images/flag/sn.png
|
|
512
|
+
- test/fixtures/stylesheets/compass/images/flag/so.png
|
|
513
|
+
- test/fixtures/stylesheets/compass/images/flag/sr.png
|
|
514
|
+
- test/fixtures/stylesheets/compass/images/flag/st.png
|
|
515
|
+
- test/fixtures/stylesheets/compass/images/flag/sv.png
|
|
516
|
+
- test/fixtures/stylesheets/compass/images/flag/sy.png
|
|
517
|
+
- test/fixtures/stylesheets/compass/images/flag/sz.png
|
|
518
|
+
- test/fixtures/stylesheets/compass/images/flag/tc.png
|
|
519
|
+
- test/fixtures/stylesheets/compass/images/flag/td.png
|
|
520
|
+
- test/fixtures/stylesheets/compass/images/flag/tf.png
|
|
521
|
+
- test/fixtures/stylesheets/compass/images/flag/tg.png
|
|
522
|
+
- test/fixtures/stylesheets/compass/images/flag/th.png
|
|
523
|
+
- test/fixtures/stylesheets/compass/images/flag/tj.png
|
|
524
|
+
- test/fixtures/stylesheets/compass/images/flag/tk.png
|
|
525
|
+
- test/fixtures/stylesheets/compass/images/flag/tl.png
|
|
526
|
+
- test/fixtures/stylesheets/compass/images/flag/tm.png
|
|
527
|
+
- test/fixtures/stylesheets/compass/images/flag/tn.png
|
|
528
|
+
- test/fixtures/stylesheets/compass/images/flag/to.png
|
|
529
|
+
- test/fixtures/stylesheets/compass/images/flag/tr.png
|
|
530
|
+
- test/fixtures/stylesheets/compass/images/flag/tt.png
|
|
531
|
+
- test/fixtures/stylesheets/compass/images/flag/tv.png
|
|
532
|
+
- test/fixtures/stylesheets/compass/images/flag/tw.png
|
|
533
|
+
- test/fixtures/stylesheets/compass/images/flag/tz.png
|
|
534
|
+
- test/fixtures/stylesheets/compass/images/flag/ua.png
|
|
535
|
+
- test/fixtures/stylesheets/compass/images/flag/ug.png
|
|
536
|
+
- test/fixtures/stylesheets/compass/images/flag/um.png
|
|
537
|
+
- test/fixtures/stylesheets/compass/images/flag/us.png
|
|
538
|
+
- test/fixtures/stylesheets/compass/images/flag/uy.png
|
|
539
|
+
- test/fixtures/stylesheets/compass/images/flag/uz.png
|
|
540
|
+
- test/fixtures/stylesheets/compass/images/flag/va.png
|
|
541
|
+
- test/fixtures/stylesheets/compass/images/flag/vc.png
|
|
542
|
+
- test/fixtures/stylesheets/compass/images/flag/ve.png
|
|
543
|
+
- test/fixtures/stylesheets/compass/images/flag/vg.png
|
|
544
|
+
- test/fixtures/stylesheets/compass/images/flag/vi.png
|
|
545
|
+
- test/fixtures/stylesheets/compass/images/flag/vn.png
|
|
546
|
+
- test/fixtures/stylesheets/compass/images/flag/vu.png
|
|
547
|
+
- test/fixtures/stylesheets/compass/images/flag/wales.png
|
|
548
|
+
- test/fixtures/stylesheets/compass/images/flag/wf.png
|
|
549
|
+
- test/fixtures/stylesheets/compass/images/flag/ws.png
|
|
550
|
+
- test/fixtures/stylesheets/compass/images/flag/ye.png
|
|
551
|
+
- test/fixtures/stylesheets/compass/images/flag/yt.png
|
|
552
|
+
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
553
|
+
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
554
|
+
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
555
|
+
- test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png
|
|
556
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo.png
|
|
557
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_active.png
|
|
558
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png
|
|
559
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png
|
|
560
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_target.png
|
|
561
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
|
562
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
|
563
|
+
- test/fixtures/stylesheets/compass/sass/appearance.scss
|
|
564
|
+
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
|
565
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
|
566
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
|
567
|
+
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
568
|
+
- test/fixtures/stylesheets/compass/sass/box-sizing.scss
|
|
569
|
+
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
570
|
+
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
571
|
+
- test/fixtures/stylesheets/compass/sass/brightness.scss
|
|
572
|
+
- test/fixtures/stylesheets/compass/sass/browser-support.scss
|
|
573
|
+
- test/fixtures/stylesheets/compass/sass/color.scss
|
|
574
|
+
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
575
|
+
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
576
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
577
|
+
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
578
|
+
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
579
|
+
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
580
|
+
- test/fixtures/stylesheets/compass/sass/grid_background.scss
|
|
581
|
+
- test/fixtures/stylesheets/compass/sass/hyphenation.scss
|
|
582
|
+
- test/fixtures/stylesheets/compass/sass/image_size.sass
|
|
583
|
+
- test/fixtures/stylesheets/compass/sass/images.scss
|
|
584
|
+
- test/fixtures/stylesheets/compass/sass/layout.sass
|
|
585
|
+
- test/fixtures/stylesheets/compass/sass/legacy_clearfix.scss
|
|
586
|
+
- test/fixtures/stylesheets/compass/sass/lists.scss
|
|
587
|
+
- test/fixtures/stylesheets/compass/sass/opacity.scss
|
|
588
|
+
- test/fixtures/stylesheets/compass/sass/print.sass
|
|
589
|
+
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
590
|
+
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
591
|
+
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
592
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
593
|
+
- test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss
|
|
594
|
+
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
595
|
+
- test/fixtures/stylesheets/compass/sass/support.scss
|
|
596
|
+
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
597
|
+
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
598
|
+
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
599
|
+
- test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss
|
|
600
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
601
|
+
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
602
|
+
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
603
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
604
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss
|
|
605
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss
|
|
606
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss
|
|
607
|
+
- test/fixtures/stylesheets/envtest/config.rb
|
|
608
|
+
- test/fixtures/stylesheets/envtest/css/env.css
|
|
609
|
+
- test/fixtures/stylesheets/envtest/sass/env.scss
|
|
610
|
+
- test/fixtures/stylesheets/error/config.rb
|
|
611
|
+
- test/fixtures/stylesheets/error/sass/screen.sass
|
|
612
|
+
- test/fixtures/stylesheets/image_urls/config.rb
|
|
613
|
+
- test/fixtures/stylesheets/image_urls/css/screen.css
|
|
614
|
+
- test/fixtures/stylesheets/image_urls/images/grid.png
|
|
615
|
+
- test/fixtures/stylesheets/image_urls/sass/screen.sass
|
|
616
|
+
- test/fixtures/stylesheets/relative/assets/images/testing.png
|
|
617
|
+
- test/fixtures/stylesheets/relative/config.rb
|
|
618
|
+
- test/fixtures/stylesheets/relative/css/ie.css
|
|
619
|
+
- test/fixtures/stylesheets/relative/css/print.css
|
|
620
|
+
- test/fixtures/stylesheets/relative/css/screen.css
|
|
621
|
+
- test/fixtures/stylesheets/relative/sass/ie.sass
|
|
622
|
+
- test/fixtures/stylesheets/relative/sass/print.sass
|
|
623
|
+
- test/fixtures/stylesheets/relative/sass/screen.sass
|
|
624
|
+
- test/fixtures/stylesheets/sourcemaps/config.rb
|
|
625
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css
|
|
626
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
|
|
627
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css
|
|
628
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css.map
|
|
629
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
|
|
630
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
|
|
631
|
+
- test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
|
|
632
|
+
- test/fixtures/stylesheets/sourcemaps/sass/simple.sass
|
|
633
|
+
- test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
|
|
634
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
|
|
635
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
|
|
636
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
|
|
637
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
|
|
638
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
|
|
639
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
640
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
641
|
+
- test/fixtures/stylesheets/valid/config.rb
|
|
642
|
+
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
|
643
|
+
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
644
|
+
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
|
645
|
+
- test/fixtures/stylesheets/with_sass_globbing/css/screen.css
|
|
646
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss
|
|
647
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss
|
|
648
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss
|
|
649
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss
|
|
650
|
+
- test/helpers/command_line.rb
|
|
651
|
+
- test/helpers/diff.rb
|
|
652
|
+
- test/helpers/io.rb
|
|
653
|
+
- test/helpers/rails.rb
|
|
654
|
+
- test/helpers/test_case.rb
|
|
655
|
+
- test/integrations/compass_test.rb
|
|
656
|
+
- test/integrations/sprites_test.rb
|
|
657
|
+
- test/test_helper.rb
|
|
658
|
+
- test/units/actions_test.rb
|
|
659
|
+
- test/units/caniuse_test.rb
|
|
660
|
+
- test/units/command_line_test.rb
|
|
661
|
+
- test/units/compass_util_test.rb
|
|
662
|
+
- test/units/compiler_test.rb
|
|
663
|
+
- test/units/configuration_test.rb
|
|
664
|
+
- test/units/regressions_test.rb
|
|
665
|
+
- test/units/sass_extensions_test.rb
|
|
666
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
667
|
+
- test/units/sprites/engine_test.rb
|
|
668
|
+
- test/units/sprites/image_row_test.rb
|
|
669
|
+
- test/units/sprites/image_test.rb
|
|
670
|
+
- test/units/sprites/images_test.rb
|
|
671
|
+
- test/units/sprites/importer_test.rb
|
|
672
|
+
- test/units/sprites/layout_test.rb
|
|
673
|
+
- test/units/sprites/row_fitter_test.rb
|
|
674
|
+
- test/units/sprites/sprite_command_test.rb
|
|
675
|
+
- test/units/sprites/sprite_map_test.rb
|
|
676
|
+
homepage: https://github.com/VladimirIvanin/compass
|
|
677
|
+
licenses: []
|
|
678
|
+
metadata: {}
|
|
679
|
+
post_install_message: |2
|
|
680
|
+
Compass-Sass37: A maintained fork of Compass with Sass 3.7 support.
|
|
681
|
+
Original Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!
|
|
682
|
+
rdoc_options: []
|
|
683
|
+
require_paths:
|
|
684
|
+
- lib
|
|
685
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
686
|
+
requirements:
|
|
687
|
+
- - ">="
|
|
688
|
+
- !ruby/object:Gem::Version
|
|
689
|
+
version: '0'
|
|
690
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
691
|
+
requirements:
|
|
692
|
+
- - ">="
|
|
693
|
+
- !ruby/object:Gem::Version
|
|
694
|
+
version: '0'
|
|
695
|
+
requirements: []
|
|
696
|
+
rubygems_version: 3.3.7
|
|
697
|
+
signing_key:
|
|
698
|
+
specification_version: 4
|
|
699
|
+
summary: A Real Stylesheet Framework with Sass 3.7 support
|
|
700
|
+
test_files:
|
|
701
|
+
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
702
|
+
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
703
|
+
- test/fixtures/fonts/bgrove.base64.txt
|
|
704
|
+
- test/fixtures/fonts/bgrove.ttf
|
|
705
|
+
- test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
|
|
706
|
+
- test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
|
|
707
|
+
- test/fixtures/sprites/public/images/bool/false.png
|
|
708
|
+
- test/fixtures/sprites/public/images/bool/true.png
|
|
709
|
+
- test/fixtures/sprites/public/images/colors/blue.png
|
|
710
|
+
- test/fixtures/sprites/public/images/colors/yellow.png
|
|
711
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten.png
|
|
712
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_active.png
|
|
713
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png
|
|
714
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png
|
|
715
|
+
- test/fixtures/sprites/public/images/focus/ten-by-ten_target.png
|
|
716
|
+
- test/fixtures/sprites/public/images/image_row/large.png
|
|
717
|
+
- test/fixtures/sprites/public/images/image_row/large_square.png
|
|
718
|
+
- test/fixtures/sprites/public/images/image_row/medium.png
|
|
719
|
+
- test/fixtures/sprites/public/images/image_row/small.png
|
|
720
|
+
- test/fixtures/sprites/public/images/image_row/tall.png
|
|
721
|
+
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
722
|
+
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
723
|
+
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
724
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
725
|
+
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
726
|
+
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
727
|
+
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
728
|
+
- test/fixtures/sprites/public/images/repeat_x/four.png
|
|
729
|
+
- test/fixtures/sprites/public/images/repeat_x/one.png
|
|
730
|
+
- test/fixtures/sprites/public/images/repeat_x/three.png
|
|
731
|
+
- test/fixtures/sprites/public/images/repeat_x/two.png
|
|
732
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten.png
|
|
733
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png
|
|
734
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png
|
|
735
|
+
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
736
|
+
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
737
|
+
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
738
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
|
739
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
|
740
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
|
741
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
|
742
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
|
743
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
|
744
|
+
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
745
|
+
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
746
|
+
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
747
|
+
- test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
|
|
748
|
+
- test/fixtures/stylesheets/busted_image_urls/images/grid.png
|
|
749
|
+
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
|
750
|
+
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
751
|
+
- test/fixtures/stylesheets/compass/config.rb
|
|
752
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
|
753
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
|
754
|
+
- test/fixtures/stylesheets/compass/css/appearance.css
|
|
755
|
+
- test/fixtures/stylesheets/compass/css/background-clip.css
|
|
756
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
|
757
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
|
758
|
+
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
759
|
+
- test/fixtures/stylesheets/compass/css/box-sizing.css
|
|
760
|
+
- test/fixtures/stylesheets/compass/css/box.css
|
|
761
|
+
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
762
|
+
- test/fixtures/stylesheets/compass/css/brightness.css
|
|
763
|
+
- test/fixtures/stylesheets/compass/css/browser-support.css
|
|
764
|
+
- test/fixtures/stylesheets/compass/css/color.css
|
|
765
|
+
- test/fixtures/stylesheets/compass/css/columns.css
|
|
766
|
+
- test/fixtures/stylesheets/compass/css/filters.css
|
|
767
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
768
|
+
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
769
|
+
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
770
|
+
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
771
|
+
- test/fixtures/stylesheets/compass/css/grid_background.css
|
|
772
|
+
- test/fixtures/stylesheets/compass/css/hyphenation.css
|
|
773
|
+
- test/fixtures/stylesheets/compass/css/image_size.css
|
|
774
|
+
- test/fixtures/stylesheets/compass/css/images.css
|
|
775
|
+
- test/fixtures/stylesheets/compass/css/layout.css
|
|
776
|
+
- test/fixtures/stylesheets/compass/css/legacy_clearfix.css
|
|
777
|
+
- test/fixtures/stylesheets/compass/css/lists.css
|
|
778
|
+
- test/fixtures/stylesheets/compass/css/opacity.css
|
|
779
|
+
- test/fixtures/stylesheets/compass/css/print.css
|
|
780
|
+
- test/fixtures/stylesheets/compass/css/regions.css
|
|
781
|
+
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
782
|
+
- test/fixtures/stylesheets/compass/css/reset.css
|
|
783
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
784
|
+
- test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css
|
|
785
|
+
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
786
|
+
- test/fixtures/stylesheets/compass/css/support.css
|
|
787
|
+
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
788
|
+
- test/fixtures/stylesheets/compass/css/transform.css
|
|
789
|
+
- test/fixtures/stylesheets/compass/css/transition.css
|
|
790
|
+
- test/fixtures/stylesheets/compass/css/typography/links/hover-link.css
|
|
791
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
792
|
+
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
793
|
+
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
794
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
795
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css
|
|
796
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css
|
|
797
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css
|
|
798
|
+
- test/fixtures/stylesheets/compass/images/100x150.gif
|
|
799
|
+
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
|
800
|
+
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
|
801
|
+
- test/fixtures/stylesheets/compass/images/100x150.png
|
|
802
|
+
- test/fixtures/stylesheets/compass/images/4x6.png
|
|
803
|
+
- test/fixtures/stylesheets/compass/images/flag/ad.png
|
|
804
|
+
- test/fixtures/stylesheets/compass/images/flag/ae.png
|
|
805
|
+
- test/fixtures/stylesheets/compass/images/flag/af.png
|
|
806
|
+
- test/fixtures/stylesheets/compass/images/flag/ag.png
|
|
807
|
+
- test/fixtures/stylesheets/compass/images/flag/ai.png
|
|
808
|
+
- test/fixtures/stylesheets/compass/images/flag/al.png
|
|
809
|
+
- test/fixtures/stylesheets/compass/images/flag/am.png
|
|
810
|
+
- test/fixtures/stylesheets/compass/images/flag/an.png
|
|
811
|
+
- test/fixtures/stylesheets/compass/images/flag/ao.png
|
|
812
|
+
- test/fixtures/stylesheets/compass/images/flag/ar.png
|
|
813
|
+
- test/fixtures/stylesheets/compass/images/flag/as.png
|
|
814
|
+
- test/fixtures/stylesheets/compass/images/flag/at.png
|
|
815
|
+
- test/fixtures/stylesheets/compass/images/flag/au.png
|
|
816
|
+
- test/fixtures/stylesheets/compass/images/flag/aw.png
|
|
817
|
+
- test/fixtures/stylesheets/compass/images/flag/ax.png
|
|
818
|
+
- test/fixtures/stylesheets/compass/images/flag/az.png
|
|
819
|
+
- test/fixtures/stylesheets/compass/images/flag/ba.png
|
|
820
|
+
- test/fixtures/stylesheets/compass/images/flag/bb.png
|
|
821
|
+
- test/fixtures/stylesheets/compass/images/flag/bd.png
|
|
822
|
+
- test/fixtures/stylesheets/compass/images/flag/be.png
|
|
823
|
+
- test/fixtures/stylesheets/compass/images/flag/bf.png
|
|
824
|
+
- test/fixtures/stylesheets/compass/images/flag/bg.png
|
|
825
|
+
- test/fixtures/stylesheets/compass/images/flag/bh.png
|
|
826
|
+
- test/fixtures/stylesheets/compass/images/flag/bi.png
|
|
827
|
+
- test/fixtures/stylesheets/compass/images/flag/bj.png
|
|
828
|
+
- test/fixtures/stylesheets/compass/images/flag/bm.png
|
|
829
|
+
- test/fixtures/stylesheets/compass/images/flag/bn.png
|
|
830
|
+
- test/fixtures/stylesheets/compass/images/flag/bo.png
|
|
831
|
+
- test/fixtures/stylesheets/compass/images/flag/br.png
|
|
832
|
+
- test/fixtures/stylesheets/compass/images/flag/bs.png
|
|
833
|
+
- test/fixtures/stylesheets/compass/images/flag/bt.png
|
|
834
|
+
- test/fixtures/stylesheets/compass/images/flag/bv.png
|
|
835
|
+
- test/fixtures/stylesheets/compass/images/flag/bw.png
|
|
836
|
+
- test/fixtures/stylesheets/compass/images/flag/by.png
|
|
837
|
+
- test/fixtures/stylesheets/compass/images/flag/bz.png
|
|
838
|
+
- test/fixtures/stylesheets/compass/images/flag/ca.png
|
|
839
|
+
- test/fixtures/stylesheets/compass/images/flag/catalonia.png
|
|
840
|
+
- test/fixtures/stylesheets/compass/images/flag/cc.png
|
|
841
|
+
- test/fixtures/stylesheets/compass/images/flag/cd.png
|
|
842
|
+
- test/fixtures/stylesheets/compass/images/flag/cf.png
|
|
843
|
+
- test/fixtures/stylesheets/compass/images/flag/cg.png
|
|
844
|
+
- test/fixtures/stylesheets/compass/images/flag/ch.png
|
|
845
|
+
- test/fixtures/stylesheets/compass/images/flag/ci.png
|
|
846
|
+
- test/fixtures/stylesheets/compass/images/flag/ck.png
|
|
847
|
+
- test/fixtures/stylesheets/compass/images/flag/cl.png
|
|
848
|
+
- test/fixtures/stylesheets/compass/images/flag/cm.png
|
|
849
|
+
- test/fixtures/stylesheets/compass/images/flag/cn.png
|
|
850
|
+
- test/fixtures/stylesheets/compass/images/flag/co.png
|
|
851
|
+
- test/fixtures/stylesheets/compass/images/flag/cr.png
|
|
852
|
+
- test/fixtures/stylesheets/compass/images/flag/cs.png
|
|
853
|
+
- test/fixtures/stylesheets/compass/images/flag/cu.png
|
|
854
|
+
- test/fixtures/stylesheets/compass/images/flag/cv.png
|
|
855
|
+
- test/fixtures/stylesheets/compass/images/flag/cx.png
|
|
856
|
+
- test/fixtures/stylesheets/compass/images/flag/cy.png
|
|
857
|
+
- test/fixtures/stylesheets/compass/images/flag/cz.png
|
|
858
|
+
- test/fixtures/stylesheets/compass/images/flag/de.png
|
|
859
|
+
- test/fixtures/stylesheets/compass/images/flag/dj.png
|
|
860
|
+
- test/fixtures/stylesheets/compass/images/flag/dk.png
|
|
861
|
+
- test/fixtures/stylesheets/compass/images/flag/dm.png
|
|
862
|
+
- test/fixtures/stylesheets/compass/images/flag/do.png
|
|
863
|
+
- test/fixtures/stylesheets/compass/images/flag/dz.png
|
|
864
|
+
- test/fixtures/stylesheets/compass/images/flag/ec.png
|
|
865
|
+
- test/fixtures/stylesheets/compass/images/flag/ee.png
|
|
866
|
+
- test/fixtures/stylesheets/compass/images/flag/eg.png
|
|
867
|
+
- test/fixtures/stylesheets/compass/images/flag/eh.png
|
|
868
|
+
- test/fixtures/stylesheets/compass/images/flag/england.png
|
|
869
|
+
- test/fixtures/stylesheets/compass/images/flag/er.png
|
|
870
|
+
- test/fixtures/stylesheets/compass/images/flag/es.png
|
|
871
|
+
- test/fixtures/stylesheets/compass/images/flag/et.png
|
|
872
|
+
- test/fixtures/stylesheets/compass/images/flag/europeanunion.png
|
|
873
|
+
- test/fixtures/stylesheets/compass/images/flag/fam.png
|
|
874
|
+
- test/fixtures/stylesheets/compass/images/flag/fi.png
|
|
875
|
+
- test/fixtures/stylesheets/compass/images/flag/fj.png
|
|
876
|
+
- test/fixtures/stylesheets/compass/images/flag/fk.png
|
|
877
|
+
- test/fixtures/stylesheets/compass/images/flag/fm.png
|
|
878
|
+
- test/fixtures/stylesheets/compass/images/flag/fo.png
|
|
879
|
+
- test/fixtures/stylesheets/compass/images/flag/fr.png
|
|
880
|
+
- test/fixtures/stylesheets/compass/images/flag/ga.png
|
|
881
|
+
- test/fixtures/stylesheets/compass/images/flag/gb.png
|
|
882
|
+
- test/fixtures/stylesheets/compass/images/flag/gd.png
|
|
883
|
+
- test/fixtures/stylesheets/compass/images/flag/ge.png
|
|
884
|
+
- test/fixtures/stylesheets/compass/images/flag/gf.png
|
|
885
|
+
- test/fixtures/stylesheets/compass/images/flag/gh.png
|
|
886
|
+
- test/fixtures/stylesheets/compass/images/flag/gi.png
|
|
887
|
+
- test/fixtures/stylesheets/compass/images/flag/gl.png
|
|
888
|
+
- test/fixtures/stylesheets/compass/images/flag/gm.png
|
|
889
|
+
- test/fixtures/stylesheets/compass/images/flag/gn.png
|
|
890
|
+
- test/fixtures/stylesheets/compass/images/flag/gp.png
|
|
891
|
+
- test/fixtures/stylesheets/compass/images/flag/gq.png
|
|
892
|
+
- test/fixtures/stylesheets/compass/images/flag/gr.png
|
|
893
|
+
- test/fixtures/stylesheets/compass/images/flag/gs.png
|
|
894
|
+
- test/fixtures/stylesheets/compass/images/flag/gt.png
|
|
895
|
+
- test/fixtures/stylesheets/compass/images/flag/gu.png
|
|
896
|
+
- test/fixtures/stylesheets/compass/images/flag/gw.png
|
|
897
|
+
- test/fixtures/stylesheets/compass/images/flag/gy.png
|
|
898
|
+
- test/fixtures/stylesheets/compass/images/flag/hk.png
|
|
899
|
+
- test/fixtures/stylesheets/compass/images/flag/hm.png
|
|
900
|
+
- test/fixtures/stylesheets/compass/images/flag/hn.png
|
|
901
|
+
- test/fixtures/stylesheets/compass/images/flag/hr.png
|
|
902
|
+
- test/fixtures/stylesheets/compass/images/flag/ht.png
|
|
903
|
+
- test/fixtures/stylesheets/compass/images/flag/hu.png
|
|
904
|
+
- test/fixtures/stylesheets/compass/images/flag/id-2.png
|
|
905
|
+
- test/fixtures/stylesheets/compass/images/flag/ie.png
|
|
906
|
+
- test/fixtures/stylesheets/compass/images/flag/il.png
|
|
907
|
+
- test/fixtures/stylesheets/compass/images/flag/in.png
|
|
908
|
+
- test/fixtures/stylesheets/compass/images/flag/io.png
|
|
909
|
+
- test/fixtures/stylesheets/compass/images/flag/iq.png
|
|
910
|
+
- test/fixtures/stylesheets/compass/images/flag/ir.png
|
|
911
|
+
- test/fixtures/stylesheets/compass/images/flag/is.png
|
|
912
|
+
- test/fixtures/stylesheets/compass/images/flag/it.png
|
|
913
|
+
- test/fixtures/stylesheets/compass/images/flag/jm.png
|
|
914
|
+
- test/fixtures/stylesheets/compass/images/flag/jo.png
|
|
915
|
+
- test/fixtures/stylesheets/compass/images/flag/jp.png
|
|
916
|
+
- test/fixtures/stylesheets/compass/images/flag/ke.png
|
|
917
|
+
- test/fixtures/stylesheets/compass/images/flag/kg.png
|
|
918
|
+
- test/fixtures/stylesheets/compass/images/flag/kh.png
|
|
919
|
+
- test/fixtures/stylesheets/compass/images/flag/ki.png
|
|
920
|
+
- test/fixtures/stylesheets/compass/images/flag/km.png
|
|
921
|
+
- test/fixtures/stylesheets/compass/images/flag/kn.png
|
|
922
|
+
- test/fixtures/stylesheets/compass/images/flag/kp.png
|
|
923
|
+
- test/fixtures/stylesheets/compass/images/flag/kr.png
|
|
924
|
+
- test/fixtures/stylesheets/compass/images/flag/kw.png
|
|
925
|
+
- test/fixtures/stylesheets/compass/images/flag/ky.png
|
|
926
|
+
- test/fixtures/stylesheets/compass/images/flag/kz.png
|
|
927
|
+
- test/fixtures/stylesheets/compass/images/flag/la.png
|
|
928
|
+
- test/fixtures/stylesheets/compass/images/flag/lb.png
|
|
929
|
+
- test/fixtures/stylesheets/compass/images/flag/lc.png
|
|
930
|
+
- test/fixtures/stylesheets/compass/images/flag/li.png
|
|
931
|
+
- test/fixtures/stylesheets/compass/images/flag/lk.png
|
|
932
|
+
- test/fixtures/stylesheets/compass/images/flag/lr.png
|
|
933
|
+
- test/fixtures/stylesheets/compass/images/flag/ls.png
|
|
934
|
+
- test/fixtures/stylesheets/compass/images/flag/lt.png
|
|
935
|
+
- test/fixtures/stylesheets/compass/images/flag/lu.png
|
|
936
|
+
- test/fixtures/stylesheets/compass/images/flag/lv.png
|
|
937
|
+
- test/fixtures/stylesheets/compass/images/flag/ly.png
|
|
938
|
+
- test/fixtures/stylesheets/compass/images/flag/ma.png
|
|
939
|
+
- test/fixtures/stylesheets/compass/images/flag/mc.png
|
|
940
|
+
- test/fixtures/stylesheets/compass/images/flag/md.png
|
|
941
|
+
- test/fixtures/stylesheets/compass/images/flag/me.png
|
|
942
|
+
- test/fixtures/stylesheets/compass/images/flag/mg.png
|
|
943
|
+
- test/fixtures/stylesheets/compass/images/flag/mh.png
|
|
944
|
+
- test/fixtures/stylesheets/compass/images/flag/mk.png
|
|
945
|
+
- test/fixtures/stylesheets/compass/images/flag/ml.png
|
|
946
|
+
- test/fixtures/stylesheets/compass/images/flag/mm.png
|
|
947
|
+
- test/fixtures/stylesheets/compass/images/flag/mn.png
|
|
948
|
+
- test/fixtures/stylesheets/compass/images/flag/mo.png
|
|
949
|
+
- test/fixtures/stylesheets/compass/images/flag/mp.png
|
|
950
|
+
- test/fixtures/stylesheets/compass/images/flag/mq.png
|
|
951
|
+
- test/fixtures/stylesheets/compass/images/flag/mr.png
|
|
952
|
+
- test/fixtures/stylesheets/compass/images/flag/ms.png
|
|
953
|
+
- test/fixtures/stylesheets/compass/images/flag/mt.png
|
|
954
|
+
- test/fixtures/stylesheets/compass/images/flag/mu.png
|
|
955
|
+
- test/fixtures/stylesheets/compass/images/flag/mv.png
|
|
956
|
+
- test/fixtures/stylesheets/compass/images/flag/mw.png
|
|
957
|
+
- test/fixtures/stylesheets/compass/images/flag/mx.png
|
|
958
|
+
- test/fixtures/stylesheets/compass/images/flag/my.png
|
|
959
|
+
- test/fixtures/stylesheets/compass/images/flag/mz.png
|
|
960
|
+
- test/fixtures/stylesheets/compass/images/flag/na.png
|
|
961
|
+
- test/fixtures/stylesheets/compass/images/flag/nc.png
|
|
962
|
+
- test/fixtures/stylesheets/compass/images/flag/ne.png
|
|
963
|
+
- test/fixtures/stylesheets/compass/images/flag/nf.png
|
|
964
|
+
- test/fixtures/stylesheets/compass/images/flag/ng.png
|
|
965
|
+
- test/fixtures/stylesheets/compass/images/flag/ni.png
|
|
966
|
+
- test/fixtures/stylesheets/compass/images/flag/nl.png
|
|
967
|
+
- test/fixtures/stylesheets/compass/images/flag/no.png
|
|
968
|
+
- test/fixtures/stylesheets/compass/images/flag/np.png
|
|
969
|
+
- test/fixtures/stylesheets/compass/images/flag/nr.png
|
|
970
|
+
- test/fixtures/stylesheets/compass/images/flag/nu.png
|
|
971
|
+
- test/fixtures/stylesheets/compass/images/flag/nz.png
|
|
972
|
+
- test/fixtures/stylesheets/compass/images/flag/om.png
|
|
973
|
+
- test/fixtures/stylesheets/compass/images/flag/pa.png
|
|
974
|
+
- test/fixtures/stylesheets/compass/images/flag/pe.png
|
|
975
|
+
- test/fixtures/stylesheets/compass/images/flag/pf.png
|
|
976
|
+
- test/fixtures/stylesheets/compass/images/flag/pg.png
|
|
977
|
+
- test/fixtures/stylesheets/compass/images/flag/ph.png
|
|
978
|
+
- test/fixtures/stylesheets/compass/images/flag/pk.png
|
|
979
|
+
- test/fixtures/stylesheets/compass/images/flag/pl.png
|
|
980
|
+
- test/fixtures/stylesheets/compass/images/flag/pm.png
|
|
981
|
+
- test/fixtures/stylesheets/compass/images/flag/pn.png
|
|
982
|
+
- test/fixtures/stylesheets/compass/images/flag/pr.png
|
|
983
|
+
- test/fixtures/stylesheets/compass/images/flag/ps.png
|
|
984
|
+
- test/fixtures/stylesheets/compass/images/flag/pt.png
|
|
985
|
+
- test/fixtures/stylesheets/compass/images/flag/pw.png
|
|
986
|
+
- test/fixtures/stylesheets/compass/images/flag/py.png
|
|
987
|
+
- test/fixtures/stylesheets/compass/images/flag/qa.png
|
|
988
|
+
- test/fixtures/stylesheets/compass/images/flag/re.png
|
|
989
|
+
- test/fixtures/stylesheets/compass/images/flag/ro.png
|
|
990
|
+
- test/fixtures/stylesheets/compass/images/flag/rs.png
|
|
991
|
+
- test/fixtures/stylesheets/compass/images/flag/ru.png
|
|
992
|
+
- test/fixtures/stylesheets/compass/images/flag/rw.png
|
|
993
|
+
- test/fixtures/stylesheets/compass/images/flag/sa.png
|
|
994
|
+
- test/fixtures/stylesheets/compass/images/flag/sb.png
|
|
995
|
+
- test/fixtures/stylesheets/compass/images/flag/sc.png
|
|
996
|
+
- test/fixtures/stylesheets/compass/images/flag/scotland.png
|
|
997
|
+
- test/fixtures/stylesheets/compass/images/flag/sd.png
|
|
998
|
+
- test/fixtures/stylesheets/compass/images/flag/se.png
|
|
999
|
+
- test/fixtures/stylesheets/compass/images/flag/sg.png
|
|
1000
|
+
- test/fixtures/stylesheets/compass/images/flag/sh.png
|
|
1001
|
+
- test/fixtures/stylesheets/compass/images/flag/si.png
|
|
1002
|
+
- test/fixtures/stylesheets/compass/images/flag/sj.png
|
|
1003
|
+
- test/fixtures/stylesheets/compass/images/flag/sk.png
|
|
1004
|
+
- test/fixtures/stylesheets/compass/images/flag/sl.png
|
|
1005
|
+
- test/fixtures/stylesheets/compass/images/flag/sm.png
|
|
1006
|
+
- test/fixtures/stylesheets/compass/images/flag/sn.png
|
|
1007
|
+
- test/fixtures/stylesheets/compass/images/flag/so.png
|
|
1008
|
+
- test/fixtures/stylesheets/compass/images/flag/sr.png
|
|
1009
|
+
- test/fixtures/stylesheets/compass/images/flag/st.png
|
|
1010
|
+
- test/fixtures/stylesheets/compass/images/flag/sv.png
|
|
1011
|
+
- test/fixtures/stylesheets/compass/images/flag/sy.png
|
|
1012
|
+
- test/fixtures/stylesheets/compass/images/flag/sz.png
|
|
1013
|
+
- test/fixtures/stylesheets/compass/images/flag/tc.png
|
|
1014
|
+
- test/fixtures/stylesheets/compass/images/flag/td.png
|
|
1015
|
+
- test/fixtures/stylesheets/compass/images/flag/tf.png
|
|
1016
|
+
- test/fixtures/stylesheets/compass/images/flag/tg.png
|
|
1017
|
+
- test/fixtures/stylesheets/compass/images/flag/th.png
|
|
1018
|
+
- test/fixtures/stylesheets/compass/images/flag/tj.png
|
|
1019
|
+
- test/fixtures/stylesheets/compass/images/flag/tk.png
|
|
1020
|
+
- test/fixtures/stylesheets/compass/images/flag/tl.png
|
|
1021
|
+
- test/fixtures/stylesheets/compass/images/flag/tm.png
|
|
1022
|
+
- test/fixtures/stylesheets/compass/images/flag/tn.png
|
|
1023
|
+
- test/fixtures/stylesheets/compass/images/flag/to.png
|
|
1024
|
+
- test/fixtures/stylesheets/compass/images/flag/tr.png
|
|
1025
|
+
- test/fixtures/stylesheets/compass/images/flag/tt.png
|
|
1026
|
+
- test/fixtures/stylesheets/compass/images/flag/tv.png
|
|
1027
|
+
- test/fixtures/stylesheets/compass/images/flag/tw.png
|
|
1028
|
+
- test/fixtures/stylesheets/compass/images/flag/tz.png
|
|
1029
|
+
- test/fixtures/stylesheets/compass/images/flag/ua.png
|
|
1030
|
+
- test/fixtures/stylesheets/compass/images/flag/ug.png
|
|
1031
|
+
- test/fixtures/stylesheets/compass/images/flag/um.png
|
|
1032
|
+
- test/fixtures/stylesheets/compass/images/flag/us.png
|
|
1033
|
+
- test/fixtures/stylesheets/compass/images/flag/uy.png
|
|
1034
|
+
- test/fixtures/stylesheets/compass/images/flag/uz.png
|
|
1035
|
+
- test/fixtures/stylesheets/compass/images/flag/va.png
|
|
1036
|
+
- test/fixtures/stylesheets/compass/images/flag/vc.png
|
|
1037
|
+
- test/fixtures/stylesheets/compass/images/flag/ve.png
|
|
1038
|
+
- test/fixtures/stylesheets/compass/images/flag/vg.png
|
|
1039
|
+
- test/fixtures/stylesheets/compass/images/flag/vi.png
|
|
1040
|
+
- test/fixtures/stylesheets/compass/images/flag/vn.png
|
|
1041
|
+
- test/fixtures/stylesheets/compass/images/flag/vu.png
|
|
1042
|
+
- test/fixtures/stylesheets/compass/images/flag/wales.png
|
|
1043
|
+
- test/fixtures/stylesheets/compass/images/flag/wf.png
|
|
1044
|
+
- test/fixtures/stylesheets/compass/images/flag/ws.png
|
|
1045
|
+
- test/fixtures/stylesheets/compass/images/flag/ye.png
|
|
1046
|
+
- test/fixtures/stylesheets/compass/images/flag/yt.png
|
|
1047
|
+
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
1048
|
+
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
1049
|
+
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
1050
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
|
1051
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo.png
|
|
1052
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_active.png
|
|
1053
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png
|
|
1054
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png
|
|
1055
|
+
- test/fixtures/stylesheets/compass/images/flag_states/foo_target.png
|
|
1056
|
+
- test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png
|
|
1057
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
|
1058
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
|
1059
|
+
- test/fixtures/stylesheets/compass/sass/appearance.scss
|
|
1060
|
+
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
|
1061
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
|
1062
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
|
1063
|
+
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
1064
|
+
- test/fixtures/stylesheets/compass/sass/box-sizing.scss
|
|
1065
|
+
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
1066
|
+
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
1067
|
+
- test/fixtures/stylesheets/compass/sass/brightness.scss
|
|
1068
|
+
- test/fixtures/stylesheets/compass/sass/browser-support.scss
|
|
1069
|
+
- test/fixtures/stylesheets/compass/sass/color.scss
|
|
1070
|
+
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
1071
|
+
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
1072
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
1073
|
+
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
1074
|
+
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
1075
|
+
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
1076
|
+
- test/fixtures/stylesheets/compass/sass/grid_background.scss
|
|
1077
|
+
- test/fixtures/stylesheets/compass/sass/hyphenation.scss
|
|
1078
|
+
- test/fixtures/stylesheets/compass/sass/image_size.sass
|
|
1079
|
+
- test/fixtures/stylesheets/compass/sass/images.scss
|
|
1080
|
+
- test/fixtures/stylesheets/compass/sass/layout.sass
|
|
1081
|
+
- test/fixtures/stylesheets/compass/sass/legacy_clearfix.scss
|
|
1082
|
+
- test/fixtures/stylesheets/compass/sass/lists.scss
|
|
1083
|
+
- test/fixtures/stylesheets/compass/sass/opacity.scss
|
|
1084
|
+
- test/fixtures/stylesheets/compass/sass/print.sass
|
|
1085
|
+
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
1086
|
+
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
1087
|
+
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
1088
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
1089
|
+
- test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss
|
|
1090
|
+
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
1091
|
+
- test/fixtures/stylesheets/compass/sass/support.scss
|
|
1092
|
+
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
1093
|
+
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
1094
|
+
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
1095
|
+
- test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss
|
|
1096
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
1097
|
+
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
1098
|
+
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
1099
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
1100
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss
|
|
1101
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss
|
|
1102
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss
|
|
1103
|
+
- test/fixtures/stylesheets/envtest/config.rb
|
|
1104
|
+
- test/fixtures/stylesheets/envtest/css/env.css
|
|
1105
|
+
- test/fixtures/stylesheets/envtest/sass/env.scss
|
|
1106
|
+
- test/fixtures/stylesheets/error/config.rb
|
|
1107
|
+
- test/fixtures/stylesheets/error/sass/screen.sass
|
|
1108
|
+
- test/fixtures/stylesheets/image_urls/config.rb
|
|
1109
|
+
- test/fixtures/stylesheets/image_urls/css/screen.css
|
|
1110
|
+
- test/fixtures/stylesheets/image_urls/images/grid.png
|
|
1111
|
+
- test/fixtures/stylesheets/image_urls/sass/screen.sass
|
|
1112
|
+
- test/fixtures/stylesheets/relative/assets/images/testing.png
|
|
1113
|
+
- test/fixtures/stylesheets/relative/config.rb
|
|
1114
|
+
- test/fixtures/stylesheets/relative/css/ie.css
|
|
1115
|
+
- test/fixtures/stylesheets/relative/css/print.css
|
|
1116
|
+
- test/fixtures/stylesheets/relative/css/screen.css
|
|
1117
|
+
- test/fixtures/stylesheets/relative/sass/ie.sass
|
|
1118
|
+
- test/fixtures/stylesheets/relative/sass/print.sass
|
|
1119
|
+
- test/fixtures/stylesheets/relative/sass/screen.sass
|
|
1120
|
+
- test/fixtures/stylesheets/sourcemaps/config.rb
|
|
1121
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css
|
|
1122
|
+
- test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
|
|
1123
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css
|
|
1124
|
+
- test/fixtures/stylesheets/sourcemaps/css/simple.css.map
|
|
1125
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
|
|
1126
|
+
- test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
|
|
1127
|
+
- test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
|
|
1128
|
+
- test/fixtures/stylesheets/sourcemaps/sass/simple.sass
|
|
1129
|
+
- test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
|
|
1130
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
|
|
1131
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
|
|
1132
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
|
|
1133
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
|
|
1134
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
|
|
1135
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
1136
|
+
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
1137
|
+
- test/fixtures/stylesheets/valid/config.rb
|
|
1138
|
+
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
|
1139
|
+
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
1140
|
+
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
|
1141
|
+
- test/fixtures/stylesheets/with_sass_globbing/css/screen.css
|
|
1142
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss
|
|
1143
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss
|
|
1144
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss
|
|
1145
|
+
- test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss
|
|
1146
|
+
- test/helpers/command_line.rb
|
|
1147
|
+
- test/helpers/diff.rb
|
|
1148
|
+
- test/helpers/io.rb
|
|
1149
|
+
- test/helpers/rails.rb
|
|
1150
|
+
- test/helpers/test_case.rb
|
|
1151
|
+
- test/integrations/compass_test.rb
|
|
1152
|
+
- test/integrations/sprites_test.rb
|
|
1153
|
+
- test/test_helper.rb
|
|
1154
|
+
- test/units/actions_test.rb
|
|
1155
|
+
- test/units/caniuse_test.rb
|
|
1156
|
+
- test/units/command_line_test.rb
|
|
1157
|
+
- test/units/compass_util_test.rb
|
|
1158
|
+
- test/units/compiler_test.rb
|
|
1159
|
+
- test/units/configuration_test.rb
|
|
1160
|
+
- test/units/regressions_test.rb
|
|
1161
|
+
- test/units/sass_extensions_test.rb
|
|
1162
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
1163
|
+
- test/units/sprites/engine_test.rb
|
|
1164
|
+
- test/units/sprites/image_row_test.rb
|
|
1165
|
+
- test/units/sprites/image_test.rb
|
|
1166
|
+
- test/units/sprites/images_test.rb
|
|
1167
|
+
- test/units/sprites/importer_test.rb
|
|
1168
|
+
- test/units/sprites/layout_test.rb
|
|
1169
|
+
- test/units/sprites/row_fitter_test.rb
|
|
1170
|
+
- test/units/sprites/sprite_command_test.rb
|
|
1171
|
+
- test/units/sprites/sprite_map_test.rb
|
|
1172
|
+
- features/command_line.feature
|
|
1173
|
+
- features/extensions.feature
|
|
1174
|
+
- features/step_definitions/command_line_steps.rb
|
|
1175
|
+
- features/step_definitions/extension_steps.rb
|