sass 3.1.0.alpha.259 → 3.1.0.alpha.261

Sign up to get free protection for your applications and to get access to all the features.
data/REVISION CHANGED
@@ -1 +1 @@
1
- da3152d53b6aaac3437c234a68aaaa8cb54b0de9
1
+ 6c4103830c546f347dbed1be211dec4e7ab0f591
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0.alpha.259
1
+ 3.1.0.alpha.261
@@ -90,7 +90,7 @@ module Sass::Script
90
90
  #
91
91
  # ## Other Color Functions
92
92
  #
93
- # \{#adjust adjust-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
93
+ # \{#adjust_color adjust-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
94
94
  # : Increase or decrease any of the components of a color.
95
95
  #
96
96
  # \{#scale_color scale-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
@@ -796,9 +796,9 @@ module Sass::Script
796
796
  declare :adjust_color, [:color], :var_kwargs => true
797
797
 
798
798
  # Scales one or more properties of a color by a percentage value.
799
- # Unlike \{#adjust}, which changes a color's properties by fixed amounts,
800
- # \{#scale} fluidly changes them based on how high or low they already are.
801
- # That means that lightening an already-light color with \{#scale}
799
+ # Unlike \{#adjust_color adjust-color}, which changes a color's properties by fixed amounts,
800
+ # \{#scale_color scale-color} fluidly changes them based on how high or low they already are.
801
+ # That means that lightening an already-light color with \{#scale_color scale-color}
802
802
  # won't change the lightness much,
803
803
  # but lightening a dark color by the same amount will change it more dramatically.
804
804
  # This has the benefit of making `scale-color($color, ...)` have a similar effect
@@ -5,7 +5,7 @@ module Sass::Tree::Visitors
5
5
  # The abstract base class for Sass visitors.
6
6
  # Visitors should extend this class,
7
7
  # then implement `visit_*` methods for each node they care about
8
- # (e.g. `visit_rule` for {RuleNode} or `visit_for` for {FileNode}).
8
+ # (e.g. `visit_rule` for {RuleNode} or `visit_for` for {ForNode}).
9
9
  # These methods take the node in question as argument.
10
10
  # They may `yield` to visit the child nodes of the current node.
11
11
  #
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.259
4
+ version: 3.1.0.alpha.261
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum