haml-edge 2.3.237 → 2.3.238
Sign up to get free protection for your applications and to get access to all the features.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/plugin/rails.rb +1 -1
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.238
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.238
|
data/lib/sass/plugin/rails.rb
CHANGED
@@ -4,7 +4,7 @@ unless defined?(Sass::RAILS_LOADED)
|
|
4
4
|
Sass::Plugin.options.merge!(:template_location => Haml::Util.rails_root + '/public/stylesheets/sass',
|
5
5
|
:css_location => Haml::Util.rails_root + '/public/stylesheets',
|
6
6
|
:cache_location => Haml::Util.rails_root + '/tmp/sass-cache',
|
7
|
-
:always_check => Haml::Util.rails_env
|
7
|
+
:always_check => Haml::Util.rails_env == "development",
|
8
8
|
:quiet => Haml::Util.rails_env != "production",
|
9
9
|
:full_exception => Haml::Util.rails_env != "production")
|
10
10
|
|