Sha256: 27dcf3c9f9adcc0acd3d693b6f2f67174fc9c12557f57612f14e0326ac178249

Contents?: true

Size: 1.53 KB

Versions: 21

Compression:

Stored size: 1.53 KB

Contents

module Compass
  module Configuration
    # Comments are emitted into the configuration file when serialized and make it easier to understand for new users.
    module Comments

      def comment_for_http_path
        "# Set this to the root of your project when deployed:\n"
      end

      def comment_for_relative_assets
        unless top_level.relative_assets
          %q{# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
}
        else
          ""
        end
      end

      def comment_for_line_comments
        if top_level.line_comments
          %q{# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false
}
        else
          ""
        end
      end

      def comment_for_output_style
        unless top_level.output_style_without_default
          %Q{# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
}
        else
          ""
        end
      end

      def comment_for_preferred_syntax
        if top_level.preferred_syntax == :scss && top_level.sass_dir
          %Q{
# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass #{top_level.sass_dir} scss && rm -rf sass && mv scss sass
}
        else
          ""
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
radiant-1.0.0 ruby-debug/ruby/1.8/gems/compass-0.11.7/lib/compass/configuration/comments.rb
compass-0.11.7 lib/compass/configuration/comments.rb
compass-0.11.6 lib/compass/configuration/comments.rb
compass-0.11.5 lib/compass/configuration/comments.rb
compass-0.11.4 lib/compass/configuration/comments.rb
compass-0.11.3 lib/compass/configuration/comments.rb
compass-0.11.2 lib/compass/configuration/comments.rb
compass-0.11.1 lib/compass/configuration/comments.rb
compass-0.11.0 lib/compass/configuration/comments.rb
compass-0.11.beta.7 lib/compass/configuration/comments.rb
compass-0.11.beta.6 lib/compass/configuration/comments.rb
compass-0.11.beta.5 lib/compass/configuration/comments.rb
compass-0.11.beta.4 lib/compass/configuration/comments.rb
compass-0.11.beta.3 lib/compass/configuration/comments.rb
compass-0.11.beta.2 lib/compass/configuration/comments.rb
compass-0.11.beta.1 lib/compass/configuration/comments.rb
compass-0.11.beta.0 lib/compass/configuration/comments.rb
compass-0.11.alpha.4 lib/compass/configuration/comments.rb
compass-0.11.alpha.3 lib/compass/configuration/comments.rb
compass-0.11.alpha.1 lib/compass/configuration/comments.rb