sass 3.2.14 → 3.2.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/VERSION_DATE +1 -1
- data/lib/sass/selector/simple_sequence.rb +7 -4
- data/test/sass/scss/scss_test.rb +11 -0
- metadata +257 -257
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1dd7def389ff514fbc4cc59b7df98f336254cd0
|
4
|
+
data.tar.gz: 566892ae1fed58d0f74f850517503f1117470cd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e659393aacdcc2a9e2cdd139f0f17c4f67d34eff4b017c9659a69c9c8273fc49e3f723778b702004f02838490aef7a7d67b989032f0045741218649827e3fb00
|
7
|
+
data.tar.gz: e7e02bfca9b58633a8d82562451c5d8c43bb31328a3ee1da373259276b2b6f88c6c39bc1a8438d59a8669a14cbcf81294ede186b43b9cd4c97dcc7c8dde2bb73
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.15
|
data/VERSION_DATE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
07 March 2014 23:38:45 UTC
|
@@ -79,13 +79,16 @@ module Sass
|
|
79
79
|
# Parent selector only appears as the first selector in the sequence
|
80
80
|
return [self] unless @members.first.is_a?(Parent)
|
81
81
|
|
82
|
-
|
83
|
-
|
82
|
+
members = super_seq.members.dup
|
83
|
+
newline = members.pop if members.last == "\n"
|
84
|
+
return members if @members.size == 1
|
85
|
+
unless members.last.is_a?(SimpleSequence)
|
84
86
|
raise Sass::SyntaxError.new("Invalid parent selector: " + super_seq.to_a.join)
|
85
87
|
end
|
86
88
|
|
87
|
-
|
88
|
-
[SimpleSequence.new(
|
89
|
+
members[0...-1] +
|
90
|
+
[SimpleSequence.new(members.last.members + @members[1..-1], subject?)] +
|
91
|
+
[newline].compact
|
89
92
|
end
|
90
93
|
|
91
94
|
# Non-destrucively extends this selector with the extensions specified in a hash
|
data/test/sass/scss/scss_test.rb
CHANGED
@@ -1762,6 +1762,17 @@ SCSS
|
|
1762
1762
|
end
|
1763
1763
|
|
1764
1764
|
# Regression
|
1765
|
+
|
1766
|
+
def test_parent_ref_with_newline
|
1767
|
+
assert_equal(<<CSS, render(<<SCSS))
|
1768
|
+
a.c
|
1769
|
+
, b.c {
|
1770
|
+
x: y; }
|
1771
|
+
CSS
|
1772
|
+
a
|
1773
|
+
, b {&.c {x: y}}
|
1774
|
+
SCSS
|
1775
|
+
end
|
1765
1776
|
|
1766
1777
|
def test_loud_comment_in_compressed_mode
|
1767
1778
|
assert_equal(<<CSS, render(<<SCSS))
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Weizenbaum
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-03-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: yard
|
@@ -53,287 +53,287 @@ executables:
|
|
53
53
|
extensions: []
|
54
54
|
extra_rdoc_files: []
|
55
55
|
files:
|
56
|
-
- .
|
57
|
-
- CONTRIBUTING
|
58
|
-
- MIT-LICENSE
|
59
|
-
- README.md
|
60
|
-
- REVISION
|
61
|
-
- Rakefile
|
62
|
-
- VERSION
|
63
|
-
- VERSION_DATE
|
64
|
-
- VERSION_NAME
|
65
|
-
- bin/sass
|
66
|
-
- bin/sass-convert
|
67
|
-
- bin/scss
|
68
|
-
- extra/update_watch.rb
|
69
|
-
- init.rb
|
56
|
+
- rails/init.rb
|
70
57
|
- lib/sass.rb
|
71
58
|
- lib/sass/cache_stores.rb
|
72
|
-
- lib/sass/
|
59
|
+
- lib/sass/plugin/compiler.rb
|
60
|
+
- lib/sass/plugin/merb.rb
|
61
|
+
- lib/sass/plugin/staleness_checker.rb
|
62
|
+
- lib/sass/plugin/rack.rb
|
63
|
+
- lib/sass/plugin/rails.rb
|
64
|
+
- lib/sass/plugin/configuration.rb
|
65
|
+
- lib/sass/plugin/generic.rb
|
66
|
+
- lib/sass/version.rb
|
67
|
+
- lib/sass/supports.rb
|
68
|
+
- lib/sass/media.rb
|
73
69
|
- lib/sass/cache_stores/chain.rb
|
74
|
-
- lib/sass/cache_stores/filesystem.rb
|
75
70
|
- lib/sass/cache_stores/memory.rb
|
76
71
|
- lib/sass/cache_stores/null.rb
|
77
|
-
- lib/sass/
|
78
|
-
- lib/sass/
|
79
|
-
- lib/sass/
|
80
|
-
- lib/sass/
|
72
|
+
- lib/sass/cache_stores/filesystem.rb
|
73
|
+
- lib/sass/cache_stores/base.rb
|
74
|
+
- lib/sass/shared.rb
|
75
|
+
- lib/sass/repl.rb
|
81
76
|
- lib/sass/error.rb
|
82
|
-
- lib/sass/
|
77
|
+
- lib/sass/tree/import_node.rb
|
78
|
+
- lib/sass/tree/trace_node.rb
|
79
|
+
- lib/sass/tree/return_node.rb
|
80
|
+
- lib/sass/tree/root_node.rb
|
81
|
+
- lib/sass/tree/if_node.rb
|
82
|
+
- lib/sass/tree/charset_node.rb
|
83
|
+
- lib/sass/tree/css_import_node.rb
|
84
|
+
- lib/sass/tree/function_node.rb
|
85
|
+
- lib/sass/tree/media_node.rb
|
86
|
+
- lib/sass/tree/while_node.rb
|
87
|
+
- lib/sass/tree/for_node.rb
|
88
|
+
- lib/sass/tree/directive_node.rb
|
89
|
+
- lib/sass/tree/rule_node.rb
|
90
|
+
- lib/sass/tree/each_node.rb
|
91
|
+
- lib/sass/tree/node.rb
|
92
|
+
- lib/sass/tree/mixin_node.rb
|
93
|
+
- lib/sass/tree/extend_node.rb
|
94
|
+
- lib/sass/tree/mixin_def_node.rb
|
95
|
+
- lib/sass/tree/supports_node.rb
|
96
|
+
- lib/sass/tree/visitors/perform.rb
|
97
|
+
- lib/sass/tree/visitors/to_css.rb
|
98
|
+
- lib/sass/tree/visitors/check_nesting.rb
|
99
|
+
- lib/sass/tree/visitors/deep_copy.rb
|
100
|
+
- lib/sass/tree/visitors/extend.rb
|
101
|
+
- lib/sass/tree/visitors/set_options.rb
|
102
|
+
- lib/sass/tree/visitors/cssize.rb
|
103
|
+
- lib/sass/tree/visitors/convert.rb
|
104
|
+
- lib/sass/tree/visitors/base.rb
|
105
|
+
- lib/sass/tree/content_node.rb
|
106
|
+
- lib/sass/tree/comment_node.rb
|
107
|
+
- lib/sass/tree/warn_node.rb
|
108
|
+
- lib/sass/tree/debug_node.rb
|
109
|
+
- lib/sass/tree/prop_node.rb
|
110
|
+
- lib/sass/tree/variable_node.rb
|
111
|
+
- lib/sass/engine.rb
|
112
|
+
- lib/sass/plugin.rb
|
113
|
+
- lib/sass/root.rb
|
83
114
|
- lib/sass/importers.rb
|
84
|
-
- lib/sass/importers/base.rb
|
85
|
-
- lib/sass/importers/filesystem.rb
|
86
115
|
- lib/sass/logger.rb
|
87
|
-
- lib/sass/
|
116
|
+
- lib/sass/util/test.rb
|
117
|
+
- lib/sass/util/multibyte_string_scanner.rb
|
118
|
+
- lib/sass/util/subset_map.rb
|
119
|
+
- lib/sass/scss.rb
|
120
|
+
- lib/sass/scss/static_parser.rb
|
121
|
+
- lib/sass/scss/parser.rb
|
122
|
+
- lib/sass/scss/script_lexer.rb
|
123
|
+
- lib/sass/scss/rx.rb
|
124
|
+
- lib/sass/scss/script_parser.rb
|
125
|
+
- lib/sass/scss/css_parser.rb
|
88
126
|
- lib/sass/logger/log_level.rb
|
89
|
-
- lib/sass/
|
90
|
-
- lib/sass/
|
91
|
-
- lib/sass/plugin/compiler.rb
|
92
|
-
- lib/sass/plugin/configuration.rb
|
93
|
-
- lib/sass/plugin/generic.rb
|
94
|
-
- lib/sass/plugin/merb.rb
|
95
|
-
- lib/sass/plugin/rack.rb
|
96
|
-
- lib/sass/plugin/rails.rb
|
97
|
-
- lib/sass/plugin/staleness_checker.rb
|
98
|
-
- lib/sass/railtie.rb
|
99
|
-
- lib/sass/repl.rb
|
100
|
-
- lib/sass/root.rb
|
127
|
+
- lib/sass/logger/base.rb
|
128
|
+
- lib/sass/css.rb
|
101
129
|
- lib/sass/script.rb
|
102
|
-
- lib/sass/
|
103
|
-
- lib/sass/
|
130
|
+
- lib/sass/util.rb
|
131
|
+
- lib/sass/importers/filesystem.rb
|
132
|
+
- lib/sass/importers/base.rb
|
104
133
|
- lib/sass/script/color.rb
|
105
|
-
- lib/sass/script/
|
106
|
-
- lib/sass/script/
|
134
|
+
- lib/sass/script/variable.rb
|
135
|
+
- lib/sass/script/operation.rb
|
107
136
|
- lib/sass/script/funcall.rb
|
137
|
+
- lib/sass/script/literal.rb
|
138
|
+
- lib/sass/script/parser.rb
|
108
139
|
- lib/sass/script/functions.rb
|
140
|
+
- lib/sass/script/number.rb
|
141
|
+
- lib/sass/script/string_interpolation.rb
|
109
142
|
- lib/sass/script/interpolation.rb
|
143
|
+
- lib/sass/script/arg_list.rb
|
144
|
+
- lib/sass/script/node.rb
|
145
|
+
- lib/sass/script/bool.rb
|
146
|
+
- lib/sass/script/unary_operation.rb
|
110
147
|
- lib/sass/script/lexer.rb
|
111
148
|
- lib/sass/script/list.rb
|
112
|
-
- lib/sass/script/
|
113
|
-
- lib/sass/script/node.rb
|
149
|
+
- lib/sass/script/css_lexer.rb
|
114
150
|
- lib/sass/script/null.rb
|
115
|
-
- lib/sass/script/number.rb
|
116
|
-
- lib/sass/script/operation.rb
|
117
|
-
- lib/sass/script/parser.rb
|
118
151
|
- lib/sass/script/string.rb
|
119
|
-
- lib/sass/script/
|
120
|
-
- lib/sass/script/unary_operation.rb
|
121
|
-
- lib/sass/script/variable.rb
|
122
|
-
- lib/sass/scss.rb
|
123
|
-
- lib/sass/scss/css_parser.rb
|
124
|
-
- lib/sass/scss/parser.rb
|
125
|
-
- lib/sass/scss/rx.rb
|
126
|
-
- lib/sass/scss/script_lexer.rb
|
127
|
-
- lib/sass/scss/script_parser.rb
|
128
|
-
- lib/sass/scss/static_parser.rb
|
152
|
+
- lib/sass/script/css_parser.rb
|
129
153
|
- lib/sass/selector.rb
|
154
|
+
- lib/sass/callbacks.rb
|
155
|
+
- lib/sass/selector/simple.rb
|
156
|
+
- lib/sass/selector/sequence.rb
|
130
157
|
- lib/sass/selector/abstract_sequence.rb
|
131
158
|
- lib/sass/selector/comma_sequence.rb
|
132
|
-
- lib/sass/selector/sequence.rb
|
133
|
-
- lib/sass/selector/simple.rb
|
134
159
|
- lib/sass/selector/simple_sequence.rb
|
135
|
-
- lib/sass/
|
136
|
-
- lib/sass/
|
137
|
-
- lib/sass/
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
-
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
-
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
-
|
160
|
-
-
|
161
|
-
-
|
162
|
-
-
|
163
|
-
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
174
|
-
-
|
175
|
-
-
|
176
|
-
-
|
160
|
+
- lib/sass/railtie.rb
|
161
|
+
- lib/sass/environment.rb
|
162
|
+
- lib/sass/exec.rb
|
163
|
+
- vendor/listen/README.md
|
164
|
+
- vendor/listen/CONTRIBUTING.md
|
165
|
+
- vendor/listen/Guardfile
|
166
|
+
- vendor/listen/Gemfile
|
167
|
+
- vendor/listen/lib/listen/turnstile.rb
|
168
|
+
- vendor/listen/lib/listen/directory_record.rb
|
169
|
+
- vendor/listen/lib/listen/version.rb
|
170
|
+
- vendor/listen/lib/listen/dependency_manager.rb
|
171
|
+
- vendor/listen/lib/listen/multi_listener.rb
|
172
|
+
- vendor/listen/lib/listen/listener.rb
|
173
|
+
- vendor/listen/lib/listen/adapters/polling.rb
|
174
|
+
- vendor/listen/lib/listen/adapters/darwin.rb
|
175
|
+
- vendor/listen/lib/listen/adapters/linux.rb
|
176
|
+
- vendor/listen/lib/listen/adapters/bsd.rb
|
177
|
+
- vendor/listen/lib/listen/adapters/windows.rb
|
178
|
+
- vendor/listen/lib/listen/adapter.rb
|
179
|
+
- vendor/listen/lib/listen.rb
|
180
|
+
- vendor/listen/CHANGELOG.md
|
181
|
+
- vendor/listen/Rakefile
|
182
|
+
- vendor/listen/LICENSE
|
183
|
+
- vendor/listen/listen.gemspec
|
184
|
+
- vendor/listen/Vagrantfile
|
185
|
+
- vendor/listen/spec/listen/dependency_manager_spec.rb
|
186
|
+
- vendor/listen/spec/listen/directory_record_spec.rb
|
187
|
+
- vendor/listen/spec/listen/adapters/linux_spec.rb
|
188
|
+
- vendor/listen/spec/listen/adapters/darwin_spec.rb
|
189
|
+
- vendor/listen/spec/listen/adapters/bsd_spec.rb
|
190
|
+
- vendor/listen/spec/listen/adapters/polling_spec.rb
|
191
|
+
- vendor/listen/spec/listen/adapters/windows_spec.rb
|
192
|
+
- vendor/listen/spec/listen/turnstile_spec.rb
|
193
|
+
- vendor/listen/spec/listen/adapter_spec.rb
|
194
|
+
- vendor/listen/spec/listen/listener_spec.rb
|
195
|
+
- vendor/listen/spec/listen/multi_listener_spec.rb
|
196
|
+
- vendor/listen/spec/listen_spec.rb
|
197
|
+
- vendor/listen/spec/spec_helper.rb
|
198
|
+
- vendor/listen/spec/support/directory_record_helper.rb
|
199
|
+
- vendor/listen/spec/support/listeners_helper.rb
|
200
|
+
- vendor/listen/spec/support/adapter_helper.rb
|
201
|
+
- vendor/listen/spec/support/platform_helper.rb
|
202
|
+
- vendor/listen/spec/support/fixtures_helper.rb
|
203
|
+
- bin/sass-convert
|
204
|
+
- bin/scss
|
205
|
+
- bin/sass
|
177
206
|
- test/Gemfile
|
178
207
|
- test/Gemfile.lock
|
179
|
-
- test/
|
180
|
-
- test/sass/callbacks_test.rb
|
181
|
-
- test/sass/conversion_test.rb
|
182
|
-
- test/sass/css2sass_test.rb
|
183
|
-
- test/sass/data/hsl-rgb.txt
|
208
|
+
- test/test_helper.rb
|
184
209
|
- test/sass/engine_test.rb
|
185
|
-
- test/sass/exec_test.rb
|
186
|
-
- test/sass/extend_test.rb
|
187
|
-
- test/sass/fixtures/test_staleness_check_across_importers.css
|
188
|
-
- test/sass/fixtures/test_staleness_check_across_importers.scss
|
189
210
|
- test/sass/functions_test.rb
|
190
|
-
- test/sass/
|
211
|
+
- test/sass/fixtures/test_staleness_check_across_importers.scss
|
212
|
+
- test/sass/fixtures/test_staleness_check_across_importers.css
|
213
|
+
- test/sass/data/hsl-rgb.txt
|
214
|
+
- test/sass/extend_test.rb
|
191
215
|
- test/sass/logger_test.rb
|
192
|
-
- test/sass/
|
193
|
-
- test/sass/more_results/more1.css
|
194
|
-
- test/sass/more_results/more1_with_line_comments.css
|
195
|
-
- test/sass/more_results/more_import.css
|
196
|
-
- test/sass/more_templates/_more_partial.sass
|
197
|
-
- test/sass/more_templates/more1.sass
|
198
|
-
- test/sass/more_templates/more_import.sass
|
199
|
-
- test/sass/plugin_test.rb
|
200
|
-
- test/sass/results/alt.css
|
201
|
-
- test/sass/results/basic.css
|
202
|
-
- test/sass/results/cached_import_option.css
|
203
|
-
- test/sass/results/compact.css
|
204
|
-
- test/sass/results/complex.css
|
205
|
-
- test/sass/results/compressed.css
|
206
|
-
- test/sass/results/expanded.css
|
207
|
-
- test/sass/results/filename_fn.css
|
208
|
-
- test/sass/results/if.css
|
209
|
-
- test/sass/results/import.css
|
210
|
-
- test/sass/results/import_charset.css
|
211
|
-
- test/sass/results/import_charset_1_8.css
|
212
|
-
- test/sass/results/import_charset_ibm866.css
|
213
|
-
- test/sass/results/import_content.css
|
214
|
-
- test/sass/results/line_numbers.css
|
215
|
-
- test/sass/results/mixins.css
|
216
|
-
- test/sass/results/multiline.css
|
217
|
-
- test/sass/results/nested.css
|
218
|
-
- test/sass/results/options.css
|
219
|
-
- test/sass/results/parent_ref.css
|
220
|
-
- test/sass/results/script.css
|
221
|
-
- test/sass/results/scss_import.css
|
222
|
-
- test/sass/results/scss_importee.css
|
223
|
-
- test/sass/results/subdir/nested_subdir/nested_subdir.css
|
224
|
-
- test/sass/results/subdir/subdir.css
|
225
|
-
- test/sass/results/units.css
|
226
|
-
- test/sass/results/warn.css
|
227
|
-
- test/sass/results/warn_imported.css
|
228
|
-
- test/sass/script_conversion_test.rb
|
229
|
-
- test/sass/script_test.rb
|
230
|
-
- test/sass/scss/css_test.rb
|
231
|
-
- test/sass/scss/rx_test.rb
|
232
|
-
- test/sass/scss/scss_test.rb
|
233
|
-
- test/sass/scss/test_helper.rb
|
234
|
-
- test/sass/templates/_cached_import_option_partial.scss
|
235
|
-
- test/sass/templates/_double_import_loop2.sass
|
216
|
+
- test/sass/css2sass_test.rb
|
236
217
|
- test/sass/templates/_filename_fn_import.scss
|
237
|
-
- test/sass/templates/
|
238
|
-
- test/sass/templates/
|
218
|
+
- test/sass/templates/basic.sass
|
219
|
+
- test/sass/templates/mixins.sass
|
220
|
+
- test/sass/templates/options.sass
|
221
|
+
- test/sass/templates/scss_import.scss
|
222
|
+
- test/sass/templates/subdir/subdir.sass
|
223
|
+
- test/sass/templates/subdir/import_up2.scss
|
224
|
+
- test/sass/templates/subdir/nested_subdir/_nested_partial.sass
|
225
|
+
- test/sass/templates/subdir/nested_subdir/nested_subdir.sass
|
226
|
+
- test/sass/templates/subdir/import_up1.scss
|
239
227
|
- test/sass/templates/_imported_content.sass
|
240
|
-
- test/sass/templates/
|
241
|
-
- test/sass/templates/_same_name_different_partiality.scss
|
228
|
+
- test/sass/templates/filename_fn.scss
|
242
229
|
- test/sass/templates/alt.sass
|
243
|
-
- test/sass/templates/
|
244
|
-
- test/sass/templates/
|
245
|
-
- test/sass/templates/
|
230
|
+
- test/sass/templates/nested_bork1.sass
|
231
|
+
- test/sass/templates/same_name_different_partiality.scss
|
232
|
+
- test/sass/templates/complex.sass
|
233
|
+
- test/sass/templates/units.sass
|
234
|
+
- test/sass/templates/nested_import.sass
|
235
|
+
- test/sass/templates/importee.sass
|
236
|
+
- test/sass/templates/importee.less
|
237
|
+
- test/sass/templates/_cached_import_option_partial.scss
|
238
|
+
- test/sass/templates/scss_importee.scss
|
239
|
+
- test/sass/templates/line_numbers.sass
|
240
|
+
- test/sass/templates/expanded.sass
|
246
241
|
- test/sass/templates/bork3.sass
|
247
|
-
- test/sass/templates/bork4.sass
|
248
242
|
- test/sass/templates/bork5.sass
|
249
|
-
- test/sass/templates/
|
243
|
+
- test/sass/templates/import_content.sass
|
244
|
+
- test/sass/templates/warn_imported.sass
|
245
|
+
- test/sass/templates/import_charset_ibm866.sass
|
246
|
+
- test/sass/templates/bork1.sass
|
247
|
+
- test/sass/templates/warn.sass
|
248
|
+
- test/sass/templates/bork2.sass
|
249
|
+
- test/sass/templates/nested.sass
|
250
250
|
- test/sass/templates/compact.sass
|
251
|
-
- test/sass/templates/
|
252
|
-
- test/sass/templates/
|
251
|
+
- test/sass/templates/single_import_loop.sass
|
252
|
+
- test/sass/templates/_same_name_different_partiality.scss
|
253
|
+
- test/sass/templates/multiline.sass
|
254
|
+
- test/sass/templates/_imported_charset_ibm866.sass
|
253
255
|
- test/sass/templates/double_import_loop1.sass
|
254
|
-
- test/sass/templates/
|
255
|
-
- test/sass/templates/filename_fn.scss
|
256
|
-
- test/sass/templates/if.sass
|
257
|
-
- test/sass/templates/import.sass
|
256
|
+
- test/sass/templates/_double_import_loop2.sass
|
258
257
|
- test/sass/templates/import_charset.sass
|
259
|
-
- test/sass/templates/
|
260
|
-
- test/sass/templates/
|
261
|
-
- test/sass/templates/import_content.sass
|
262
|
-
- test/sass/templates/importee.less
|
263
|
-
- test/sass/templates/importee.sass
|
264
|
-
- test/sass/templates/line_numbers.sass
|
265
|
-
- test/sass/templates/mixin_bork.sass
|
266
|
-
- test/sass/templates/mixins.sass
|
267
|
-
- test/sass/templates/multiline.sass
|
268
|
-
- test/sass/templates/nested.sass
|
269
|
-
- test/sass/templates/nested_bork1.sass
|
270
|
-
- test/sass/templates/nested_bork2.sass
|
258
|
+
- test/sass/templates/parent_ref.sass
|
259
|
+
- test/sass/templates/import.sass
|
271
260
|
- test/sass/templates/nested_bork3.sass
|
272
|
-
- test/sass/templates/
|
273
|
-
- test/sass/templates/
|
261
|
+
- test/sass/templates/script.sass
|
262
|
+
- test/sass/templates/same_name_different_ext.scss
|
263
|
+
- test/sass/templates/bork4.sass
|
264
|
+
- test/sass/templates/if.sass
|
265
|
+
- test/sass/templates/_partial.sass
|
274
266
|
- test/sass/templates/nested_mixin_bork.sass
|
275
|
-
- test/sass/templates/
|
276
|
-
- test/sass/templates/parent_ref.sass
|
267
|
+
- test/sass/templates/import_charset_1_8.sass
|
277
268
|
- test/sass/templates/same_name_different_ext.sass
|
278
|
-
- test/sass/templates/
|
279
|
-
- test/sass/templates/
|
280
|
-
- test/sass/templates/
|
281
|
-
- test/sass/templates/
|
282
|
-
- test/sass/templates/
|
283
|
-
- test/sass/templates/
|
284
|
-
- test/sass/
|
285
|
-
- test/sass/
|
286
|
-
- test/sass/
|
287
|
-
- test/sass/templates/subdir/nested_subdir/nested_subdir.sass
|
288
|
-
- test/sass/templates/subdir/subdir.sass
|
289
|
-
- test/sass/templates/units.sass
|
290
|
-
- test/sass/templates/warn.sass
|
291
|
-
- test/sass/templates/warn_imported.sass
|
292
|
-
- test/sass/test_helper.rb
|
293
|
-
- test/sass/util/multibyte_string_scanner_test.rb
|
269
|
+
- test/sass/templates/nested_bork2.sass
|
270
|
+
- test/sass/templates/mixin_bork.sass
|
271
|
+
- test/sass/templates/compressed.sass
|
272
|
+
- test/sass/templates/nested_bork4.sass
|
273
|
+
- test/sass/templates/cached_import_option.scss
|
274
|
+
- test/sass/templates/_imported_charset_utf8.sass
|
275
|
+
- test/sass/conversion_test.rb
|
276
|
+
- test/sass/script_test.rb
|
277
|
+
- test/sass/exec_test.rb
|
294
278
|
- test/sass/util/subset_map_test.rb
|
279
|
+
- test/sass/util/multibyte_string_scanner_test.rb
|
280
|
+
- test/sass/callbacks_test.rb
|
281
|
+
- test/sass/importer_test.rb
|
282
|
+
- test/sass/scss/css_test.rb
|
283
|
+
- test/sass/scss/scss_test.rb
|
284
|
+
- test/sass/scss/rx_test.rb
|
285
|
+
- test/sass/scss/test_helper.rb
|
295
286
|
- test/sass/util_test.rb
|
296
|
-
- test/
|
297
|
-
-
|
298
|
-
-
|
299
|
-
-
|
300
|
-
-
|
301
|
-
-
|
302
|
-
-
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
-
|
312
|
-
-
|
313
|
-
-
|
314
|
-
-
|
315
|
-
-
|
316
|
-
-
|
317
|
-
-
|
318
|
-
-
|
319
|
-
-
|
320
|
-
-
|
321
|
-
-
|
322
|
-
-
|
323
|
-
-
|
324
|
-
-
|
325
|
-
-
|
326
|
-
-
|
327
|
-
-
|
328
|
-
-
|
329
|
-
-
|
330
|
-
-
|
331
|
-
-
|
332
|
-
-
|
333
|
-
-
|
334
|
-
-
|
335
|
-
-
|
336
|
-
-
|
287
|
+
- test/sass/results/mixins.css
|
288
|
+
- test/sass/results/warn_imported.css
|
289
|
+
- test/sass/results/expanded.css
|
290
|
+
- test/sass/results/compact.css
|
291
|
+
- test/sass/results/import_content.css
|
292
|
+
- test/sass/results/compressed.css
|
293
|
+
- test/sass/results/scss_importee.css
|
294
|
+
- test/sass/results/basic.css
|
295
|
+
- test/sass/results/subdir/nested_subdir/nested_subdir.css
|
296
|
+
- test/sass/results/subdir/subdir.css
|
297
|
+
- test/sass/results/options.css
|
298
|
+
- test/sass/results/scss_import.css
|
299
|
+
- test/sass/results/units.css
|
300
|
+
- test/sass/results/parent_ref.css
|
301
|
+
- test/sass/results/script.css
|
302
|
+
- test/sass/results/complex.css
|
303
|
+
- test/sass/results/cached_import_option.css
|
304
|
+
- test/sass/results/import_charset.css
|
305
|
+
- test/sass/results/alt.css
|
306
|
+
- test/sass/results/if.css
|
307
|
+
- test/sass/results/multiline.css
|
308
|
+
- test/sass/results/import_charset_1_8.css
|
309
|
+
- test/sass/results/warn.css
|
310
|
+
- test/sass/results/import_charset_ibm866.css
|
311
|
+
- test/sass/results/filename_fn.css
|
312
|
+
- test/sass/results/import.css
|
313
|
+
- test/sass/results/nested.css
|
314
|
+
- test/sass/results/line_numbers.css
|
315
|
+
- test/sass/test_helper.rb
|
316
|
+
- test/sass/more_templates/_more_partial.sass
|
317
|
+
- test/sass/more_templates/more_import.sass
|
318
|
+
- test/sass/more_templates/more1.sass
|
319
|
+
- test/sass/script_conversion_test.rb
|
320
|
+
- test/sass/more_results/more1.css
|
321
|
+
- test/sass/more_results/more1_with_line_comments.css
|
322
|
+
- test/sass/more_results/more_import.css
|
323
|
+
- test/sass/mock_importer.rb
|
324
|
+
- test/sass/cache_test.rb
|
325
|
+
- test/sass/plugin_test.rb
|
326
|
+
- extra/update_watch.rb
|
327
|
+
- Rakefile
|
328
|
+
- init.rb
|
329
|
+
- .yardopts
|
330
|
+
- README.md
|
331
|
+
- VERSION_NAME
|
332
|
+
- VERSION_DATE
|
333
|
+
- REVISION
|
334
|
+
- MIT-LICENSE
|
335
|
+
- VERSION
|
336
|
+
- CONTRIBUTING
|
337
337
|
homepage: http://sass-lang.com/
|
338
338
|
licenses:
|
339
339
|
- MIT
|
@@ -354,27 +354,27 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
354
|
version: '0'
|
355
355
|
requirements: []
|
356
356
|
rubyforge_project: sass
|
357
|
-
rubygems_version: 2.
|
357
|
+
rubygems_version: 2.0.3
|
358
358
|
signing_key:
|
359
359
|
specification_version: 4
|
360
360
|
summary: A powerful but elegant CSS compiler that makes CSS fun again.
|
361
361
|
test_files:
|
362
|
-
- test/sass/util_test.rb
|
363
|
-
- test/sass/scss/scss_test.rb
|
364
|
-
- test/sass/scss/rx_test.rb
|
365
|
-
- test/sass/scss/css_test.rb
|
366
|
-
- test/sass/callbacks_test.rb
|
367
|
-
- test/sass/cache_test.rb
|
368
362
|
- test/sass/engine_test.rb
|
369
|
-
- test/sass/css2sass_test.rb
|
370
|
-
- test/sass/conversion_test.rb
|
371
|
-
- test/sass/util/subset_map_test.rb
|
372
|
-
- test/sass/util/multibyte_string_scanner_test.rb
|
373
|
-
- test/sass/plugin_test.rb
|
374
363
|
- test/sass/functions_test.rb
|
375
364
|
- test/sass/extend_test.rb
|
376
|
-
- test/sass/script_conversion_test.rb
|
377
365
|
- test/sass/logger_test.rb
|
378
|
-
- test/sass/
|
366
|
+
- test/sass/css2sass_test.rb
|
367
|
+
- test/sass/conversion_test.rb
|
379
368
|
- test/sass/script_test.rb
|
380
369
|
- test/sass/exec_test.rb
|
370
|
+
- test/sass/util/subset_map_test.rb
|
371
|
+
- test/sass/util/multibyte_string_scanner_test.rb
|
372
|
+
- test/sass/callbacks_test.rb
|
373
|
+
- test/sass/importer_test.rb
|
374
|
+
- test/sass/scss/css_test.rb
|
375
|
+
- test/sass/scss/scss_test.rb
|
376
|
+
- test/sass/scss/rx_test.rb
|
377
|
+
- test/sass/util_test.rb
|
378
|
+
- test/sass/script_conversion_test.rb
|
379
|
+
- test/sass/cache_test.rb
|
380
|
+
- test/sass/plugin_test.rb
|