haml-edge 2.3.182 → 2.3.183
Sign up to get free protection for your applications and to get access to all the features.
- data/EDGE_GEM_VERSION +1 -1
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/haml/exec.rb +1 -1
- metadata +18 -17
data/EDGE_GEM_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.183
|
data/README.md
CHANGED
@@ -262,7 +262,7 @@ See `html2haml --help` for further information and options.
|
|
262
262
|
The `sass-convert` executable converts between CSS, Sass, and SCSS.
|
263
263
|
When converting from CSS to Sass or SCSS,
|
264
264
|
nesting is applied where appropriate.
|
265
|
-
See `
|
265
|
+
See `sass-convert --help` for further information and options.
|
266
266
|
|
267
267
|
## Authors
|
268
268
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.183
|
data/lib/haml/exec.rb
CHANGED
@@ -3,7 +3,7 @@ require 'fileutils'
|
|
3
3
|
require 'rbconfig'
|
4
4
|
|
5
5
|
module Haml
|
6
|
-
# This module handles the various Haml executables (`haml`, `sass`, `
|
6
|
+
# This module handles the various Haml executables (`haml`, `sass`, `sass-convert`, etc).
|
7
7
|
module Exec
|
8
8
|
# An abstract class that encapsulates the executable code for all three executables.
|
9
9
|
class Generic
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: haml-edge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.183
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Weizenbaum
|
@@ -40,6 +40,7 @@ executables:
|
|
40
40
|
- html2haml
|
41
41
|
- sass
|
42
42
|
- css2sass
|
43
|
+
- sass-convert
|
43
44
|
extensions: []
|
44
45
|
|
45
46
|
extra_rdoc_files:
|
@@ -71,8 +72,8 @@ files:
|
|
71
72
|
- lib/haml/template.rb
|
72
73
|
- lib/haml/template/patch.rb
|
73
74
|
- lib/haml/template/plugin.rb
|
74
|
-
- lib/haml/root.rb
|
75
75
|
- lib/haml/version.rb
|
76
|
+
- lib/haml/root.rb
|
76
77
|
- lib/sass.rb
|
77
78
|
- lib/sass/css.rb
|
78
79
|
- lib/sass/engine.rb
|
@@ -80,12 +81,12 @@ files:
|
|
80
81
|
- lib/sass/error.rb
|
81
82
|
- lib/sass/files.rb
|
82
83
|
- lib/sass/plugin.rb
|
83
|
-
- lib/sass/
|
84
|
+
- lib/sass/repl.rb
|
84
85
|
- lib/sass/plugin/merb.rb
|
85
86
|
- lib/sass/plugin/rack.rb
|
86
87
|
- lib/sass/plugin/rails.rb
|
87
|
-
- lib/sass/
|
88
|
-
- lib/sass/
|
88
|
+
- lib/sass/script.rb
|
89
|
+
- lib/sass/scss.rb
|
89
90
|
- lib/sass/script/bool.rb
|
90
91
|
- lib/sass/script/color.rb
|
91
92
|
- lib/sass/script/funcall.rb
|
@@ -102,6 +103,7 @@ files:
|
|
102
103
|
- lib/sass/script/css_lexer.rb
|
103
104
|
- lib/sass/script/css_parser.rb
|
104
105
|
- lib/sass/script/interpolation.rb
|
106
|
+
- lib/sass/callbacks.rb
|
105
107
|
- lib/sass/tree/comment_node.rb
|
106
108
|
- lib/sass/tree/debug_node.rb
|
107
109
|
- lib/sass/tree/directive_node.rb
|
@@ -116,7 +118,6 @@ files:
|
|
116
118
|
- lib/sass/tree/variable_node.rb
|
117
119
|
- lib/sass/tree/while_node.rb
|
118
120
|
- lib/sass/tree/root_node.rb
|
119
|
-
- lib/sass/scss.rb
|
120
121
|
- lib/sass/scss/css_parser.rb
|
121
122
|
- lib/sass/scss/parser.rb
|
122
123
|
- lib/sass/scss/rx.rb
|
@@ -229,6 +230,7 @@ files:
|
|
229
230
|
- test/sass/engine_test.rb
|
230
231
|
- test/sass/functions_test.rb
|
231
232
|
- test/sass/plugin_test.rb
|
233
|
+
- test/sass/script_test.rb
|
232
234
|
- test/sass/data/hsl-rgb.txt
|
233
235
|
- test/sass/more_results/more1.css
|
234
236
|
- test/sass/more_results/more1_with_line_comments.css
|
@@ -236,7 +238,10 @@ files:
|
|
236
238
|
- test/sass/more_templates/_more_partial.sass
|
237
239
|
- test/sass/more_templates/more1.sass
|
238
240
|
- test/sass/more_templates/more_import.sass
|
239
|
-
- test/sass/
|
241
|
+
- test/sass/scss/css_test.rb
|
242
|
+
- test/sass/scss/rx_test.rb
|
243
|
+
- test/sass/scss/scss_test.rb
|
244
|
+
- test/sass/scss/test_helper.rb
|
240
245
|
- test/sass/results/alt.css
|
241
246
|
- test/sass/results/basic.css
|
242
247
|
- test/sass/results/compact.css
|
@@ -251,15 +256,13 @@ files:
|
|
251
256
|
- test/sass/results/parent_ref.css
|
252
257
|
- test/sass/results/script.css
|
253
258
|
- test/sass/results/options.css
|
259
|
+
- test/sass/results/scss_import.css
|
260
|
+
- test/sass/results/scss_importee.css
|
254
261
|
- test/sass/results/subdir/nested_subdir/nested_subdir.css
|
255
262
|
- test/sass/results/subdir/subdir.css
|
256
263
|
- test/sass/results/units.css
|
257
|
-
- test/sass/
|
258
|
-
- test/sass/
|
259
|
-
- test/sass/scss/css_test.rb
|
260
|
-
- test/sass/scss/rx_test.rb
|
261
|
-
- test/sass/scss/scss_test.rb
|
262
|
-
- test/sass/scss/test_helper.rb
|
264
|
+
- test/sass/callbacks_test.rb
|
265
|
+
- test/sass/conversion_test.rb
|
263
266
|
- test/sass/templates/_partial.sass
|
264
267
|
- test/sass/templates/alt.sass
|
265
268
|
- test/sass/templates/basic.sass
|
@@ -286,14 +289,12 @@ files:
|
|
286
289
|
- test/sass/templates/nested_bork3.sass
|
287
290
|
- test/sass/templates/nested_bork4.sass
|
288
291
|
- test/sass/templates/nested_mixin_bork.sass
|
292
|
+
- test/sass/templates/options.sass
|
293
|
+
- test/sass/templates/scss_import.scss
|
289
294
|
- test/sass/templates/subdir/nested_subdir/_nested_partial.sass
|
290
295
|
- test/sass/templates/subdir/nested_subdir/nested_subdir.sass
|
291
296
|
- test/sass/templates/subdir/subdir.sass
|
292
|
-
- test/sass/templates/options.sass
|
293
|
-
- test/sass/templates/scss_import.scss
|
294
297
|
- test/sass/templates/scss_importee.scss
|
295
|
-
- test/sass/callbacks_test.rb
|
296
|
-
- test/sass/conversion_test.rb
|
297
298
|
- test/sass/script_conversion_test.rb
|
298
299
|
- test/test_helper.rb
|
299
300
|
- extra/haml-mode.el
|