aliddle-sass 1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +11 -0
- data/CONTRIBUTING +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +201 -0
- data/Rakefile +347 -0
- data/VERSION +1 -0
- data/VERSION_NAME +1 -0
- data/bin/sass +9 -0
- data/bin/sass-convert +8 -0
- data/bin/scss +9 -0
- data/extra/update_watch.rb +13 -0
- data/init.rb +18 -0
- data/lib/sass.rb +95 -0
- data/lib/sass/cache_stores.rb +15 -0
- data/lib/sass/cache_stores/base.rb +88 -0
- data/lib/sass/cache_stores/chain.rb +33 -0
- data/lib/sass/cache_stores/filesystem.rb +60 -0
- data/lib/sass/cache_stores/memory.rb +47 -0
- data/lib/sass/cache_stores/null.rb +25 -0
- data/lib/sass/callbacks.rb +66 -0
- data/lib/sass/css.rb +409 -0
- data/lib/sass/engine.rb +928 -0
- data/lib/sass/environment.rb +101 -0
- data/lib/sass/error.rb +201 -0
- data/lib/sass/exec.rb +707 -0
- data/lib/sass/importers.rb +22 -0
- data/lib/sass/importers/base.rb +139 -0
- data/lib/sass/importers/filesystem.rb +190 -0
- data/lib/sass/logger.rb +15 -0
- data/lib/sass/logger/base.rb +32 -0
- data/lib/sass/logger/log_level.rb +49 -0
- data/lib/sass/media.rb +213 -0
- data/lib/sass/plugin.rb +132 -0
- data/lib/sass/plugin/compiler.rb +406 -0
- data/lib/sass/plugin/configuration.rb +123 -0
- data/lib/sass/plugin/generic.rb +15 -0
- data/lib/sass/plugin/merb.rb +48 -0
- data/lib/sass/plugin/rack.rb +60 -0
- data/lib/sass/plugin/rails.rb +47 -0
- data/lib/sass/plugin/staleness_checker.rb +183 -0
- data/lib/sass/railtie.rb +9 -0
- data/lib/sass/repl.rb +57 -0
- data/lib/sass/root.rb +7 -0
- data/lib/sass/script.rb +39 -0
- data/lib/sass/script/arg_list.rb +52 -0
- data/lib/sass/script/bool.rb +18 -0
- data/lib/sass/script/color.rb +606 -0
- data/lib/sass/script/css_lexer.rb +29 -0
- data/lib/sass/script/css_parser.rb +31 -0
- data/lib/sass/script/funcall.rb +237 -0
- data/lib/sass/script/functions.rb +1543 -0
- data/lib/sass/script/interpolation.rb +79 -0
- data/lib/sass/script/lexer.rb +348 -0
- data/lib/sass/script/list.rb +85 -0
- data/lib/sass/script/literal.rb +221 -0
- data/lib/sass/script/node.rb +99 -0
- data/lib/sass/script/null.rb +37 -0
- data/lib/sass/script/number.rb +453 -0
- data/lib/sass/script/operation.rb +110 -0
- data/lib/sass/script/parser.rb +495 -0
- data/lib/sass/script/string.rb +51 -0
- data/lib/sass/script/string_interpolation.rb +103 -0
- data/lib/sass/script/unary_operation.rb +69 -0
- data/lib/sass/script/variable.rb +58 -0
- data/lib/sass/scss.rb +16 -0
- data/lib/sass/scss/css_parser.rb +36 -0
- data/lib/sass/scss/parser.rb +1179 -0
- data/lib/sass/scss/rx.rb +133 -0
- data/lib/sass/scss/script_lexer.rb +15 -0
- data/lib/sass/scss/script_parser.rb +25 -0
- data/lib/sass/scss/static_parser.rb +54 -0
- data/lib/sass/selector.rb +452 -0
- data/lib/sass/selector/abstract_sequence.rb +94 -0
- data/lib/sass/selector/comma_sequence.rb +92 -0
- data/lib/sass/selector/sequence.rb +507 -0
- data/lib/sass/selector/simple.rb +119 -0
- data/lib/sass/selector/simple_sequence.rb +212 -0
- data/lib/sass/shared.rb +76 -0
- data/lib/sass/supports.rb +229 -0
- data/lib/sass/tree/charset_node.rb +22 -0
- data/lib/sass/tree/comment_node.rb +82 -0
- data/lib/sass/tree/content_node.rb +9 -0
- data/lib/sass/tree/css_import_node.rb +60 -0
- data/lib/sass/tree/debug_node.rb +18 -0
- data/lib/sass/tree/directive_node.rb +42 -0
- data/lib/sass/tree/each_node.rb +24 -0
- data/lib/sass/tree/extend_node.rb +36 -0
- data/lib/sass/tree/for_node.rb +36 -0
- data/lib/sass/tree/function_node.rb +34 -0
- data/lib/sass/tree/if_node.rb +52 -0
- data/lib/sass/tree/import_node.rb +75 -0
- data/lib/sass/tree/media_node.rb +58 -0
- data/lib/sass/tree/mixin_def_node.rb +38 -0
- data/lib/sass/tree/mixin_node.rb +39 -0
- data/lib/sass/tree/node.rb +196 -0
- data/lib/sass/tree/prop_node.rb +152 -0
- data/lib/sass/tree/return_node.rb +18 -0
- data/lib/sass/tree/root_node.rb +28 -0
- data/lib/sass/tree/rule_node.rb +132 -0
- data/lib/sass/tree/supports_node.rb +51 -0
- data/lib/sass/tree/trace_node.rb +32 -0
- data/lib/sass/tree/variable_node.rb +30 -0
- data/lib/sass/tree/visitors/base.rb +75 -0
- data/lib/sass/tree/visitors/check_nesting.rb +147 -0
- data/lib/sass/tree/visitors/convert.rb +316 -0
- data/lib/sass/tree/visitors/cssize.rb +229 -0
- data/lib/sass/tree/visitors/deep_copy.rb +102 -0
- data/lib/sass/tree/visitors/extend.rb +68 -0
- data/lib/sass/tree/visitors/perform.rb +446 -0
- data/lib/sass/tree/visitors/set_options.rb +125 -0
- data/lib/sass/tree/visitors/to_css.rb +230 -0
- data/lib/sass/tree/warn_node.rb +18 -0
- data/lib/sass/tree/while_node.rb +18 -0
- data/lib/sass/util.rb +906 -0
- data/lib/sass/util/multibyte_string_scanner.rb +155 -0
- data/lib/sass/util/subset_map.rb +109 -0
- data/lib/sass/util/test.rb +10 -0
- data/lib/sass/version.rb +126 -0
- data/rails/init.rb +1 -0
- data/test/Gemfile +3 -0
- data/test/Gemfile.lock +10 -0
- data/test/sass/cache_test.rb +89 -0
- data/test/sass/callbacks_test.rb +61 -0
- data/test/sass/conversion_test.rb +1760 -0
- data/test/sass/css2sass_test.rb +439 -0
- data/test/sass/data/hsl-rgb.txt +319 -0
- data/test/sass/engine_test.rb +3243 -0
- data/test/sass/exec_test.rb +86 -0
- data/test/sass/extend_test.rb +1461 -0
- data/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
- data/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
- data/test/sass/functions_test.rb +1139 -0
- data/test/sass/importer_test.rb +192 -0
- data/test/sass/logger_test.rb +58 -0
- data/test/sass/mock_importer.rb +49 -0
- data/test/sass/more_results/more1.css +9 -0
- data/test/sass/more_results/more1_with_line_comments.css +26 -0
- data/test/sass/more_results/more_import.css +29 -0
- data/test/sass/more_templates/_more_partial.sass +2 -0
- data/test/sass/more_templates/more1.sass +23 -0
- data/test/sass/more_templates/more_import.sass +11 -0
- data/test/sass/plugin_test.rb +550 -0
- data/test/sass/results/alt.css +4 -0
- data/test/sass/results/basic.css +9 -0
- data/test/sass/results/cached_import_option.css +3 -0
- data/test/sass/results/compact.css +5 -0
- data/test/sass/results/complex.css +86 -0
- data/test/sass/results/compressed.css +1 -0
- data/test/sass/results/expanded.css +19 -0
- data/test/sass/results/filename_fn.css +3 -0
- data/test/sass/results/if.css +3 -0
- data/test/sass/results/import.css +31 -0
- data/test/sass/results/import_charset.css +5 -0
- data/test/sass/results/import_charset_1_8.css +5 -0
- data/test/sass/results/import_charset_ibm866.css +5 -0
- data/test/sass/results/import_content.css +1 -0
- data/test/sass/results/line_numbers.css +49 -0
- data/test/sass/results/mixins.css +95 -0
- data/test/sass/results/multiline.css +24 -0
- data/test/sass/results/nested.css +22 -0
- data/test/sass/results/options.css +1 -0
- data/test/sass/results/parent_ref.css +13 -0
- data/test/sass/results/script.css +16 -0
- data/test/sass/results/scss_import.css +31 -0
- data/test/sass/results/scss_importee.css +2 -0
- data/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/test/sass/results/subdir/subdir.css +3 -0
- data/test/sass/results/units.css +11 -0
- data/test/sass/results/warn.css +0 -0
- data/test/sass/results/warn_imported.css +0 -0
- data/test/sass/script_conversion_test.rb +299 -0
- data/test/sass/script_test.rb +591 -0
- data/test/sass/scss/css_test.rb +1093 -0
- data/test/sass/scss/rx_test.rb +156 -0
- data/test/sass/scss/scss_test.rb +2043 -0
- data/test/sass/scss/test_helper.rb +37 -0
- data/test/sass/templates/_cached_import_option_partial.scss +1 -0
- data/test/sass/templates/_double_import_loop2.sass +1 -0
- data/test/sass/templates/_filename_fn_import.scss +11 -0
- data/test/sass/templates/_imported_charset_ibm866.sass +4 -0
- data/test/sass/templates/_imported_charset_utf8.sass +4 -0
- data/test/sass/templates/_imported_content.sass +3 -0
- data/test/sass/templates/_partial.sass +2 -0
- data/test/sass/templates/_same_name_different_partiality.scss +1 -0
- data/test/sass/templates/alt.sass +16 -0
- data/test/sass/templates/basic.sass +23 -0
- data/test/sass/templates/bork1.sass +2 -0
- data/test/sass/templates/bork2.sass +2 -0
- data/test/sass/templates/bork3.sass +2 -0
- data/test/sass/templates/bork4.sass +2 -0
- data/test/sass/templates/bork5.sass +3 -0
- data/test/sass/templates/cached_import_option.scss +3 -0
- data/test/sass/templates/compact.sass +17 -0
- data/test/sass/templates/complex.sass +305 -0
- data/test/sass/templates/compressed.sass +15 -0
- data/test/sass/templates/double_import_loop1.sass +1 -0
- data/test/sass/templates/expanded.sass +17 -0
- data/test/sass/templates/filename_fn.scss +18 -0
- data/test/sass/templates/if.sass +11 -0
- data/test/sass/templates/import.sass +12 -0
- data/test/sass/templates/import_charset.sass +9 -0
- data/test/sass/templates/import_charset_1_8.sass +6 -0
- data/test/sass/templates/import_charset_ibm866.sass +11 -0
- data/test/sass/templates/import_content.sass +4 -0
- data/test/sass/templates/importee.less +2 -0
- data/test/sass/templates/importee.sass +19 -0
- data/test/sass/templates/line_numbers.sass +13 -0
- data/test/sass/templates/mixin_bork.sass +5 -0
- data/test/sass/templates/mixins.sass +76 -0
- data/test/sass/templates/multiline.sass +20 -0
- data/test/sass/templates/nested.sass +25 -0
- data/test/sass/templates/nested_bork1.sass +2 -0
- data/test/sass/templates/nested_bork2.sass +2 -0
- data/test/sass/templates/nested_bork3.sass +2 -0
- data/test/sass/templates/nested_bork4.sass +2 -0
- data/test/sass/templates/nested_import.sass +2 -0
- data/test/sass/templates/nested_mixin_bork.sass +6 -0
- data/test/sass/templates/options.sass +2 -0
- data/test/sass/templates/parent_ref.sass +25 -0
- data/test/sass/templates/same_name_different_ext.sass +2 -0
- data/test/sass/templates/same_name_different_ext.scss +1 -0
- data/test/sass/templates/same_name_different_partiality.scss +1 -0
- data/test/sass/templates/script.sass +101 -0
- data/test/sass/templates/scss_import.scss +11 -0
- data/test/sass/templates/scss_importee.scss +1 -0
- data/test/sass/templates/single_import_loop.sass +1 -0
- data/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
- data/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/test/sass/templates/subdir/subdir.sass +6 -0
- data/test/sass/templates/units.sass +11 -0
- data/test/sass/templates/warn.sass +3 -0
- data/test/sass/templates/warn_imported.sass +4 -0
- data/test/sass/test_helper.rb +8 -0
- data/test/sass/util/multibyte_string_scanner_test.rb +147 -0
- data/test/sass/util/subset_map_test.rb +91 -0
- data/test/sass/util_test.rb +313 -0
- data/test/test_helper.rb +80 -0
- metadata +348 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
# We keep configuration in its own self-contained file
|
2
|
+
# so that we can load it independently in Rails 3,
|
3
|
+
# where the full plugin stuff is lazy-loaded.
|
4
|
+
|
5
|
+
module Sass
|
6
|
+
module Plugin
|
7
|
+
module Configuration
|
8
|
+
|
9
|
+
# Returns the default options for a {Sass::Plugin::Compiler}.
|
10
|
+
#
|
11
|
+
# @return [{Symbol => Object}]
|
12
|
+
def default_options
|
13
|
+
@default_options ||= {
|
14
|
+
:css_location => './public/stylesheets',
|
15
|
+
:always_update => false,
|
16
|
+
:always_check => true,
|
17
|
+
:full_exception => true,
|
18
|
+
:cache_location => ".sass-cache"
|
19
|
+
}.freeze
|
20
|
+
end
|
21
|
+
|
22
|
+
# Resets the options and {Sass::Callbacks::InstanceMethods#clear_callbacks! clears all callbacks}.
|
23
|
+
def reset!
|
24
|
+
@options = nil
|
25
|
+
clear_callbacks!
|
26
|
+
end
|
27
|
+
|
28
|
+
# An options hash.
|
29
|
+
# See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}.
|
30
|
+
#
|
31
|
+
# @return [{Symbol => Object}]
|
32
|
+
def options
|
33
|
+
@options ||= default_options.dup
|
34
|
+
end
|
35
|
+
|
36
|
+
# Sets the options hash.
|
37
|
+
# See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}.
|
38
|
+
# See {Sass::Plugin::Configuration#reset!}
|
39
|
+
# @deprecated Instead, modify the options hash in-place.
|
40
|
+
# @param value [{Symbol => Object}] The options hash
|
41
|
+
def options=(value)
|
42
|
+
Sass::Util.sass_warn("Setting Sass::Plugin.options is deprecated " +
|
43
|
+
"and will be removed in a future release.")
|
44
|
+
options.merge!(value)
|
45
|
+
end
|
46
|
+
|
47
|
+
# Adds a new template-location/css-location mapping.
|
48
|
+
# This means that Sass/SCSS files in `template_location`
|
49
|
+
# will be compiled to CSS files in `css_location`.
|
50
|
+
#
|
51
|
+
# This is preferred over manually manipulating the {file:SASS_REFERENCE.md#template_location-option `:template_location` option}
|
52
|
+
# since the option can be in multiple formats.
|
53
|
+
#
|
54
|
+
# Note that this method will change `options[:template_location]`
|
55
|
+
# to be in the Array format.
|
56
|
+
# This means that even if `options[:template_location]`
|
57
|
+
# had previously been a Hash or a String,
|
58
|
+
# it will now be an Array.
|
59
|
+
#
|
60
|
+
# @param template_location [String] The location where Sass/SCSS files will be.
|
61
|
+
# @param css_location [String] The location where compiled CSS files will go.
|
62
|
+
def add_template_location(template_location, css_location = options[:css_location])
|
63
|
+
normalize_template_location!
|
64
|
+
template_location_array << [template_location, css_location]
|
65
|
+
end
|
66
|
+
|
67
|
+
# Removes a template-location/css-location mapping.
|
68
|
+
# This means that Sass/SCSS files in `template_location`
|
69
|
+
# will no longer be compiled to CSS files in `css_location`.
|
70
|
+
#
|
71
|
+
# This is preferred over manually manipulating the {file:SASS_REFERENCE.md#template_location-option `:template_location` option}
|
72
|
+
# since the option can be in multiple formats.
|
73
|
+
#
|
74
|
+
# Note that this method will change `options[:template_location]`
|
75
|
+
# to be in the Array format.
|
76
|
+
# This means that even if `options[:template_location]`
|
77
|
+
# had previously been a Hash or a String,
|
78
|
+
# it will now be an Array.
|
79
|
+
#
|
80
|
+
# @param template_location [String]
|
81
|
+
# The location where Sass/SCSS files were,
|
82
|
+
# which is now going to be ignored.
|
83
|
+
# @param css_location [String]
|
84
|
+
# The location where compiled CSS files went, but will no longer go.
|
85
|
+
# @return [Boolean]
|
86
|
+
# Non-`nil` if the given mapping already existed and was removed,
|
87
|
+
# or `nil` if nothing was changed.
|
88
|
+
def remove_template_location(template_location, css_location = options[:css_location])
|
89
|
+
normalize_template_location!
|
90
|
+
template_location_array.delete([template_location, css_location])
|
91
|
+
end
|
92
|
+
|
93
|
+
# Returns the template locations configured for Sass
|
94
|
+
# as an array of `[template_location, css_location]` pairs.
|
95
|
+
# See the {file:SASS_REFERENCE.md#template_location-option `:template_location` option}
|
96
|
+
# for details.
|
97
|
+
#
|
98
|
+
# @return [Array<(String, String)>]
|
99
|
+
# An array of `[template_location, css_location]` pairs.
|
100
|
+
def template_location_array
|
101
|
+
old_template_location = options[:template_location]
|
102
|
+
normalize_template_location!
|
103
|
+
options[:template_location]
|
104
|
+
ensure
|
105
|
+
options[:template_location] = old_template_location
|
106
|
+
end
|
107
|
+
|
108
|
+
private
|
109
|
+
|
110
|
+
def normalize_template_location!
|
111
|
+
return if options[:template_location].is_a?(Array)
|
112
|
+
options[:template_location] =
|
113
|
+
case options[:template_location]
|
114
|
+
when nil
|
115
|
+
options[:css_location] ?
|
116
|
+
[[File.join(options[:css_location], 'sass'), options[:css_location]]] : []
|
117
|
+
when String; [[options[:template_location], options[:css_location]]]
|
118
|
+
else; options[:template_location].to_a
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# The reason some options are declared here rather than in sass/plugin/configuration.rb
|
2
|
+
# is that otherwise they'd clobber the Rails-specific options.
|
3
|
+
# Since Rails' options are lazy-loaded in Rails 3,
|
4
|
+
# they're reverse-merged with the default options
|
5
|
+
# so that user configuration is preserved.
|
6
|
+
# This means that defaults that differ from Rails'
|
7
|
+
# must be declared here.
|
8
|
+
|
9
|
+
unless defined?(Sass::GENERIC_LOADED)
|
10
|
+
Sass::GENERIC_LOADED = true
|
11
|
+
|
12
|
+
Sass::Plugin.options.merge!(:css_location => './public/stylesheets',
|
13
|
+
:always_update => false,
|
14
|
+
:always_check => true)
|
15
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
unless defined?(Sass::MERB_LOADED)
|
2
|
+
Sass::MERB_LOADED = true
|
3
|
+
|
4
|
+
module Sass::Plugin::Configuration
|
5
|
+
# Different default options in a m envirionment.
|
6
|
+
def default_options
|
7
|
+
@default_options ||= begin
|
8
|
+
version = Merb::VERSION.split('.').map { |n| n.to_i }
|
9
|
+
if version[0] <= 0 && version[1] < 5
|
10
|
+
root = MERB_ROOT
|
11
|
+
env = MERB_ENV
|
12
|
+
else
|
13
|
+
root = Merb.root.to_s
|
14
|
+
env = Merb.environment
|
15
|
+
end
|
16
|
+
|
17
|
+
{
|
18
|
+
:always_update => false,
|
19
|
+
:template_location => root + '/public/stylesheets/sass',
|
20
|
+
:css_location => root + '/public/stylesheets',
|
21
|
+
:cache_location => root + '/tmp/sass-cache',
|
22
|
+
:always_check => env != "production",
|
23
|
+
:quiet => env != "production",
|
24
|
+
:full_exception => env != "production"
|
25
|
+
}.freeze
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
config = Merb::Plugins.config[:sass] || Merb::Plugins.config["sass"] || {}
|
31
|
+
|
32
|
+
if defined? config.symbolize_keys!
|
33
|
+
config.symbolize_keys!
|
34
|
+
end
|
35
|
+
|
36
|
+
Sass::Plugin.options.merge!(config)
|
37
|
+
|
38
|
+
require 'sass/plugin/rack'
|
39
|
+
class Sass::Plugin::MerbBootLoader < Merb::BootLoader
|
40
|
+
after Merb::BootLoader::RackUpApplication
|
41
|
+
|
42
|
+
def self.run
|
43
|
+
# Apparently there's no better way than this to add Sass
|
44
|
+
# to Merb's Rack stack.
|
45
|
+
Merb::Config[:app] = Sass::Plugin::Rack.new(Merb::Config[:app])
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module Sass
|
2
|
+
module Plugin
|
3
|
+
# Rack middleware for compiling Sass code.
|
4
|
+
#
|
5
|
+
# ## Activate
|
6
|
+
#
|
7
|
+
# require 'sass/plugin/rack'
|
8
|
+
# use Sass::Plugin::Rack
|
9
|
+
#
|
10
|
+
# ## Customize
|
11
|
+
#
|
12
|
+
# Sass::Plugin.options.merge(
|
13
|
+
# :cache_location => './tmp/sass-cache',
|
14
|
+
# :never_update => environment != :production,
|
15
|
+
# :full_exception => environment != :production)
|
16
|
+
#
|
17
|
+
# {file:SASS_REFERENCE.md#options See the Reference for more options}.
|
18
|
+
#
|
19
|
+
# ## Use
|
20
|
+
#
|
21
|
+
# Put your Sass files in `public/stylesheets/sass`.
|
22
|
+
# Your CSS will be generated in `public/stylesheets`,
|
23
|
+
# and regenerated every request if necessary.
|
24
|
+
# The locations and frequency {file:SASS_REFERENCE.md#options can be customized}.
|
25
|
+
# That's all there is to it!
|
26
|
+
class Rack
|
27
|
+
# The delay, in seconds, between update checks.
|
28
|
+
# Useful when many resources are requested for a single page.
|
29
|
+
# `nil` means no delay at all.
|
30
|
+
#
|
31
|
+
# @return [Float]
|
32
|
+
attr_accessor :dwell
|
33
|
+
|
34
|
+
# Initialize the middleware.
|
35
|
+
#
|
36
|
+
# @param app [#call] The Rack application
|
37
|
+
# @param dwell [Float] See \{#dwell}
|
38
|
+
def initialize(app, dwell = 1.0)
|
39
|
+
@app = app
|
40
|
+
@dwell = dwell
|
41
|
+
@check_after = Time.now.to_f
|
42
|
+
end
|
43
|
+
|
44
|
+
# Process a request, checking the Sass stylesheets for changes
|
45
|
+
# and updating them if necessary.
|
46
|
+
#
|
47
|
+
# @param env The Rack request environment
|
48
|
+
# @return [(#to_i, {String => String}, Object)] The Rack response
|
49
|
+
def call(env)
|
50
|
+
if @dwell.nil? || Time.now.to_f > @check_after
|
51
|
+
Sass::Plugin.check_for_updates
|
52
|
+
@check_after = Time.now.to_f + @dwell if @dwell
|
53
|
+
end
|
54
|
+
@app.call(env)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
require 'sass/plugin'
|
@@ -0,0 +1,47 @@
|
|
1
|
+
unless defined?(Sass::RAILS_LOADED)
|
2
|
+
Sass::RAILS_LOADED = true
|
3
|
+
|
4
|
+
module Sass::Plugin::Configuration
|
5
|
+
# Different default options in a rails envirionment.
|
6
|
+
def default_options
|
7
|
+
return @default_options if @default_options
|
8
|
+
opts = {
|
9
|
+
:quiet => Sass::Util.rails_env != "production",
|
10
|
+
:full_exception => Sass::Util.rails_env != "production",
|
11
|
+
:cache_location => Sass::Util.rails_root + '/tmp/sass-cache'
|
12
|
+
}
|
13
|
+
|
14
|
+
opts.merge!(
|
15
|
+
:always_update => false,
|
16
|
+
:template_location => Sass::Util.rails_root + '/public/stylesheets/sass',
|
17
|
+
:css_location => Sass::Util.rails_root + '/public/stylesheets',
|
18
|
+
:always_check => Sass::Util.rails_env == "development")
|
19
|
+
|
20
|
+
@default_options = opts.freeze
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
Sass::Plugin.options.reverse_merge!(Sass::Plugin.default_options)
|
25
|
+
|
26
|
+
# Rails 3.1 loads and handles Sass all on its own
|
27
|
+
if defined?(ActionController::Metal)
|
28
|
+
# 3.1 > Rails >= 3.0
|
29
|
+
require 'sass/plugin/rack'
|
30
|
+
Rails.configuration.middleware.use(Sass::Plugin::Rack)
|
31
|
+
elsif defined?(ActionController::Dispatcher) &&
|
32
|
+
defined?(ActionController::Dispatcher.middleware)
|
33
|
+
# Rails >= 2.3
|
34
|
+
require 'sass/plugin/rack'
|
35
|
+
ActionController::Dispatcher.middleware.use(Sass::Plugin::Rack)
|
36
|
+
else
|
37
|
+
module ActionController
|
38
|
+
class Base
|
39
|
+
alias_method :sass_old_process, :process
|
40
|
+
def process(*args)
|
41
|
+
Sass::Plugin.check_for_updates
|
42
|
+
sass_old_process(*args)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
module Sass
|
2
|
+
module Plugin
|
3
|
+
# The class handles `.s[ca]ss` file staleness checks via their mtime timestamps.
|
4
|
+
#
|
5
|
+
# To speed things up two level of caches are employed:
|
6
|
+
#
|
7
|
+
# * A class-level dependency cache which stores @import paths for each file.
|
8
|
+
# This is a long-lived cache that is reused by every StalenessChecker instance.
|
9
|
+
# * Three short-lived instance-level caches, one for file mtimes,
|
10
|
+
# one for whether a file is stale during this particular run.
|
11
|
+
# and one for the parse tree for a file.
|
12
|
+
# These are only used by a single StalenessChecker instance.
|
13
|
+
#
|
14
|
+
# Usage:
|
15
|
+
#
|
16
|
+
# * For a one-off staleness check of a single `.s[ca]ss` file,
|
17
|
+
# the class-level {stylesheet_needs_update?} method
|
18
|
+
# should be used.
|
19
|
+
# * For a series of staleness checks (e.g. checking all files for staleness)
|
20
|
+
# a StalenessChecker instance should be created,
|
21
|
+
# and the instance-level \{#stylesheet\_needs\_update?} method should be used.
|
22
|
+
# the caches should make the whole process significantly faster.
|
23
|
+
# *WARNING*: It is important not to retain the instance for too long,
|
24
|
+
# as its instance-level caches are never explicitly expired.
|
25
|
+
class StalenessChecker
|
26
|
+
@dependencies_cache = {}
|
27
|
+
|
28
|
+
class << self
|
29
|
+
# TODO: attach this to a compiler instance.
|
30
|
+
# @private
|
31
|
+
attr_accessor :dependencies_cache
|
32
|
+
end
|
33
|
+
|
34
|
+
# Creates a new StalenessChecker
|
35
|
+
# for checking the staleness of several stylesheets at once.
|
36
|
+
#
|
37
|
+
# @param options [{Symbol => Object}]
|
38
|
+
# See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}.
|
39
|
+
def initialize(options)
|
40
|
+
@dependencies = self.class.dependencies_cache
|
41
|
+
|
42
|
+
# URIs that are being actively checked for staleness. Protects against
|
43
|
+
# import loops.
|
44
|
+
@actively_checking = Set.new
|
45
|
+
|
46
|
+
# Entries in the following instance-level caches are never explicitly expired.
|
47
|
+
# Instead they are supposed to automaticaly go out of scope when a series of staleness checks
|
48
|
+
# (this instance of StalenessChecker was created for) is finished.
|
49
|
+
@mtimes, @dependencies_stale, @parse_trees = {}, {}, {}
|
50
|
+
@options = Sass::Engine.normalize_options(options)
|
51
|
+
end
|
52
|
+
|
53
|
+
# Returns whether or not a given CSS file is out of date
|
54
|
+
# and needs to be regenerated.
|
55
|
+
#
|
56
|
+
# @param css_file [String] The location of the CSS file to check.
|
57
|
+
# @param template_file [String] The location of the Sass or SCSS template
|
58
|
+
# that is compiled to `css_file`.
|
59
|
+
# @return [Boolean] Whether the stylesheet needs to be updated.
|
60
|
+
def stylesheet_needs_update?(css_file, template_file, importer = nil)
|
61
|
+
template_file = File.expand_path(template_file)
|
62
|
+
begin
|
63
|
+
css_mtime = File.mtime(css_file)
|
64
|
+
rescue Errno::ENOENT
|
65
|
+
return true
|
66
|
+
end
|
67
|
+
stylesheet_modified_since?(template_file, css_mtime, importer)
|
68
|
+
end
|
69
|
+
|
70
|
+
# Returns whether a Sass or SCSS stylesheet has been modified since a given time.
|
71
|
+
#
|
72
|
+
# @param template_file [String] The location of the Sass or SCSS template.
|
73
|
+
# @param mtime [Fixnum] The modification time to check against.
|
74
|
+
# @param importer [Sass::Importers::Base] The importer used to locate the stylesheet.
|
75
|
+
# Defaults to the filesystem importer.
|
76
|
+
# @return [Boolean] Whether the stylesheet has been modified.
|
77
|
+
def stylesheet_modified_since?(template_file, mtime, importer = nil)
|
78
|
+
importer ||= @options[:filesystem_importer].new(".")
|
79
|
+
dependency_updated?(mtime).call(template_file, importer)
|
80
|
+
end
|
81
|
+
|
82
|
+
# Returns whether or not a given CSS file is out of date
|
83
|
+
# and needs to be regenerated.
|
84
|
+
#
|
85
|
+
# The distinction between this method and the instance-level \{#stylesheet\_needs\_update?}
|
86
|
+
# is that the instance method preserves mtime and stale-dependency caches,
|
87
|
+
# so it's better to use when checking multiple stylesheets at once.
|
88
|
+
#
|
89
|
+
# @param css_file [String] The location of the CSS file to check.
|
90
|
+
# @param template_file [String] The location of the Sass or SCSS template
|
91
|
+
# that is compiled to `css_file`.
|
92
|
+
# @return [Boolean] Whether the stylesheet needs to be updated.
|
93
|
+
def self.stylesheet_needs_update?(css_file, template_file, importer = nil)
|
94
|
+
new(Plugin.engine_options).stylesheet_needs_update?(css_file, template_file, importer)
|
95
|
+
end
|
96
|
+
|
97
|
+
# Returns whether a Sass or SCSS stylesheet has been modified since a given time.
|
98
|
+
#
|
99
|
+
# The distinction between this method and the instance-level \{#stylesheet\_modified\_since?}
|
100
|
+
# is that the instance method preserves mtime and stale-dependency caches,
|
101
|
+
# so it's better to use when checking multiple stylesheets at once.
|
102
|
+
#
|
103
|
+
# @param template_file [String] The location of the Sass or SCSS template.
|
104
|
+
# @param mtime [Fixnum] The modification time to check against.
|
105
|
+
# @param importer [Sass::Importers::Base] The importer used to locate the stylesheet.
|
106
|
+
# Defaults to the filesystem importer.
|
107
|
+
# @return [Boolean] Whether the stylesheet has been modified.
|
108
|
+
def self.stylesheet_modified_since?(template_file, mtime, importer = nil)
|
109
|
+
new(Plugin.engine_options).stylesheet_modified_since?(template_file, mtime, importer)
|
110
|
+
end
|
111
|
+
|
112
|
+
private
|
113
|
+
|
114
|
+
def dependencies_stale?(uri, importer, css_mtime)
|
115
|
+
timestamps = @dependencies_stale[[uri, importer]] ||= {}
|
116
|
+
timestamps.each_pair do |checked_css_mtime, is_stale|
|
117
|
+
if checked_css_mtime <= css_mtime && !is_stale
|
118
|
+
return false
|
119
|
+
elsif checked_css_mtime > css_mtime && is_stale
|
120
|
+
return true
|
121
|
+
end
|
122
|
+
end
|
123
|
+
timestamps[css_mtime] = dependencies(uri, importer).any?(&dependency_updated?(css_mtime))
|
124
|
+
rescue Sass::SyntaxError
|
125
|
+
# If there's an error finding dependencies, default to recompiling.
|
126
|
+
true
|
127
|
+
end
|
128
|
+
|
129
|
+
def mtime(uri, importer)
|
130
|
+
@mtimes[[uri, importer]] ||=
|
131
|
+
begin
|
132
|
+
mtime = importer.mtime(uri, @options)
|
133
|
+
if mtime.nil?
|
134
|
+
@dependencies.delete([uri, importer])
|
135
|
+
nil
|
136
|
+
else
|
137
|
+
mtime
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def dependencies(uri, importer)
|
143
|
+
stored_mtime, dependencies = Sass::Util.destructure(@dependencies[[uri, importer]])
|
144
|
+
|
145
|
+
if !stored_mtime || stored_mtime < mtime(uri, importer)
|
146
|
+
dependencies = compute_dependencies(uri, importer)
|
147
|
+
@dependencies[[uri, importer]] = [mtime(uri, importer), dependencies]
|
148
|
+
end
|
149
|
+
|
150
|
+
dependencies
|
151
|
+
end
|
152
|
+
|
153
|
+
def dependency_updated?(css_mtime)
|
154
|
+
Proc.new do |uri, importer|
|
155
|
+
next true if @actively_checking.include?(uri)
|
156
|
+
begin
|
157
|
+
@actively_checking << uri
|
158
|
+
sass_mtime = mtime(uri, importer)
|
159
|
+
!sass_mtime ||
|
160
|
+
sass_mtime > css_mtime ||
|
161
|
+
dependencies_stale?(uri, importer, css_mtime)
|
162
|
+
ensure
|
163
|
+
@actively_checking.delete uri
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
def compute_dependencies(uri, importer)
|
169
|
+
tree(uri, importer).grep(Tree::ImportNode) do |n|
|
170
|
+
next if n.css_import?
|
171
|
+
file = n.imported_file
|
172
|
+
key = [file.options[:filename], file.options[:importer]]
|
173
|
+
@parse_trees[key] = file.to_tree
|
174
|
+
key
|
175
|
+
end.compact
|
176
|
+
end
|
177
|
+
|
178
|
+
def tree(uri, importer)
|
179
|
+
@parse_trees[[uri, importer]] ||= importer.find(uri, @options).to_tree
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|