sass 3.1.0.alpha.5 → 3.1.0.alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/EDGE_GEM_VERSION +1 -1
  2. data/VERSION +1 -1
  3. metadata +23 -23
@@ -1 +1 @@
1
- 3.1.0.alpha.5
1
+ 3.1.0.alpha.6
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0.alpha.5
1
+ 3.1.0.alpha.6
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.1.0.alpha.5
4
+ version: 3.1.0.alpha.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum
@@ -55,15 +55,21 @@ files:
55
55
  - lib/sass/exec.rb
56
56
  - lib/sass/less.rb
57
57
  - lib/sass/plugin.rb
58
+ - lib/sass/script.rb
59
+ - lib/sass/selector.rb
60
+ - lib/sass/cache_store.rb
58
61
  - lib/sass/plugin/configuration.rb
59
- - lib/sass/plugin/generic.rb
60
62
  - lib/sass/plugin/merb.rb
61
- - lib/sass/plugin/rack.rb
63
+ - lib/sass/plugin/generic.rb
62
64
  - lib/sass/plugin/rails.rb
65
+ - lib/sass/plugin/rack.rb
63
66
  - lib/sass/plugin/staleness_checker.rb
64
67
  - lib/sass/plugin/compiler.rb
68
+ - lib/sass/importers.rb
65
69
  - lib/sass/repl.rb
66
- - lib/sass/script.rb
70
+ - lib/sass/importers/base.rb
71
+ - lib/sass/importers/filesystem.rb
72
+ - lib/sass/root.rb
67
73
  - lib/sass/script/bool.rb
68
74
  - lib/sass/script/color.rb
69
75
  - lib/sass/script/css_lexer.rb
@@ -89,12 +95,13 @@ files:
89
95
  - lib/sass/scss/script_lexer.rb
90
96
  - lib/sass/scss/script_parser.rb
91
97
  - lib/sass/scss/static_parser.rb
92
- - lib/sass/selector.rb
98
+ - lib/sass/railtie.rb
93
99
  - lib/sass/selector/abstract_sequence.rb
94
100
  - lib/sass/selector/comma_sequence.rb
95
101
  - lib/sass/selector/sequence.rb
96
102
  - lib/sass/selector/simple.rb
97
103
  - lib/sass/selector/simple_sequence.rb
104
+ - lib/sass/shared.rb
98
105
  - lib/sass/tree/comment_node.rb
99
106
  - lib/sass/tree/debug_node.rb
100
107
  - lib/sass/tree/directive_node.rb
@@ -111,13 +118,6 @@ files:
111
118
  - lib/sass/tree/variable_node.rb
112
119
  - lib/sass/tree/warn_node.rb
113
120
  - lib/sass/tree/while_node.rb
114
- - lib/sass/cache_store.rb
115
- - lib/sass/importers.rb
116
- - lib/sass/importers/base.rb
117
- - lib/sass/importers/filesystem.rb
118
- - lib/sass/railtie.rb
119
- - lib/sass/root.rb
120
- - lib/sass/shared.rb
121
121
  - lib/sass/util.rb
122
122
  - lib/sass/util/subset_map.rb
123
123
  - lib/sass/version.rb
@@ -154,22 +154,24 @@ files:
154
154
  - bin/css2sass
155
155
  - bin/sass
156
156
  - bin/sass-convert
157
- - test/test_helper.rb
157
+ - test/sass/css2sass_test.rb
158
158
  - test/sass/callbacks_test.rb
159
159
  - test/sass/conversion_test.rb
160
- - test/sass/css2sass_test.rb
161
- - test/sass/data/hsl-rgb.txt
162
160
  - test/sass/engine_test.rb
161
+ - test/sass/data/hsl-rgb.txt
162
+ - test/sass/plugin_test.rb
163
163
  - test/sass/extend_test.rb
164
164
  - test/sass/functions_test.rb
165
+ - test/sass/cache_test.rb
165
166
  - test/sass/less_conversion_test.rb
167
+ - test/sass/importer_test.rb
166
168
  - test/sass/more_results/more1.css
167
169
  - test/sass/more_results/more1_with_line_comments.css
168
170
  - test/sass/more_results/more_import.css
169
171
  - test/sass/more_templates/_more_partial.sass
170
172
  - test/sass/more_templates/more1.sass
171
173
  - test/sass/more_templates/more_import.sass
172
- - test/sass/plugin_test.rb
174
+ - test/sass/mock_importer.rb
173
175
  - test/sass/results/alt.css
174
176
  - test/sass/results/basic.css
175
177
  - test/sass/results/compact.css
@@ -232,12 +234,10 @@ files:
232
234
  - test/sass/templates/units.sass
233
235
  - test/sass/templates/warn.sass
234
236
  - test/sass/templates/warn_imported.sass
235
- - test/sass/cache_test.rb
236
- - test/sass/importer_test.rb
237
- - test/sass/mock_importer.rb
238
237
  - test/sass/test_helper.rb
239
238
  - test/sass/util/subset_map_test.rb
240
239
  - test/sass/util_test.rb
240
+ - test/test_helper.rb
241
241
  - extra/update_watch.rb
242
242
  - Rakefile
243
243
  - init.rb
@@ -278,20 +278,20 @@ signing_key:
278
278
  specification_version: 3
279
279
  summary: A powerful but elegant CSS compiler that makes CSS fun again.
280
280
  test_files:
281
+ - test/sass/css2sass_test.rb
281
282
  - test/sass/callbacks_test.rb
282
283
  - test/sass/conversion_test.rb
283
- - test/sass/css2sass_test.rb
284
284
  - test/sass/engine_test.rb
285
+ - test/sass/plugin_test.rb
285
286
  - test/sass/extend_test.rb
286
287
  - test/sass/functions_test.rb
288
+ - test/sass/cache_test.rb
287
289
  - test/sass/less_conversion_test.rb
288
- - test/sass/plugin_test.rb
290
+ - test/sass/importer_test.rb
289
291
  - test/sass/script_conversion_test.rb
290
292
  - test/sass/script_test.rb
291
293
  - test/sass/scss/css_test.rb
292
294
  - test/sass/scss/rx_test.rb
293
295
  - test/sass/scss/scss_test.rb
294
- - test/sass/cache_test.rb
295
- - test/sass/importer_test.rb
296
296
  - test/sass/util/subset_map_test.rb
297
297
  - test/sass/util_test.rb