sass 3.7.3 → 3.7.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: b501c91de5f5de2bfce1dc6e6989335cf88290b44505c413cd63e260a8a00b6f
4
- data.tar.gz: 22a6b50234e93c4b8e20860a581d2475c9450dc5025230462a2f3609a77c8131
2
+ SHA1:
3
+ metadata.gz: 6442c161b5fc7709753d4bdc2a134f340af6d908
4
+ data.tar.gz: '0946cacd17612b438ce689b86cce9fa6a90bc208'
5
5
  SHA512:
6
- metadata.gz: 5af587ac1b73b8c62c4ddc470e12bd71181ea8de4d0f690e81d5f05f2cb25142cbd5cd04935cd4ab35b91b0651199cddf55992b00394827e3521db14ad489077
7
- data.tar.gz: 4dc3d9d1051fcaf67d10dcb51e57c33addfdfa6e43685376dc67cc13df71131e058b56869598d164236697d524d87154532189d9364c31fc0064de927aeadddc
6
+ metadata.gz: 87b7eb8440a85957deaf8b83549d60fdb86f8c5f865aab9db67bee7ba8cd5c0985f05018c9a7ff18e1ea514aa2beb8dbca238257f76e6db14b9f6b1793bf4388
7
+ data.tar.gz: 5c786b64db488ba61d018257943aeb1ab9365c2e7069201ae0a5759fdbe6576f36d57a885ea690824d15d398d2c8c656fb21be0460ca5f6b088f2e10cfd1edee
@@ -7,4 +7,4 @@ fair place to play.
7
7
 
8
8
  [The full community guidelines can be found on the Sass website.][link]
9
9
 
10
- [link]: http://sass-lang.com/community-guidelines
10
+ [link]: https://sass-lang.com/community-guidelines
@@ -1,6 +1,6 @@
1
1
  Contributions are welcomed. Please see the following site for guidelines:
2
2
 
3
- [http://sass-lang.com/community#Contribute](http://sass-lang.com/community#Contribute)
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]: http://sass-lang.com/documentation/Sass/Engine.html
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 is Deprecated!
1
+ ## Ruby Sass Has Reached End-of-Life
2
2
 
3
- Ruby Sass is in a sunset period where only critical bugs and CSS compatibility
4
- issues will be fixed. It will be completely unmaintained as of 26 March 2019.
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 website]: https://sass-lang.com/ruby-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 [![Travis Build Status](https://travis-ci.org/sass/ruby-sass.svg?branch=next)](https://travis-ci.org/sass/ruby-sass) [![Gem Version](https://badge.fury.io/rb/sass.svg)](http://badge.fury.io/rb/sass) [![Inline docs](http://inch-ci.org/github/sass/sass.svg)](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](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#template_location-option) for details).
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](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#using_sass).
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]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#variables_
87
- [nested]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#nested_rules
88
- [mixins]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#mixins
89
- [imports]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#import
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]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#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](http://sass-lang.com/documentation/file.SASS_REFERENCE.html).
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.3
1
+ 3.7.4
@@ -1 +1 @@
1
- 04 January 2019 19:29:42 UTC
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
- http://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions
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.3
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-01-04 00:00:00.000000000 Z
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: http://sass-lang.com/
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 is deprecated and will be unmaintained as of 26 March 2019.
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
- http://sass.logdown.com/posts/7081811
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.7.7
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.