compass-edge 0.9.1
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.
- data/CHANGELOG.markdown +528 -0
- data/LICENSE.markdown +29 -0
- data/README.markdown +46 -0
- data/REVISION +1 -0
- data/Rakefile +131 -0
- data/VERSION.yml +4 -0
- data/bin/compass +26 -0
- data/deps.rip +1 -0
- data/examples/README.markdown +4 -0
- data/examples/blueprint_default/config.rb +7 -0
- data/examples/blueprint_default/images/grid.png +0 -0
- data/examples/blueprint_default/index.html.haml +85 -0
- data/examples/blueprint_default/parts/elements.html.haml +282 -0
- data/examples/blueprint_default/parts/forms.html.haml +190 -0
- data/examples/blueprint_default/parts/grid.html.haml +274 -0
- data/examples/blueprint_default/parts/test-small.jpg +0 -0
- data/examples/blueprint_default/parts/test.jpg +0 -0
- data/examples/blueprint_default/parts/valid.png +0 -0
- data/examples/blueprint_default/src/ie.sass +3 -0
- data/examples/blueprint_default/src/images/grid.png +0 -0
- data/examples/blueprint_default/src/print.sass +3 -0
- data/examples/blueprint_default/src/screen.sass +8 -0
- data/examples/blueprint_plugins/config.rb +8 -0
- data/examples/blueprint_plugins/images/buttons/cross.png +0 -0
- data/examples/blueprint_plugins/images/buttons/key.png +0 -0
- data/examples/blueprint_plugins/images/buttons/tick.png +0 -0
- data/examples/blueprint_plugins/images/grid.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/doc.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/email.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/external.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/feed.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/im.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/pdf.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/visited.png +0 -0
- data/examples/blueprint_plugins/images/link_icons/xls.png +0 -0
- data/examples/blueprint_plugins/images/test-small.jpg +0 -0
- data/examples/blueprint_plugins/images/test.jpg +0 -0
- data/examples/blueprint_plugins/images/valid.png +0 -0
- data/examples/blueprint_plugins/index.html.haml +96 -0
- data/examples/blueprint_plugins/plugins/buttons.html.haml +67 -0
- data/examples/blueprint_plugins/plugins/fancy_type.html.haml +100 -0
- data/examples/blueprint_plugins/plugins/link_icons.html.haml +61 -0
- data/examples/blueprint_plugins/plugins/rtl.html.haml +100 -0
- data/examples/blueprint_plugins/src/buttons.sass +49 -0
- data/examples/blueprint_plugins/src/ie.sass +3 -0
- data/examples/blueprint_plugins/src/images/grid.png +0 -0
- data/examples/blueprint_plugins/src/link_icons.sass +13 -0
- data/examples/blueprint_plugins/src/print.sass +3 -0
- data/examples/blueprint_plugins/src/rtl_screen.sass +13 -0
- data/examples/blueprint_plugins/src/screen.sass +11 -0
- data/examples/blueprint_scoped/images/grid.png +0 -0
- data/examples/blueprint_scoped/src/ie.sass +4 -0
- data/examples/blueprint_scoped/src/print.sass +4 -0
- data/examples/blueprint_scoped/src/screen.sass +5 -0
- data/examples/blueprint_scoped_form/images/grid.png +0 -0
- data/examples/blueprint_scoped_form/src/ie.sass +3 -0
- data/examples/blueprint_scoped_form/src/print.sass +3 -0
- data/examples/blueprint_scoped_form/src/screen.sass +10 -0
- data/examples/blueprint_semantic/config.rb +7 -0
- data/examples/blueprint_semantic/images/grid.png +0 -0
- data/examples/blueprint_semantic/index.html.haml +86 -0
- data/examples/blueprint_semantic/parts/fancy_type.html.haml +100 -0
- data/examples/blueprint_semantic/parts/liquid.html.haml +100 -0
- data/examples/blueprint_semantic/parts/test-small.jpg +0 -0
- data/examples/blueprint_semantic/parts/test.jpg +0 -0
- data/examples/blueprint_semantic/parts/valid.png +0 -0
- data/examples/blueprint_semantic/src/ie.sass +3 -0
- data/examples/blueprint_semantic/src/images/grid.png +0 -0
- data/examples/blueprint_semantic/src/liquid.sass +69 -0
- data/examples/blueprint_semantic/src/print.sass +3 -0
- data/examples/blueprint_semantic/src/screen.sass +70 -0
- data/examples/compass/compass.html.haml +39 -0
- data/examples/compass/config.rb +7 -0
- data/examples/compass/images/blue_arrow.gif +0 -0
- data/examples/compass/src/compass.sass +47 -0
- data/examples/compass/src/images/blue_arrow.gif +0 -0
- data/examples/compass/src/sticky_footer.sass +11 -0
- data/examples/compass/src/utilities.sass +108 -0
- data/examples/compass/sticky_footer.html.haml +14 -0
- data/examples/compass/utilities.html.haml +189 -0
- data/examples/downloader.rb +57 -0
- data/examples/logo/logo.html.haml +40 -0
- data/examples/logo/src/ie.sass +6 -0
- data/examples/logo/src/print.sass +6 -0
- data/examples/logo/src/screen.sass +29 -0
- data/examples/ninesixty/bootstrap.rb +4 -0
- data/examples/ninesixty/config.rb +9 -0
- data/examples/ninesixty/extensions/ninesixty/README.mkdn +56 -0
- data/examples/ninesixty/extensions/ninesixty/compass-960-plugin.gemspec +36 -0
- data/examples/ninesixty/extensions/ninesixty/lib/ninesixty.rb +1 -0
- data/examples/ninesixty/extensions/ninesixty/lib/ninesixty/compass_plugin.rb +5 -0
- data/examples/ninesixty/extensions/ninesixty/sass/960/_grid.sass +64 -0
- data/examples/ninesixty/extensions/ninesixty/sass/960/_text.sass +59 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/grid.sass +34 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/manifest.rb +2 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/text.sass +10 -0
- data/examples/ninesixty/src/grid.sass +16 -0
- data/examples/ninesixty/src/text.sass +10 -0
- data/examples/yui/bootstrap.rb +3 -0
- data/examples/yui/divisions.html.haml +179 -0
- data/examples/yui/extensions/yui/stylesheets/_yui.sass +7 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_base.sass +70 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_fonts.sass +45 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_grids.sass +385 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_reset.sass +61 -0
- data/examples/yui/extensions/yui/templates/project/manifest.rb +1 -0
- data/examples/yui/extensions/yui/templates/project/screen.sass +4 -0
- data/examples/yui/index.html.haml +19 -0
- data/examples/yui/src/screen.sass +13 -0
- data/examples/yui/sub_divisions.html.haml +169 -0
- data/examples/yui/templates.html.haml +54 -0
- data/examples/yui/test.jpg +0 -0
- data/examples/yui/typography.html.haml +132 -0
- data/lib/compass.rb +22 -0
- data/lib/compass/actions.rb +116 -0
- data/lib/compass/app_integration.rb +3 -0
- data/lib/compass/app_integration/merb.rb +1 -0
- data/lib/compass/app_integration/merb/runtime.rb +63 -0
- data/lib/compass/app_integration/rails.rb +8 -0
- data/lib/compass/app_integration/rails/action_controller.rb +15 -0
- data/lib/compass/app_integration/rails/configuration_defaults.rb +29 -0
- data/lib/compass/app_integration/rails/installer.rb +127 -0
- data/lib/compass/app_integration/rails/runtime.rb +14 -0
- data/lib/compass/app_integration/rails/sass_plugin.rb +5 -0
- data/lib/compass/app_integration/rails/templates/compass-install-rails.rb +80 -0
- data/lib/compass/app_integration/rails/urls.rb +14 -0
- data/lib/compass/app_integration/stand_alone.rb +3 -0
- data/lib/compass/app_integration/stand_alone/configuration_defaults.rb +24 -0
- data/lib/compass/app_integration/stand_alone/installer.rb +71 -0
- data/lib/compass/commands.rb +11 -0
- data/lib/compass/commands/base.rb +36 -0
- data/lib/compass/commands/create_project.rb +113 -0
- data/lib/compass/commands/generate_grid_background.rb +91 -0
- data/lib/compass/commands/help.rb +62 -0
- data/lib/compass/commands/installer_command.rb +34 -0
- data/lib/compass/commands/list_frameworks.rb +16 -0
- data/lib/compass/commands/print_version.rb +91 -0
- data/lib/compass/commands/project_base.rb +92 -0
- data/lib/compass/commands/registry.rb +22 -0
- data/lib/compass/commands/stamp_pattern.rb +86 -0
- data/lib/compass/commands/update_project.rb +38 -0
- data/lib/compass/commands/validate_project.rb +21 -0
- data/lib/compass/commands/watch_project.rb +69 -0
- data/lib/compass/commands/write_configuration.rb +32 -0
- data/lib/compass/compiler.rb +54 -0
- data/lib/compass/configuration.rb +38 -0
- data/lib/compass/configuration/adapters.rb +59 -0
- data/lib/compass/configuration/comments.rb +22 -0
- data/lib/compass/configuration/data.rb +103 -0
- data/lib/compass/configuration/defaults.rb +107 -0
- data/lib/compass/configuration/helpers.rb +83 -0
- data/lib/compass/configuration/inheritance.rb +170 -0
- data/lib/compass/configuration/serialization.rb +86 -0
- data/lib/compass/core_ext.rb +14 -0
- data/lib/compass/dependencies.rb +6 -0
- data/lib/compass/errors.rb +7 -0
- data/lib/compass/exec.rb +15 -0
- data/lib/compass/exec/command_option_parser.rb +23 -0
- data/lib/compass/exec/global_options_parser.rb +37 -0
- data/lib/compass/exec/helpers.rb +28 -0
- data/lib/compass/exec/project_options_parser.rb +42 -0
- data/lib/compass/exec/sub_command_ui.rb +45 -0
- data/lib/compass/exec/switch_ui.rb +166 -0
- data/lib/compass/frameworks.rb +53 -0
- data/lib/compass/frameworks/blueprint/stylesheets/_blueprint.sass +3 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_ie.sass +99 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_print.sass +90 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_reset.sass +3 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_screen.sass +29 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass +84 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +33 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +9 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +82 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +55 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +178 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +58 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass +44 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +141 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass +56 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass +122 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +47 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +160 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +37 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/buttons.sass +49 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/manifest.rb +5 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons.sass +13 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/manifest.rb +10 -0
- data/lib/compass/frameworks/blueprint/templates/project/grid.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/project/ie.sass +16 -0
- data/lib/compass/frameworks/blueprint/templates/project/manifest.rb +8 -0
- data/lib/compass/frameworks/blueprint/templates/project/partials/_base.sass +11 -0
- data/lib/compass/frameworks/blueprint/templates/project/print.sass +8 -0
- data/lib/compass/frameworks/blueprint/templates/project/screen.sass +47 -0
- data/lib/compass/frameworks/blueprint/templates/project/welcome.html.haml +13 -0
- data/lib/compass/frameworks/compass/stylesheets/_compass.sass +1 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/_layout.sass +1 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/_misc.sass +24 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/_reset.sass +3 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/_utilities.sass +7 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass +19 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_css3.sass +6 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_general.sass +5 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_links.sass +3 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_lists.sass +3 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_print.sass +18 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_sprites.sass +1 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_tables.sass +3 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_text.sass +2 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_border_radius.sass +47 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_box_shadow.sass +12 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_box_sizing.sass +13 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_columns.sass +37 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_inline_block.sass +7 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_opacity.sass +18 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass +24 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_float.sass +17 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_hacks.sass +6 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass +134 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass +0 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +19 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass +5 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass +24 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +7 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass +21 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass +52 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass +29 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite_img.sass +52 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +20 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass +27 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass +9 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.sass +13 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass +3 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass +17 -0
- data/lib/compass/frameworks/compass/templates/ellipsis/ellipsis.sass +6 -0
- data/lib/compass/frameworks/compass/templates/ellipsis/manifest.rb +2 -0
- data/lib/compass/frameworks/compass/templates/ellipsis/xml/ellipsis.xml +14 -0
- data/lib/compass/frameworks/compass/templates/extension/manifest.rb +6 -0
- data/lib/compass/frameworks/compass/templates/extension/stylesheets/main.sass +1 -0
- data/lib/compass/frameworks/compass/templates/extension/templates/project/manifest.rb +2 -0
- data/lib/compass/frameworks/compass/templates/extension/templates/project/screen.sass +2 -0
- data/lib/compass/frameworks/compass/templates/project/ie.sass +6 -0
- data/lib/compass/frameworks/compass/templates/project/manifest.rb +3 -0
- data/lib/compass/frameworks/compass/templates/project/print.sass +6 -0
- data/lib/compass/frameworks/compass/templates/project/screen.sass +13 -0
- data/lib/compass/grid_builder.rb +76 -0
- data/lib/compass/installers.rb +3 -0
- data/lib/compass/installers/base.rb +186 -0
- data/lib/compass/installers/manifest.rb +79 -0
- data/lib/compass/installers/template_context.rb +44 -0
- data/lib/compass/logger.rb +42 -0
- data/lib/compass/sass_extensions.rb +5 -0
- data/lib/compass/sass_extensions/functions.rb +19 -0
- data/lib/compass/sass_extensions/functions/display.rb +22 -0
- data/lib/compass/sass_extensions/functions/enumerate.rb +6 -0
- data/lib/compass/sass_extensions/functions/inline_image.rb +35 -0
- data/lib/compass/sass_extensions/functions/selectors.rb +42 -0
- data/lib/compass/sass_extensions/functions/urls.rb +105 -0
- data/lib/compass/sass_extensions/monkey_patches.rb +3 -0
- data/lib/compass/sass_extensions/monkey_patches/stylesheet_updating.rb +23 -0
- data/lib/compass/test_case.rb +38 -0
- data/lib/compass/validator.rb +10 -0
- data/lib/compass/version.rb +57 -0
- data/lib/vendor/fssm.rb +28 -0
- data/lib/vendor/fssm/backends/fsevents.rb +78 -0
- data/lib/vendor/fssm/backends/polling.rb +24 -0
- data/lib/vendor/fssm/ext.rb +7 -0
- data/lib/vendor/fssm/monitor.rb +21 -0
- data/lib/vendor/fssm/path.rb +88 -0
- data/lib/vendor/fssm/state.rb +46 -0
- data/lib/vendor/fssm/support.rb +26 -0
- data/test/command_line_helper.rb +97 -0
- data/test/command_line_test.rb +67 -0
- data/test/compass_test.rb +132 -0
- data/test/configuration_test.rb +123 -0
- data/test/fixtures/stylesheets/blueprint/config.rb +9 -0
- data/test/fixtures/stylesheets/blueprint/css/typography.css +158 -0
- data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
- data/test/fixtures/stylesheets/blueprint/sass/ie.sass +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/print.sass +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +17 -0
- data/test/fixtures/stylesheets/blueprint/sass/typography.sass +3 -0
- data/test/fixtures/stylesheets/compass/config.rb +9 -0
- data/test/fixtures/stylesheets/compass/css/layout.css +15 -0
- data/test/fixtures/stylesheets/compass/css/print.css +18 -0
- data/test/fixtures/stylesheets/compass/css/reset.css +60 -0
- data/test/fixtures/stylesheets/compass/css/utilities.css +17 -0
- data/test/fixtures/stylesheets/compass/sass/layout.sass +3 -0
- data/test/fixtures/stylesheets/compass/sass/print.sass +5 -0
- data/test/fixtures/stylesheets/compass/sass/reset.sass +10 -0
- data/test/fixtures/stylesheets/compass/sass/utilities.sass +6 -0
- data/test/fixtures/stylesheets/image_urls/config.rb +17 -0
- data/test/fixtures/stylesheets/image_urls/css/screen.css +3 -0
- data/test/fixtures/stylesheets/image_urls/images/grid.png +0 -0
- data/test/fixtures/stylesheets/image_urls/sass/screen.sass +6 -0
- data/test/io_helper.rb +19 -0
- data/test/rails_integration_test.rb +84 -0
- data/test/sass_extensions_test.rb +31 -0
- data/test/test_case_helper.rb +13 -0
- data/test/test_helper.rb +27 -0
- data/test/test_rails_helper.rb +20 -0
- metadata +404 -0
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@import blueprint/screen
|
|
2
|
+
@import compass/reset
|
|
3
|
+
|
|
4
|
+
+blueprint
|
|
5
|
+
#main.container
|
|
6
|
+
#top
|
|
7
|
+
+column(24, true)
|
|
8
|
+
#middle
|
|
9
|
+
+column(24, true)
|
|
10
|
+
#left
|
|
11
|
+
+column(6)
|
|
12
|
+
#content
|
|
13
|
+
+column(12)
|
|
14
|
+
#right
|
|
15
|
+
+column(6, true)
|
|
16
|
+
#bottom
|
|
17
|
+
+column(24, true)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Require any additional compass plugins here.
|
|
2
|
+
project_type = :stand_alone
|
|
3
|
+
css_dir = "tmp"
|
|
4
|
+
sass_dir = "sass"
|
|
5
|
+
images_dir = "images"
|
|
6
|
+
output_style = :nested
|
|
7
|
+
# To enable relative image paths using the images_url() function:
|
|
8
|
+
# http_images_path = :relative
|
|
9
|
+
http_images_path = "/images"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
html, body {
|
|
2
|
+
height: 100%; }
|
|
3
|
+
|
|
4
|
+
#layout {
|
|
5
|
+
min-height: 100%;
|
|
6
|
+
height: auto !important;
|
|
7
|
+
height: 100%;
|
|
8
|
+
margin-bottom: -72px; }
|
|
9
|
+
#layout #layout_footer {
|
|
10
|
+
height: 72px; }
|
|
11
|
+
|
|
12
|
+
#footer {
|
|
13
|
+
clear: both;
|
|
14
|
+
position: relative;
|
|
15
|
+
height: 72px; }
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.noprint,
|
|
2
|
+
.no-print {
|
|
3
|
+
display: none; }
|
|
4
|
+
|
|
5
|
+
address.print-only, blockquote.print-only, center.print-only, dir.print-only, div.print-only, dd.print-only, dl.print-only, dt.print-only,
|
|
6
|
+
fieldset.print-only, form.print-only, frameset.print-only, h1.print-only, h2.print-only, h3.print-only, h4.print-only, h5.print-only, h6.print-only, hr.print-only,
|
|
7
|
+
isindex.print-only, li.print-only, menu.print-only, noframes.print-only, noscript.print-only, ol.print-only, p.print-only, pre.print-only,
|
|
8
|
+
table.print-only, tbody.print-only, td.print-only, tfoot.print-only, th.print-only, thead.print-only, tr.print-only, ul.print-only {
|
|
9
|
+
display: block; }
|
|
10
|
+
|
|
11
|
+
a.print-only, abbr.print-only, acronym.print-only, b.print-only, basefont.print-only, bdo.print-only, big.print-only, br.print-only, cite.print-only,
|
|
12
|
+
code.print-only, dfn.print-only, em.print-only, font.print-only, i.print-only, img.print-only, input.print-only, kbd.print-only, label.print-only, q.print-only, s.print-only,
|
|
13
|
+
samp.print-only, select.print-only, small.print-only, span.print-only, strike.print-only, strong.print-only, sub.print-only, sup.print-only,
|
|
14
|
+
textarea.print-only, tt.print-only, u.print-only, var.print-only {
|
|
15
|
+
display: inline; }
|
|
16
|
+
|
|
17
|
+
.print-only {
|
|
18
|
+
display: none; }
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
html, body, div, span, applet, object, iframe,
|
|
2
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
3
|
+
a, abbr, acronym, address, big, cite, code,
|
|
4
|
+
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
|
5
|
+
small, strike, strong, sub, sup, tt, var,
|
|
6
|
+
dl, dt, dd, ol, ul, li,
|
|
7
|
+
fieldset, form, label, legend,
|
|
8
|
+
table, caption, tbody, tfoot, thead, tr, th, td {
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
border: 0;
|
|
12
|
+
outline: 0;
|
|
13
|
+
font-weight: inherit;
|
|
14
|
+
font-style: inherit;
|
|
15
|
+
font-size: 100%;
|
|
16
|
+
font-family: inherit;
|
|
17
|
+
vertical-align: baseline; }
|
|
18
|
+
|
|
19
|
+
*:focus {
|
|
20
|
+
outline: 0; }
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
line-height: 1em;
|
|
24
|
+
color: #000;
|
|
25
|
+
background: #fff; }
|
|
26
|
+
|
|
27
|
+
ol, ul {
|
|
28
|
+
list-style: none; }
|
|
29
|
+
|
|
30
|
+
/* tables still need 'cellspacing="0"' in the markup */
|
|
31
|
+
table {
|
|
32
|
+
border-collapse: separate;
|
|
33
|
+
border-spacing: 0;
|
|
34
|
+
vertical-align: middle; }
|
|
35
|
+
|
|
36
|
+
caption, th, td {
|
|
37
|
+
text-align: left;
|
|
38
|
+
font-weight: normal;
|
|
39
|
+
vertical-align: middle; }
|
|
40
|
+
|
|
41
|
+
q, blockquote {
|
|
42
|
+
quotes: "" ""; }
|
|
43
|
+
q:before, q:after, blockquote:before, blockquote:after {
|
|
44
|
+
content: ""; }
|
|
45
|
+
|
|
46
|
+
img a {
|
|
47
|
+
border: none; }
|
|
48
|
+
|
|
49
|
+
.unregistered-only, .registered-only {
|
|
50
|
+
display: none; }
|
|
51
|
+
|
|
52
|
+
body.registered a.registered-only, body.registered abbr.registered-only, body.registered acronym.registered-only, body.registered b.registered-only, body.registered basefont.registered-only, body.registered bdo.registered-only, body.registered big.registered-only, body.registered br.registered-only, body.registered cite.registered-only, body.registered code.registered-only, body.registered dfn.registered-only, body.registered em.registered-only, body.registered font.registered-only, body.registered i.registered-only, body.registered img.registered-only, body.registered input.registered-only, body.registered kbd.registered-only, body.registered label.registered-only, body.registered q.registered-only, body.registered s.registered-only, body.registered samp.registered-only, body.registered select.registered-only, body.registered small.registered-only, body.registered span.registered-only, body.registered strike.registered-only, body.registered strong.registered-only, body.registered sub.registered-only, body.registered sup.registered-only, body.registered textarea.registered-only, body.registered tt.registered-only, body.registered u.registered-only, body.registered var.registered-only {
|
|
53
|
+
display: inline; }
|
|
54
|
+
body.registered address.registered-only, body.registered blockquote.registered-only, body.registered center.registered-only, body.registered dir.registered-only, body.registered div.registered-only, body.registered dd.registered-only, body.registered dl.registered-only, body.registered dt.registered-only, body.registered fieldset.registered-only, body.registered form.registered-only, body.registered frameset.registered-only, body.registered h1.registered-only, body.registered h2.registered-only, body.registered h3.registered-only, body.registered h4.registered-only, body.registered h5.registered-only, body.registered h6.registered-only, body.registered hr.registered-only, body.registered isindex.registered-only, body.registered menu.registered-only, body.registered noframes.registered-only, body.registered noscript.registered-only, body.registered ol.registered-only, body.registered p.registered-only, body.registered pre.registered-only, body.registered ul.registered-only {
|
|
55
|
+
display: block; }
|
|
56
|
+
|
|
57
|
+
body.unregistered a.unregistered-only, body.unregistered abbr.unregistered-only, body.unregistered acronym.unregistered-only, body.unregistered b.unregistered-only, body.unregistered basefont.unregistered-only, body.unregistered bdo.unregistered-only, body.unregistered big.unregistered-only, body.unregistered br.unregistered-only, body.unregistered cite.unregistered-only, body.unregistered code.unregistered-only, body.unregistered dfn.unregistered-only, body.unregistered em.unregistered-only, body.unregistered font.unregistered-only, body.unregistered i.unregistered-only, body.unregistered img.unregistered-only, body.unregistered input.unregistered-only, body.unregistered kbd.unregistered-only, body.unregistered label.unregistered-only, body.unregistered q.unregistered-only, body.unregistered s.unregistered-only, body.unregistered samp.unregistered-only, body.unregistered select.unregistered-only, body.unregistered small.unregistered-only, body.unregistered span.unregistered-only, body.unregistered strike.unregistered-only, body.unregistered strong.unregistered-only, body.unregistered sub.unregistered-only, body.unregistered sup.unregistered-only, body.unregistered textarea.unregistered-only, body.unregistered tt.unregistered-only, body.unregistered u.unregistered-only, body.unregistered var.unregistered-only {
|
|
58
|
+
display: inline; }
|
|
59
|
+
body.unregistered address.unregistered-only, body.unregistered blockquote.unregistered-only, body.unregistered center.unregistered-only, body.unregistered dir.unregistered-only, body.unregistered div.unregistered-only, body.unregistered dd.unregistered-only, body.unregistered dl.unregistered-only, body.unregistered dt.unregistered-only, body.unregistered fieldset.unregistered-only, body.unregistered form.unregistered-only, body.unregistered frameset.unregistered-only, body.unregistered h1.unregistered-only, body.unregistered h2.unregistered-only, body.unregistered h3.unregistered-only, body.unregistered h4.unregistered-only, body.unregistered h5.unregistered-only, body.unregistered h6.unregistered-only, body.unregistered hr.unregistered-only, body.unregistered isindex.unregistered-only, body.unregistered menu.unregistered-only, body.unregistered noframes.unregistered-only, body.unregistered noscript.unregistered-only, body.unregistered ol.unregistered-only, body.unregistered p.unregistered-only, body.unregistered pre.unregistered-only, body.unregistered ul.unregistered-only {
|
|
60
|
+
display: block; }
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.clearfix {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
display: inline-block; }
|
|
4
|
+
.clearfix {
|
|
5
|
+
display: block; }
|
|
6
|
+
|
|
7
|
+
.pie-clearfix {
|
|
8
|
+
display: inline-block; }
|
|
9
|
+
.pie-clearfix:after {
|
|
10
|
+
content: " ";
|
|
11
|
+
display: block;
|
|
12
|
+
height: 0;
|
|
13
|
+
clear: both;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
visibility: hidden; }
|
|
16
|
+
.pie-clearfix {
|
|
17
|
+
display: block; }
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@import compass/reset.sass
|
|
2
|
+
|
|
3
|
+
// Turn off the display for both of these classes
|
|
4
|
+
.unregistered-only, .registered-only
|
|
5
|
+
:display none
|
|
6
|
+
// Now turn only one of them back on depending on some other context.
|
|
7
|
+
body.registered
|
|
8
|
+
+reset-display(".registered-only")
|
|
9
|
+
body.unregistered
|
|
10
|
+
+reset-display(".unregistered-only")
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Require any additional compass plugins here.
|
|
2
|
+
project_type = :stand_alone
|
|
3
|
+
css_dir = "tmp"
|
|
4
|
+
sass_dir = "sass"
|
|
5
|
+
images_dir = "images"
|
|
6
|
+
output_style = :compact
|
|
7
|
+
# To enable relative image paths using the images_url() function:
|
|
8
|
+
# http_images_path = :relative
|
|
9
|
+
http_images_path = "/images"
|
|
10
|
+
|
|
11
|
+
asset_cache_buster do |path, file|
|
|
12
|
+
"busted=true"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
asset_host do |path|
|
|
16
|
+
"http://assets%d.example.com" % (path.hash % 4)
|
|
17
|
+
end
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.showgrid { background-image: url('http://assets2.example.com/images/grid.png?busted=true'); }
|
|
2
|
+
|
|
3
|
+
.inlinegrid { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUEAYAAACv1qP4AAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAZ0lEQVRYw+3QwQ2AIBAFUTEUwI3+uzN7gDscsIgxEuO8An52J11X73OudfxMraXkzHfO3Y98nQEhA0IGhAwIGRAyIGRAyICQASEDQgaEDAgZEDIgZEDIgJABoZzSGK3tPuN9ERFP7Nw4fg+c5g8V1wAAAABJRU5ErkJggg=='); }
|
|
Binary file
|
data/test/io_helper.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
module Compass
|
|
2
|
+
module IoHelper
|
|
3
|
+
def capture_output
|
|
4
|
+
real_stdout, $stdout = $stdout, StringIO.new
|
|
5
|
+
yield
|
|
6
|
+
$stdout.string
|
|
7
|
+
ensure
|
|
8
|
+
$stdout = real_stdout
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def capture_warning
|
|
12
|
+
real_stderr, $stderr = $stderr, StringIO.new
|
|
13
|
+
yield
|
|
14
|
+
$stderr.string
|
|
15
|
+
ensure
|
|
16
|
+
$stderr = real_stderr
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__),'test_helper')
|
|
2
|
+
require 'fileutils'
|
|
3
|
+
require 'compass'
|
|
4
|
+
require 'compass/exec'
|
|
5
|
+
require 'timeout'
|
|
6
|
+
|
|
7
|
+
class RailsIntegrationTest < Test::Unit::TestCase
|
|
8
|
+
include Compass::TestCaseHelper
|
|
9
|
+
include Compass::CommandLineHelper
|
|
10
|
+
include Compass::IoHelper
|
|
11
|
+
|
|
12
|
+
def setup
|
|
13
|
+
Compass.reset_configuration!
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def test_rails_install
|
|
17
|
+
within_tmp_directory do
|
|
18
|
+
generate_rails_app_directories("compass_rails")
|
|
19
|
+
Dir.chdir "compass_rails" do
|
|
20
|
+
compass("--rails", '--trace', ".") do |responder|
|
|
21
|
+
responder.respond_to "Is this OK? (Y/n)", :with => "Y", :required => true
|
|
22
|
+
responder.respond_to "Emit compiled stylesheets to public/stylesheets/compiled/? (Y/n)", :with => "Y", :required => true
|
|
23
|
+
end
|
|
24
|
+
# puts ">>>#{@last_result}<<<"
|
|
25
|
+
assert_action_performed :create, "./app/stylesheets/screen.sass"
|
|
26
|
+
assert_action_performed :create, "./config/initializers/compass.rb"
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
rescue LoadError
|
|
30
|
+
puts "Skipping rails test. Couldn't Load rails"
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def test_rails_install_with_no_dialog
|
|
34
|
+
within_tmp_directory do
|
|
35
|
+
generate_rails_app_directories("compass_rails")
|
|
36
|
+
Dir.chdir "compass_rails" do
|
|
37
|
+
compass(*%w(--rails --trace --sass-dir app/stylesheets --css-dir public/stylesheets/compiled .))
|
|
38
|
+
assert_action_performed :create, "./app/stylesheets/screen.sass"
|
|
39
|
+
assert_action_performed :create, "./config/initializers/compass.rb"
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
rescue LoadError
|
|
43
|
+
puts "Skipping rails test. Couldn't Load rails"
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def generate_rails_app_directories(name)
|
|
48
|
+
Dir.mkdir name
|
|
49
|
+
Dir.mkdir File.join(name, "config")
|
|
50
|
+
Dir.mkdir File.join(name, "config", "initializers")
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Generate a rails application without polluting our current set of requires
|
|
54
|
+
# with the rails libraries. This will allow testing against multiple versions of rails
|
|
55
|
+
# by manipulating the load path.
|
|
56
|
+
def generate_rails_app(name)
|
|
57
|
+
if pid = fork
|
|
58
|
+
Process.wait(pid)
|
|
59
|
+
if $?.exitstatus == 2
|
|
60
|
+
raise LoadError, "Couldn't load rails"
|
|
61
|
+
elsif $?.exitstatus != 0
|
|
62
|
+
raise "Failed to generate rails application."
|
|
63
|
+
end
|
|
64
|
+
else
|
|
65
|
+
begin
|
|
66
|
+
require 'rails/version'
|
|
67
|
+
require 'rails_generator'
|
|
68
|
+
require 'rails_generator/scripts/generate'
|
|
69
|
+
Rails::Generator::Base.use_application_sources!
|
|
70
|
+
capture_output do
|
|
71
|
+
Rails::Generator::Base.logger = Rails::Generator::SimpleLogger.new $stdout
|
|
72
|
+
Rails::Generator::Scripts::Generate.new.run([name], :generator => 'app')
|
|
73
|
+
end
|
|
74
|
+
rescue LoadError
|
|
75
|
+
Kernel.exit(2)
|
|
76
|
+
rescue => e
|
|
77
|
+
$stderr.puts e
|
|
78
|
+
Kernel.exit!(1)
|
|
79
|
+
end
|
|
80
|
+
Kernel.exit!(0)
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
require File.dirname(__FILE__)+'/test_helper'
|
|
2
|
+
|
|
3
|
+
class SassExtensionsTest < Test::Unit::TestCase
|
|
4
|
+
def test_simple
|
|
5
|
+
assert_equal "a b", nest("a", "b")
|
|
6
|
+
end
|
|
7
|
+
def test_left_side_expansion
|
|
8
|
+
assert_equal "a c, b c", nest("a, b", "c")
|
|
9
|
+
end
|
|
10
|
+
def test_right_side_expansion
|
|
11
|
+
assert_equal "a b, a c", nest("a", "b, c")
|
|
12
|
+
end
|
|
13
|
+
def test_both_sides_expansion
|
|
14
|
+
assert_equal "a c, a d, b c, b d", nest("a, b", "c, d")
|
|
15
|
+
end
|
|
16
|
+
def test_three_selectors_expansion
|
|
17
|
+
assert_equal "a b, a c, a d", nest("a", "b, c, d")
|
|
18
|
+
end
|
|
19
|
+
def test_third_argument_expansion
|
|
20
|
+
assert_equal "a b e, a b f, a c e, a c f, a d e, a d f", nest("a", "b, c, d", "e, f")
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
protected
|
|
24
|
+
def evaluation_content(options)
|
|
25
|
+
Sass::Script::Functions::EvaluationContext.new(options)
|
|
26
|
+
end
|
|
27
|
+
def nest(*arguments)
|
|
28
|
+
options = arguments.last.is_a?(Hash) ? arguments.pop : Hash.new
|
|
29
|
+
evaluation_content(options).nest(*arguments.map{|a| Sass::Script::String.new(a)}).to_s
|
|
30
|
+
end
|
|
31
|
+
end
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
need_gems = false
|
|
2
|
+
|
|
3
|
+
lib_dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
4
|
+
$:.unshift(lib_dir) unless $:.include?(lib_dir)
|
|
5
|
+
test_dir = File.dirname(__FILE__)
|
|
6
|
+
$:.unshift(test_dir) unless $:.include?(test_dir)
|
|
7
|
+
|
|
8
|
+
# allows testing with edge Haml by creating a test/haml symlink
|
|
9
|
+
linked_haml = File.dirname(__FILE__) + '/haml'
|
|
10
|
+
|
|
11
|
+
if File.exists?(linked_haml) && !$:.include?(linked_haml + '/lib')
|
|
12
|
+
puts "[ using linked Haml ]"
|
|
13
|
+
$:.unshift linked_haml + '/lib'
|
|
14
|
+
require 'sass'
|
|
15
|
+
else
|
|
16
|
+
need_gems = true
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
require 'rubygems' if need_gems
|
|
20
|
+
|
|
21
|
+
require 'compass'
|
|
22
|
+
|
|
23
|
+
require 'test/unit'
|
|
24
|
+
|
|
25
|
+
require 'test_case_helper'
|
|
26
|
+
require 'io_helper'
|
|
27
|
+
require 'command_line_helper'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# XXX This file isn't in use at the moment, but will be used to help test
|
|
2
|
+
# XXX deep rails integration of compass features.
|
|
3
|
+
need_gems = false
|
|
4
|
+
|
|
5
|
+
# allows testing with edge Rails by creating a test/rails symlink
|
|
6
|
+
RAILS_ROOT = linked_rails = File.dirname(__FILE__) + '/rails'
|
|
7
|
+
RAILS_ENV = 'test'
|
|
8
|
+
|
|
9
|
+
if File.exists?(linked_rails) && !$:.include?(linked_rails + '/activesupport/lib')
|
|
10
|
+
puts "[ using linked Rails ]"
|
|
11
|
+
$:.unshift linked_rails + '/activesupport/lib'
|
|
12
|
+
$:.unshift linked_rails + '/actionpack/lib'
|
|
13
|
+
else
|
|
14
|
+
need_gems = true
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
require 'rubygems' if need_gems
|
|
18
|
+
|
|
19
|
+
require 'action_controller'
|
|
20
|
+
require 'action_view'
|
metadata
ADDED
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: compass-edge
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.9.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chris Eppstein
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-10-23 00:00:00 -07:00
|
|
13
|
+
default_executable: compass
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: haml
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 2.2.0
|
|
24
|
+
version:
|
|
25
|
+
description: This is the edge version of compass. It's probably broken. Use it to help test the next version of compass.
|
|
26
|
+
email: chris@eppsteins.net
|
|
27
|
+
executables:
|
|
28
|
+
- compass
|
|
29
|
+
extensions: []
|
|
30
|
+
|
|
31
|
+
extra_rdoc_files:
|
|
32
|
+
- LICENSE.markdown
|
|
33
|
+
- README.markdown
|
|
34
|
+
files:
|
|
35
|
+
- CHANGELOG.markdown
|
|
36
|
+
- LICENSE.markdown
|
|
37
|
+
- README.markdown
|
|
38
|
+
- REVISION
|
|
39
|
+
- Rakefile
|
|
40
|
+
- VERSION.yml
|
|
41
|
+
- bin/compass
|
|
42
|
+
- deps.rip
|
|
43
|
+
- examples/README.markdown
|
|
44
|
+
- examples/blueprint_default/config.rb
|
|
45
|
+
- examples/blueprint_default/images/grid.png
|
|
46
|
+
- examples/blueprint_default/index.html.haml
|
|
47
|
+
- examples/blueprint_default/parts/elements.html.haml
|
|
48
|
+
- examples/blueprint_default/parts/forms.html.haml
|
|
49
|
+
- examples/blueprint_default/parts/grid.html.haml
|
|
50
|
+
- examples/blueprint_default/parts/test-small.jpg
|
|
51
|
+
- examples/blueprint_default/parts/test.jpg
|
|
52
|
+
- examples/blueprint_default/parts/valid.png
|
|
53
|
+
- examples/blueprint_default/src/ie.sass
|
|
54
|
+
- examples/blueprint_default/src/images/grid.png
|
|
55
|
+
- examples/blueprint_default/src/print.sass
|
|
56
|
+
- examples/blueprint_default/src/screen.sass
|
|
57
|
+
- examples/blueprint_plugins/config.rb
|
|
58
|
+
- examples/blueprint_plugins/images/buttons/cross.png
|
|
59
|
+
- examples/blueprint_plugins/images/buttons/key.png
|
|
60
|
+
- examples/blueprint_plugins/images/buttons/tick.png
|
|
61
|
+
- examples/blueprint_plugins/images/grid.png
|
|
62
|
+
- examples/blueprint_plugins/images/link_icons/doc.png
|
|
63
|
+
- examples/blueprint_plugins/images/link_icons/email.png
|
|
64
|
+
- examples/blueprint_plugins/images/link_icons/external.png
|
|
65
|
+
- examples/blueprint_plugins/images/link_icons/feed.png
|
|
66
|
+
- examples/blueprint_plugins/images/link_icons/im.png
|
|
67
|
+
- examples/blueprint_plugins/images/link_icons/pdf.png
|
|
68
|
+
- examples/blueprint_plugins/images/link_icons/visited.png
|
|
69
|
+
- examples/blueprint_plugins/images/link_icons/xls.png
|
|
70
|
+
- examples/blueprint_plugins/images/test-small.jpg
|
|
71
|
+
- examples/blueprint_plugins/images/test.jpg
|
|
72
|
+
- examples/blueprint_plugins/images/valid.png
|
|
73
|
+
- examples/blueprint_plugins/index.html.haml
|
|
74
|
+
- examples/blueprint_plugins/plugins/buttons.html.haml
|
|
75
|
+
- examples/blueprint_plugins/plugins/fancy_type.html.haml
|
|
76
|
+
- examples/blueprint_plugins/plugins/link_icons.html.haml
|
|
77
|
+
- examples/blueprint_plugins/plugins/rtl.html.haml
|
|
78
|
+
- examples/blueprint_plugins/src/buttons.sass
|
|
79
|
+
- examples/blueprint_plugins/src/ie.sass
|
|
80
|
+
- examples/blueprint_plugins/src/images/grid.png
|
|
81
|
+
- examples/blueprint_plugins/src/link_icons.sass
|
|
82
|
+
- examples/blueprint_plugins/src/print.sass
|
|
83
|
+
- examples/blueprint_plugins/src/rtl_screen.sass
|
|
84
|
+
- examples/blueprint_plugins/src/screen.sass
|
|
85
|
+
- examples/blueprint_scoped/images/grid.png
|
|
86
|
+
- examples/blueprint_scoped/src/ie.sass
|
|
87
|
+
- examples/blueprint_scoped/src/print.sass
|
|
88
|
+
- examples/blueprint_scoped/src/screen.sass
|
|
89
|
+
- examples/blueprint_scoped_form/images/grid.png
|
|
90
|
+
- examples/blueprint_scoped_form/src/ie.sass
|
|
91
|
+
- examples/blueprint_scoped_form/src/print.sass
|
|
92
|
+
- examples/blueprint_scoped_form/src/screen.sass
|
|
93
|
+
- examples/blueprint_semantic/config.rb
|
|
94
|
+
- examples/blueprint_semantic/images/grid.png
|
|
95
|
+
- examples/blueprint_semantic/index.html.haml
|
|
96
|
+
- examples/blueprint_semantic/parts/fancy_type.html.haml
|
|
97
|
+
- examples/blueprint_semantic/parts/liquid.html.haml
|
|
98
|
+
- examples/blueprint_semantic/parts/test-small.jpg
|
|
99
|
+
- examples/blueprint_semantic/parts/test.jpg
|
|
100
|
+
- examples/blueprint_semantic/parts/valid.png
|
|
101
|
+
- examples/blueprint_semantic/src/ie.sass
|
|
102
|
+
- examples/blueprint_semantic/src/images/grid.png
|
|
103
|
+
- examples/blueprint_semantic/src/liquid.sass
|
|
104
|
+
- examples/blueprint_semantic/src/print.sass
|
|
105
|
+
- examples/blueprint_semantic/src/screen.sass
|
|
106
|
+
- examples/compass/compass.html.haml
|
|
107
|
+
- examples/compass/config.rb
|
|
108
|
+
- examples/compass/images/blue_arrow.gif
|
|
109
|
+
- examples/compass/src/compass.sass
|
|
110
|
+
- examples/compass/src/images/blue_arrow.gif
|
|
111
|
+
- examples/compass/src/sticky_footer.sass
|
|
112
|
+
- examples/compass/src/utilities.sass
|
|
113
|
+
- examples/compass/sticky_footer.html.haml
|
|
114
|
+
- examples/compass/utilities.html.haml
|
|
115
|
+
- examples/downloader.rb
|
|
116
|
+
- examples/logo/logo.html.haml
|
|
117
|
+
- examples/logo/src/ie.sass
|
|
118
|
+
- examples/logo/src/print.sass
|
|
119
|
+
- examples/logo/src/screen.sass
|
|
120
|
+
- examples/ninesixty/bootstrap.rb
|
|
121
|
+
- examples/ninesixty/config.rb
|
|
122
|
+
- examples/ninesixty/extensions/ninesixty/README.mkdn
|
|
123
|
+
- examples/ninesixty/extensions/ninesixty/compass-960-plugin.gemspec
|
|
124
|
+
- examples/ninesixty/extensions/ninesixty/lib/ninesixty.rb
|
|
125
|
+
- examples/ninesixty/extensions/ninesixty/lib/ninesixty/compass_plugin.rb
|
|
126
|
+
- examples/ninesixty/extensions/ninesixty/sass/960/_grid.sass
|
|
127
|
+
- examples/ninesixty/extensions/ninesixty/sass/960/_text.sass
|
|
128
|
+
- examples/ninesixty/extensions/ninesixty/templates/project/grid.sass
|
|
129
|
+
- examples/ninesixty/extensions/ninesixty/templates/project/manifest.rb
|
|
130
|
+
- examples/ninesixty/extensions/ninesixty/templates/project/text.sass
|
|
131
|
+
- examples/ninesixty/src/grid.sass
|
|
132
|
+
- examples/ninesixty/src/text.sass
|
|
133
|
+
- examples/yui/bootstrap.rb
|
|
134
|
+
- examples/yui/divisions.html.haml
|
|
135
|
+
- examples/yui/extensions/yui/stylesheets/_yui.sass
|
|
136
|
+
- examples/yui/extensions/yui/stylesheets/yui/modules/_base.sass
|
|
137
|
+
- examples/yui/extensions/yui/stylesheets/yui/modules/_fonts.sass
|
|
138
|
+
- examples/yui/extensions/yui/stylesheets/yui/modules/_grids.sass
|
|
139
|
+
- examples/yui/extensions/yui/stylesheets/yui/modules/_reset.sass
|
|
140
|
+
- examples/yui/extensions/yui/templates/project/manifest.rb
|
|
141
|
+
- examples/yui/extensions/yui/templates/project/screen.sass
|
|
142
|
+
- examples/yui/index.html.haml
|
|
143
|
+
- examples/yui/src/screen.sass
|
|
144
|
+
- examples/yui/sub_divisions.html.haml
|
|
145
|
+
- examples/yui/templates.html.haml
|
|
146
|
+
- examples/yui/test.jpg
|
|
147
|
+
- examples/yui/typography.html.haml
|
|
148
|
+
- lib/compass.rb
|
|
149
|
+
- lib/compass/actions.rb
|
|
150
|
+
- lib/compass/app_integration.rb
|
|
151
|
+
- lib/compass/app_integration/merb.rb
|
|
152
|
+
- lib/compass/app_integration/merb/runtime.rb
|
|
153
|
+
- lib/compass/app_integration/rails.rb
|
|
154
|
+
- lib/compass/app_integration/rails/action_controller.rb
|
|
155
|
+
- lib/compass/app_integration/rails/configuration_defaults.rb
|
|
156
|
+
- lib/compass/app_integration/rails/installer.rb
|
|
157
|
+
- lib/compass/app_integration/rails/runtime.rb
|
|
158
|
+
- lib/compass/app_integration/rails/sass_plugin.rb
|
|
159
|
+
- lib/compass/app_integration/rails/templates/compass-install-rails.rb
|
|
160
|
+
- lib/compass/app_integration/rails/urls.rb
|
|
161
|
+
- lib/compass/app_integration/stand_alone.rb
|
|
162
|
+
- lib/compass/app_integration/stand_alone/configuration_defaults.rb
|
|
163
|
+
- lib/compass/app_integration/stand_alone/installer.rb
|
|
164
|
+
- lib/compass/commands.rb
|
|
165
|
+
- lib/compass/commands/base.rb
|
|
166
|
+
- lib/compass/commands/create_project.rb
|
|
167
|
+
- lib/compass/commands/generate_grid_background.rb
|
|
168
|
+
- lib/compass/commands/help.rb
|
|
169
|
+
- lib/compass/commands/installer_command.rb
|
|
170
|
+
- lib/compass/commands/list_frameworks.rb
|
|
171
|
+
- lib/compass/commands/print_version.rb
|
|
172
|
+
- lib/compass/commands/project_base.rb
|
|
173
|
+
- lib/compass/commands/registry.rb
|
|
174
|
+
- lib/compass/commands/stamp_pattern.rb
|
|
175
|
+
- lib/compass/commands/update_project.rb
|
|
176
|
+
- lib/compass/commands/validate_project.rb
|
|
177
|
+
- lib/compass/commands/watch_project.rb
|
|
178
|
+
- lib/compass/commands/write_configuration.rb
|
|
179
|
+
- lib/compass/compiler.rb
|
|
180
|
+
- lib/compass/configuration.rb
|
|
181
|
+
- lib/compass/configuration/adapters.rb
|
|
182
|
+
- lib/compass/configuration/comments.rb
|
|
183
|
+
- lib/compass/configuration/data.rb
|
|
184
|
+
- lib/compass/configuration/defaults.rb
|
|
185
|
+
- lib/compass/configuration/helpers.rb
|
|
186
|
+
- lib/compass/configuration/inheritance.rb
|
|
187
|
+
- lib/compass/configuration/serialization.rb
|
|
188
|
+
- lib/compass/core_ext.rb
|
|
189
|
+
- lib/compass/dependencies.rb
|
|
190
|
+
- lib/compass/errors.rb
|
|
191
|
+
- lib/compass/exec.rb
|
|
192
|
+
- lib/compass/exec/command_option_parser.rb
|
|
193
|
+
- lib/compass/exec/global_options_parser.rb
|
|
194
|
+
- lib/compass/exec/helpers.rb
|
|
195
|
+
- lib/compass/exec/project_options_parser.rb
|
|
196
|
+
- lib/compass/exec/sub_command_ui.rb
|
|
197
|
+
- lib/compass/exec/switch_ui.rb
|
|
198
|
+
- lib/compass/frameworks.rb
|
|
199
|
+
- lib/compass/frameworks/blueprint/stylesheets/_blueprint.sass
|
|
200
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/_ie.sass
|
|
201
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/_print.sass
|
|
202
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/_reset.sass
|
|
203
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/_screen.sass
|
|
204
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass
|
|
205
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass
|
|
206
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass
|
|
207
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass
|
|
208
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass
|
|
209
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass
|
|
210
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass
|
|
211
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass
|
|
212
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass
|
|
213
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass
|
|
214
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass
|
|
215
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass
|
|
216
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass
|
|
217
|
+
- lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass
|
|
218
|
+
- lib/compass/frameworks/blueprint/templates/buttons/buttons.sass
|
|
219
|
+
- lib/compass/frameworks/blueprint/templates/buttons/buttons/cross.png
|
|
220
|
+
- lib/compass/frameworks/blueprint/templates/buttons/buttons/key.png
|
|
221
|
+
- lib/compass/frameworks/blueprint/templates/buttons/buttons/tick.png
|
|
222
|
+
- lib/compass/frameworks/blueprint/templates/buttons/manifest.rb
|
|
223
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons.sass
|
|
224
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/doc.png
|
|
225
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/email.png
|
|
226
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/external.png
|
|
227
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/feed.png
|
|
228
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/im.png
|
|
229
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/pdf.png
|
|
230
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/visited.png
|
|
231
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/link_icons/xls.png
|
|
232
|
+
- lib/compass/frameworks/blueprint/templates/link_icons/manifest.rb
|
|
233
|
+
- lib/compass/frameworks/blueprint/templates/project/grid.png
|
|
234
|
+
- lib/compass/frameworks/blueprint/templates/project/ie.sass
|
|
235
|
+
- lib/compass/frameworks/blueprint/templates/project/manifest.rb
|
|
236
|
+
- lib/compass/frameworks/blueprint/templates/project/partials/_base.sass
|
|
237
|
+
- lib/compass/frameworks/blueprint/templates/project/print.sass
|
|
238
|
+
- lib/compass/frameworks/blueprint/templates/project/screen.sass
|
|
239
|
+
- lib/compass/frameworks/blueprint/templates/project/welcome.html.haml
|
|
240
|
+
- lib/compass/frameworks/compass/stylesheets/_compass.sass
|
|
241
|
+
- lib/compass/frameworks/compass/stylesheets/compass/_layout.sass
|
|
242
|
+
- lib/compass/frameworks/compass/stylesheets/compass/_misc.sass
|
|
243
|
+
- lib/compass/frameworks/compass/stylesheets/compass/_reset.sass
|
|
244
|
+
- lib/compass/frameworks/compass/stylesheets/compass/_utilities.sass
|
|
245
|
+
- lib/compass/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass
|
|
246
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_css3.sass
|
|
247
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_general.sass
|
|
248
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_links.sass
|
|
249
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_lists.sass
|
|
250
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_print.sass
|
|
251
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_sprites.sass
|
|
252
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_tables.sass
|
|
253
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/_text.sass
|
|
254
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_border_radius.sass
|
|
255
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_box_shadow.sass
|
|
256
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_box_sizing.sass
|
|
257
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_columns.sass
|
|
258
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_inline_block.sass
|
|
259
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_opacity.sass
|
|
260
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass
|
|
261
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_float.sass
|
|
262
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_hacks.sass
|
|
263
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass
|
|
264
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass
|
|
265
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass
|
|
266
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass
|
|
267
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass
|
|
268
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass
|
|
269
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass
|
|
270
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass
|
|
271
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass
|
|
272
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite_img.sass
|
|
273
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass
|
|
274
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass
|
|
275
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass
|
|
276
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.sass
|
|
277
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass
|
|
278
|
+
- lib/compass/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass
|
|
279
|
+
- lib/compass/frameworks/compass/templates/ellipsis/ellipsis.sass
|
|
280
|
+
- lib/compass/frameworks/compass/templates/ellipsis/manifest.rb
|
|
281
|
+
- lib/compass/frameworks/compass/templates/ellipsis/xml/ellipsis.xml
|
|
282
|
+
- lib/compass/frameworks/compass/templates/extension/manifest.rb
|
|
283
|
+
- lib/compass/frameworks/compass/templates/extension/stylesheets/main.sass
|
|
284
|
+
- lib/compass/frameworks/compass/templates/extension/templates/project/manifest.rb
|
|
285
|
+
- lib/compass/frameworks/compass/templates/extension/templates/project/screen.sass
|
|
286
|
+
- lib/compass/frameworks/compass/templates/project/ie.sass
|
|
287
|
+
- lib/compass/frameworks/compass/templates/project/manifest.rb
|
|
288
|
+
- lib/compass/frameworks/compass/templates/project/print.sass
|
|
289
|
+
- lib/compass/frameworks/compass/templates/project/screen.sass
|
|
290
|
+
- lib/compass/grid_builder.rb
|
|
291
|
+
- lib/compass/installers.rb
|
|
292
|
+
- lib/compass/installers/base.rb
|
|
293
|
+
- lib/compass/installers/manifest.rb
|
|
294
|
+
- lib/compass/installers/template_context.rb
|
|
295
|
+
- lib/compass/logger.rb
|
|
296
|
+
- lib/compass/sass_extensions.rb
|
|
297
|
+
- lib/compass/sass_extensions/functions.rb
|
|
298
|
+
- lib/compass/sass_extensions/functions/display.rb
|
|
299
|
+
- lib/compass/sass_extensions/functions/enumerate.rb
|
|
300
|
+
- lib/compass/sass_extensions/functions/inline_image.rb
|
|
301
|
+
- lib/compass/sass_extensions/functions/selectors.rb
|
|
302
|
+
- lib/compass/sass_extensions/functions/urls.rb
|
|
303
|
+
- lib/compass/sass_extensions/monkey_patches.rb
|
|
304
|
+
- lib/compass/sass_extensions/monkey_patches/stylesheet_updating.rb
|
|
305
|
+
- lib/compass/test_case.rb
|
|
306
|
+
- lib/compass/validator.rb
|
|
307
|
+
- lib/compass/version.rb
|
|
308
|
+
- lib/vendor/fssm.rb
|
|
309
|
+
- lib/vendor/fssm/backends/fsevents.rb
|
|
310
|
+
- lib/vendor/fssm/backends/polling.rb
|
|
311
|
+
- lib/vendor/fssm/ext.rb
|
|
312
|
+
- lib/vendor/fssm/monitor.rb
|
|
313
|
+
- lib/vendor/fssm/path.rb
|
|
314
|
+
- lib/vendor/fssm/state.rb
|
|
315
|
+
- lib/vendor/fssm/support.rb
|
|
316
|
+
- test/command_line_helper.rb
|
|
317
|
+
- test/command_line_test.rb
|
|
318
|
+
- test/compass_test.rb
|
|
319
|
+
- test/configuration_test.rb
|
|
320
|
+
- test/fixtures/stylesheets/blueprint/config.rb
|
|
321
|
+
- test/fixtures/stylesheets/blueprint/css/typography.css
|
|
322
|
+
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
323
|
+
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
324
|
+
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
325
|
+
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
326
|
+
- test/fixtures/stylesheets/blueprint/sass/typography.sass
|
|
327
|
+
- test/fixtures/stylesheets/compass/config.rb
|
|
328
|
+
- test/fixtures/stylesheets/compass/css/layout.css
|
|
329
|
+
- test/fixtures/stylesheets/compass/css/print.css
|
|
330
|
+
- test/fixtures/stylesheets/compass/css/reset.css
|
|
331
|
+
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
332
|
+
- test/fixtures/stylesheets/compass/sass/layout.sass
|
|
333
|
+
- test/fixtures/stylesheets/compass/sass/print.sass
|
|
334
|
+
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
335
|
+
- test/fixtures/stylesheets/compass/sass/utilities.sass
|
|
336
|
+
- test/fixtures/stylesheets/image_urls/config.rb
|
|
337
|
+
- test/fixtures/stylesheets/image_urls/css/screen.css
|
|
338
|
+
- test/fixtures/stylesheets/image_urls/images/grid.png
|
|
339
|
+
- test/fixtures/stylesheets/image_urls/sass/screen.sass
|
|
340
|
+
- test/io_helper.rb
|
|
341
|
+
- test/rails_integration_test.rb
|
|
342
|
+
- test/sass_extensions_test.rb
|
|
343
|
+
- test/test_case_helper.rb
|
|
344
|
+
- test/test_helper.rb
|
|
345
|
+
- test/test_rails_helper.rb
|
|
346
|
+
has_rdoc: true
|
|
347
|
+
homepage: http://compass-style.org
|
|
348
|
+
licenses: []
|
|
349
|
+
|
|
350
|
+
post_install_message:
|
|
351
|
+
rdoc_options:
|
|
352
|
+
- --charset=UTF-8
|
|
353
|
+
require_paths:
|
|
354
|
+
- lib
|
|
355
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
356
|
+
requirements:
|
|
357
|
+
- - ">="
|
|
358
|
+
- !ruby/object:Gem::Version
|
|
359
|
+
version: "0"
|
|
360
|
+
version:
|
|
361
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
362
|
+
requirements:
|
|
363
|
+
- - ">="
|
|
364
|
+
- !ruby/object:Gem::Version
|
|
365
|
+
version: "0"
|
|
366
|
+
version:
|
|
367
|
+
requirements: []
|
|
368
|
+
|
|
369
|
+
rubyforge_project: compass
|
|
370
|
+
rubygems_version: 1.3.5
|
|
371
|
+
signing_key:
|
|
372
|
+
specification_version: 3
|
|
373
|
+
summary: A Real Stylesheet Framework
|
|
374
|
+
test_files:
|
|
375
|
+
- test/command_line_helper.rb
|
|
376
|
+
- test/command_line_test.rb
|
|
377
|
+
- test/compass_test.rb
|
|
378
|
+
- test/configuration_test.rb
|
|
379
|
+
- test/fixtures/stylesheets/blueprint/config.rb
|
|
380
|
+
- test/fixtures/stylesheets/blueprint/css/typography.css
|
|
381
|
+
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
382
|
+
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
383
|
+
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
384
|
+
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
385
|
+
- test/fixtures/stylesheets/blueprint/sass/typography.sass
|
|
386
|
+
- test/fixtures/stylesheets/compass/config.rb
|
|
387
|
+
- test/fixtures/stylesheets/compass/css/layout.css
|
|
388
|
+
- test/fixtures/stylesheets/compass/css/print.css
|
|
389
|
+
- test/fixtures/stylesheets/compass/css/reset.css
|
|
390
|
+
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
391
|
+
- test/fixtures/stylesheets/compass/sass/layout.sass
|
|
392
|
+
- test/fixtures/stylesheets/compass/sass/print.sass
|
|
393
|
+
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
394
|
+
- test/fixtures/stylesheets/compass/sass/utilities.sass
|
|
395
|
+
- test/fixtures/stylesheets/image_urls/config.rb
|
|
396
|
+
- test/fixtures/stylesheets/image_urls/css/screen.css
|
|
397
|
+
- test/fixtures/stylesheets/image_urls/images/grid.png
|
|
398
|
+
- test/fixtures/stylesheets/image_urls/sass/screen.sass
|
|
399
|
+
- test/io_helper.rb
|
|
400
|
+
- test/rails_integration_test.rb
|
|
401
|
+
- test/sass_extensions_test.rb
|
|
402
|
+
- test/test_case_helper.rb
|
|
403
|
+
- test/test_helper.rb
|
|
404
|
+
- test/test_rails_helper.rb
|