sass 3.7.3 → 3.7.4
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.
- checksums.yaml +5 -5
- data/CODE_OF_CONDUCT.md +1 -1
- data/CONTRIBUTING.md +2 -2
- data/README.md +12 -14
- data/VERSION +1 -1
- data/VERSION_DATE +1 -1
- data/lib/sass/script/tree/operation.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6442c161b5fc7709753d4bdc2a134f340af6d908
|
4
|
+
data.tar.gz: '0946cacd17612b438ce689b86cce9fa6a90bc208'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87b7eb8440a85957deaf8b83549d60fdb86f8c5f865aab9db67bee7ba8cd5c0985f05018c9a7ff18e1ea514aa2beb8dbca238257f76e6db14b9f6b1793bf4388
|
7
|
+
data.tar.gz: 5c786b64db488ba61d018257943aeb1ab9365c2e7069201ae0a5759fdbe6576f36d57a885ea690824d15d398d2c8c656fb21be0460ca5f6b088f2e10cfd1edee
|
data/CODE_OF_CONDUCT.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Contributions are welcomed. Please see the following site for guidelines:
|
2
2
|
|
3
|
-
[
|
3
|
+
[https://sass-lang.com/community#Contribute](https://sass-lang.com/community#Contribute)
|
4
4
|
|
5
5
|
* [Branches](#main-development-branches)
|
6
6
|
* [Feature Branches](#feature-branches)
|
@@ -100,7 +100,7 @@ like [`Sass::Engine`][Sass::Engine] stable, we don't have a strong distinction
|
|
100
100
|
between public and private APIs and we need to be able to freely refactor our
|
101
101
|
code.
|
102
102
|
|
103
|
-
[Sass::Engine]:
|
103
|
+
[Sass::Engine]: https://sass-lang.com/documentation/Sass/Engine.html
|
104
104
|
|
105
105
|
### Making Breaking Changes
|
106
106
|
|
data/README.md
CHANGED
@@ -1,11 +1,9 @@
|
|
1
|
-
## Ruby Sass
|
1
|
+
## Ruby Sass Has Reached End-of-Life
|
2
2
|
|
3
|
-
Ruby Sass
|
4
|
-
|
5
|
-
See [the Sass website][] for details, and consider switching to the [`sassc`
|
6
|
-
gem][]
|
3
|
+
Ruby Sass should no longer be used, and will no longer be receiving any updates.
|
4
|
+
See [the Sass blog][], and consider switching to the [`sassc` gem].
|
7
5
|
|
8
|
-
[the Sass
|
6
|
+
[the Sass blog]: https://sass-lang.com/blog/posts/7828841
|
9
7
|
[`sassc` gem]: https://rubygems.org/gems/sassc
|
10
8
|
|
11
9
|
# Sass [](https://travis-ci.org/sass/ruby-sass) [](http://badge.fury.io/rb/sass) [](http://inch-ci.org/github/sass/sass)
|
@@ -54,7 +52,7 @@ In Rails 3, add `gem "sass"` to your Gemfile instead.
|
|
54
52
|
where they'll be automatically compiled
|
55
53
|
to corresponding CSS files in `public/stylesheets` when needed
|
56
54
|
(the Sass template directory is customizable...
|
57
|
-
see [the Sass reference](
|
55
|
+
see [the Sass reference](https://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#template_location-option) for details).
|
58
56
|
|
59
57
|
Sass can also be used with any Rack-enabled web framework.
|
60
58
|
To do so, just add
|
@@ -69,7 +67,7 @@ Then any Sass files in `public/stylesheets/sass`
|
|
69
67
|
will be compiled into CSS files in `public/stylesheets` on every request.
|
70
68
|
|
71
69
|
To use Sass programmatically,
|
72
|
-
check out the [YARD documentation](
|
70
|
+
check out the [YARD documentation](https://sass-lang.com/documentation/file.SASS_REFERENCE.html#using_sass).
|
73
71
|
|
74
72
|
## Formatting
|
75
73
|
|
@@ -83,10 +81,10 @@ and get small stylesheets up and running quickly,
|
|
83
81
|
particularly with the help of
|
84
82
|
[the Compass style library](http://compass-style.org).
|
85
83
|
|
86
|
-
[vars]:
|
87
|
-
[nested]:
|
88
|
-
[mixins]:
|
89
|
-
[imports]:
|
84
|
+
[vars]: https://sass-lang.com/documentation/file.SASS_REFERENCE.html#variables_
|
85
|
+
[nested]: https://sass-lang.com/documentation/file.SASS_REFERENCE.html#nested_rules
|
86
|
+
[mixins]: https://sass-lang.com/documentation/file.SASS_REFERENCE.html#mixins
|
87
|
+
[imports]: https://sass-lang.com/documentation/file.SASS_REFERENCE.html#import
|
90
88
|
|
91
89
|
Sass has two syntaxes.
|
92
90
|
The one presented here, known as "SCSS" (for "Sassy CSS"),
|
@@ -95,7 +93,7 @@ The other (older) syntax, known as the indented syntax or just "Sass",
|
|
95
93
|
is whitespace-sensitive and indentation-based.
|
96
94
|
For more information, see the [reference documentation][syntax].
|
97
95
|
|
98
|
-
[syntax]:
|
96
|
+
[syntax]: https://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax
|
99
97
|
|
100
98
|
To run the following examples and see the CSS they produce,
|
101
99
|
put them in a file called `test.scss` and run `sass test.scss`.
|
@@ -170,7 +168,7 @@ You can even give them arguments.
|
|
170
168
|
```
|
171
169
|
|
172
170
|
A comprehensive list of features is available
|
173
|
-
in the [Sass reference](
|
171
|
+
in the [Sass reference](https://sass-lang.com/documentation/file.SASS_REFERENCE.html).
|
174
172
|
|
175
173
|
## Executables
|
176
174
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.7.
|
1
|
+
3.7.4
|
data/VERSION_DATE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
04
|
1
|
+
04 April 2019 00:49:58 UTC
|
@@ -111,7 +111,7 @@ module Sass::Script::Tree
|
|
111
111
|
@@color_arithmetic_deprecation.warn(filename, line, <<WARNING)
|
112
112
|
The operation `#{value1} #{@operator} #{value2}` is deprecated and will be an error in future versions.
|
113
113
|
Consider using Sass's color functions instead.
|
114
|
-
|
114
|
+
https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions
|
115
115
|
WARNING
|
116
116
|
end
|
117
117
|
|
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.7.
|
4
|
+
version: 3.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Natalie Weizenbaum
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2019-
|
13
|
+
date: 2019-04-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: sass-listen
|
@@ -243,14 +243,14 @@ files:
|
|
243
243
|
- lib/sass/util/test.rb
|
244
244
|
- lib/sass/version.rb
|
245
245
|
- rails/init.rb
|
246
|
-
homepage:
|
246
|
+
homepage: https://sass-lang.com/
|
247
247
|
licenses:
|
248
248
|
- MIT
|
249
249
|
metadata:
|
250
250
|
source_code_uri: https://github.com/sass/ruby-sass
|
251
251
|
post_install_message: |2+
|
252
252
|
|
253
|
-
Ruby Sass
|
253
|
+
Ruby Sass has reached end-of-life and should no longer be used.
|
254
254
|
|
255
255
|
* If you use Sass as a command-line tool, we recommend using Dart Sass, the new
|
256
256
|
primary implementation: https://sass-lang.com/install
|
@@ -259,7 +259,7 @@ post_install_message: |2+
|
|
259
259
|
sassc gem: https://github.com/sass/sassc-ruby#readme
|
260
260
|
|
261
261
|
* For more details, please refer to the Sass blog:
|
262
|
-
|
262
|
+
https://sass-lang.com/blog/posts/7828841
|
263
263
|
|
264
264
|
rdoc_options: []
|
265
265
|
require_paths:
|
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
version: '0'
|
277
277
|
requirements: []
|
278
278
|
rubyforge_project: sass
|
279
|
-
rubygems_version: 2.
|
279
|
+
rubygems_version: 2.6.14
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
282
|
summary: A powerful but elegant CSS compiler that makes CSS fun again.
|