Skip to content

Commit 79b0047

Browse files
committed
Update README and bump dependencies
1 parent 179d438 commit 79b0047

File tree

8 files changed

+83
-63
lines changed

8 files changed

+83
-63
lines changed

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
CSS::Sass (3.3.5)
22

33
* Fix spec runner to pass on linux (unicode issue)
4+
* Fix broken unicode test comparing on some systems
45
* Add missing test dependency in meta files (YAML::XS)
6+
* Update README for Module::Build to ExtUtils::MM switch
57

68
CSS::Sass (3.3.4)
79

README.md

+34-16
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ CSS::Sass
44
### Compile .scss and .sass files using libsass
55

66
CSS::Sass provides a perl interface to [libsass][1], a fairly complete Sass
7-
compiler written in C++. It is currently somewhere around ruby sass 3.2/3.3
8-
feature parity and heading towards 3.4. It can compile .scss and .sass files.
7+
compiler written in C++. It is currently around ruby sass 3.3/3.4 feature parity and
8+
heading towards full 3.4 compatibility. It can compile .scss and .sass files.
99

1010
[1]: https://github.com/sass/libsass
1111

@@ -16,14 +16,40 @@ Installation
1616
[![Coverage Status](https://img.shields.io/coveralls/sass/perl-libsass.svg)](https://coveralls.io/r/sass/perl-libsass?branch=master)
1717
[![CPAN version](https://badge.fury.io/pl/CSS-Sass.svg)](http://badge.fury.io/pl/CSS-Sass)
1818

19-
To install this module type the following:
19+
Manual installation:
20+
```bash
21+
git clone https://github.com/sass/libsass
22+
cd libsass
23+
perl Makefile.PL
24+
make verbose=1
25+
make test verbose=1
26+
make install verbose=1
27+
```
28+
29+
Standard CPAN:
30+
```bash
31+
cpan CSS::Sass
32+
```
33+
34+
CPAN-Minus*:
35+
```bash
36+
cpanm CSS::Sass
37+
```
38+
39+
CPAN-Minus* directly via github:
40+
```bash
41+
cpanm https://github.com/sass/perl-libsass/archive/latest.tar.gz
42+
```
2043

21-
perl Build.PL
22-
./Build verbose=1
23-
./Build test verbose=1
24-
./Build install verbose=1
44+
(*) CPAN-Minus may not be installed by default, but there is a good
45+
chance your distribution has a package for it:
46+
```bash
47+
# example for ubuntu:
48+
apt install cpanminus
49+
```
2550

26-
On windows you may need to install [Strawberry Perl](http://strawberryperl.com/).
51+
On windows I recommend [Strawberry Perl](http://strawberryperl.com/).
52+
You then also need to use `dmake` instead of `make` for manual installs.
2753

2854
Documentation
2955
-------------
@@ -40,14 +66,6 @@ Or view [converted markdown version][1]
4066

4167
[1]: https://github.com/sass/perl-libsass/blob/master/lib/CSS/Sass.md
4268

43-
Dependencies
44-
------------
45-
46-
This module requires these other modules and libraries:
47-
48-
* Module::Build
49-
* Test::More
50-
5169
Command line utility
5270
--------------------
5371

lib/CSS/Sass.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ CSS::Sass - Compile .scss files using libsass
7474
# DESCRIPTION
7575

7676
CSS::Sass provides a perl interface to libsass, a fairly complete Sass
77-
compiler written in C++. It is currently somewhere around ruby sass 3.3/3.4
78-
feature parity and heading towards 3.4. It can compile .scss and .sass files.
77+
compiler written in C++. It is currently around ruby sass 3.3/3.4 feature parity and
78+
heading towards full 3.4 compatibility. It can compile .scss and .sass files.
7979

8080
# OBJECT ORIENTED INTERFACE
8181

@@ -207,7 +207,7 @@ feature parity and heading towards 3.4. It can compile .scss and .sass files.
207207
- `plugin_paths`
208208

209209
This is an arrayref that holds a list of paths to search for third-party
210-
plugins. It will automatically load any <dll> or <so> library within that
210+
plugins. It will automatically load any &lt;dll> or &lt;so> library within that
211211
directory. This is currently a highly experimental libsass feature!
212212

213213
- `dont_die`
@@ -372,8 +372,8 @@ feature parity and heading towards 3.4. It can compile .scss and .sass files.
372372

373373
# AUTHOR
374374

375-
David Caldwell <[email protected]>
376-
Marcel Greter <[email protected]>
375+
David Caldwell &lt;[email protected]>
376+
Marcel Greter &lt;[email protected]>
377377

378378
# LICENSE
379379

lib/CSS/Sass.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ CSS::Sass - Compile .scss files using libsass
273273
=head1 DESCRIPTION
274274
275275
CSS::Sass provides a perl interface to libsass, a fairly complete Sass
276-
compiler written in C++. It is currently somewhere around ruby sass 3.3/3.4
277-
feature parity and heading towards 3.4. It can compile .scss and .sass files.
276+
compiler written in C++. It is currently around ruby sass 3.3/3.4 feature parity and
277+
heading towards full 3.4 compatibility. It can compile .scss and .sass files.
278278
279279
=head1 OBJECT ORIENTED INTERFACE
280280

lib/CSS/Sass/Value.md

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
11
# NAME
22

3-
CSS::Sass::Type - Data Types for custom Sass Functions
3+
CSS::Sass::Value - Data Types for custom Sass Functions
44

55
# Mapping `Sass_Values` to perl data structures
66

77
You can use `maps` and `lists` like normal `hash` or `array` references. Lists
88
can have two different separators used for stringification. This is detected by
9-
checking if the object is derived from `CSS::Sass::Type::List::Space`. The default
10-
is a comma separated list, which you get by instantiating `CSS::Sass::Type::List`
11-
or `CSS::Sass::Type::List::Comma`.
12-
13-
my $null = CSS::Sass::Type->new(undef); # => 'null'
14-
my $number = CSS::Sass::Type->new(42.35); # => 42.35
15-
my $string = CSS::Sass::Type->new("foobar"); # => 'foobar'
16-
my $map = CSS::Sass::Type->new({ key => "foobar" }); # 'key: foobar'
17-
my $list = CSS::Sass::Type->new([ "foo", 42, "bar" ]); # 'foo, 42, bar'
18-
my $space = CSS::Sass::Type::List::Space->new("foo", "bar"); # 'foo bar'
19-
my $comma = CSS::Sass::Type::List::Comma->new("foo", "bar"); # 'foo, bar'
9+
checking if the object is derived from `CSS::Sass::Value::List::Space`. The default
10+
is a comma separated list, which you get by instantiating `CSS::Sass::Value::List`
11+
or `CSS::Sass::Value::List::Comma`.
12+
13+
my $null = CSS::Sass::Value->new(undef); # => 'null'
14+
my $number = CSS::Sass::Value->new(42.35); # => 42.35
15+
my $string = CSS::Sass::Value->new("foobar"); # => 'foobar'
16+
my $map = CSS::Sass::Value->new({ key => "foobar" }); # 'key: foobar'
17+
my $list = CSS::Sass::Value->new([ "foo", 42, "bar" ]); # 'foo, 42, bar'
18+
my $space = CSS::Sass::Value::List::Space->new("foo", "bar"); # 'foo bar'
19+
my $comma = CSS::Sass::Value::List::Comma->new("foo", "bar"); # 'foo, bar'
2020

2121
You can also return these native perl types from custom functions. They will
22-
automatically be upgraded to real `CSS::Sass::Type` objects. All types
22+
automatically be upgraded to real `CSS::Sass::Value` objects. All types
2323
overload the `stringify` and `eq` operators (so far).
2424

25-
## CSS::Sass::Type
25+
## CSS::Sass::Value
2626

2727
Acts as a base class for all other types and is mainly an abstract class.
2828
It only implements a generic constructor, which accepts native perl data types
29-
(undef, numbers, strings, array-refs and hash-refs) and `CSS::Sass::Type` objects.
29+
(undef, numbers, strings, array-refs and hash-refs) and `CSS::Sass::Value` objects.
3030

31-
## CSS::Sass::Type::Null
31+
## CSS::Sass::Value::Null
3232

33-
my $null = CSS::Sass::Type::Null->new;
33+
my $null = CSS::Sass::Value::Null->new;
3434
my $string = "$null"; # eq 'null'
3535
my $value = $null->value; # == undef
3636

37-
## CSS::Sass::Type::Boolean
37+
## CSS::Sass::Value::Boolean
3838

39-
my $bool = CSS::Sass::Type::Boolean->new(42);
39+
my $bool = CSS::Sass::Value::Boolean->new(42);
4040
my $string = "$bool"; # eq 'true'
4141
my $value = $bool->value; # == 1
4242

43-
## CSS::Sass::Type::Number
43+
## CSS::Sass::Value::Number
4444

45-
my $number = CSS::Sass::Type::Boolean->new(42, 'px');
45+
my $number = CSS::Sass::Value::Boolean->new(42, 'px');
4646
my $string = "$number"; # eq '42px'
4747
my $value = $number->value; # == 42
4848
my $unit = $number->unit; # eq 'px'
4949

50-
## CSS::Sass::Type::String
50+
## CSS::Sass::Value::String
5151

52-
my $string = CSS::Sass::Type->new("foo bar"); # => "foo bar"
52+
my $string = CSS::Sass::Value->new("foo bar"); # => "foo bar"
5353
my $quoted = "$string"; # eq '"foo bar"'
5454
my $unquoted = $string->value; # eq 'foo bar'
5555

56-
## CSS::Sass::Type::Color
56+
## CSS::Sass::Value::Color
5757

58-
my $color = CSS::Sass::Type::Color->new(64, 128, 32, 0.25);
58+
my $color = CSS::Sass::Value::Color->new(64, 128, 32, 0.25);
5959
my $string = "$color"; # eq 'rgba(64, 128, 32, 0.25)'
6060
my $r = $color->r; # == 64
6161
my $g = $color->g; # == 128
6262
my $b = $color->b; # == 32
6363
my $a = $color->a; # == 0.25
6464

65-
## CSS::Sass::Type::Map
65+
## CSS::Sass::Value::Map
6666

67-
my $map = CSS::Sass::Type::Map->new(key => 'value');
68-
my $string = "$map"; # eq 'key: value'
69-
my $value = $map->{'key'}; # eq 'value'
67+
my $map = CSS::Sass::Value::Map->new(key => 'value');
68+
my $string = "$map"; # eq 'key: "value"'
69+
my $value = $map->{'key'}; # eq '"value"'
7070

71-
## CSS::Sass::Type::List::Comma
71+
## CSS::Sass::Value::List::Comma
7272

73-
my $list = CSS::Sass::Type::List::Comma->new('foo', 'bar');
74-
my $string = "$list"; # eq 'foo, bar'
73+
my $list = CSS::Sass::Value::List::Comma->new('foo', 'bar');
74+
my $string = "$list"; # eq '"foo", "bar"'
7575
my $value = $list->[0]; # eq 'foo'
7676

77-
## CSS::Sass::Type::List::Space
77+
## CSS::Sass::Value::List::Space
7878

79-
my $list = CSS::Sass::Type::List::Space->new('foo', 'bar');
80-
my $string = "$list"; # eq 'foo bar'
79+
my $list = CSS::Sass::Value::List::Space->new('foo', 'bar');
80+
my $string = "$list"; # eq '"foo" "bar"'
8181
my $value = $list->[-1]; # eq 'bar'
8282

8383
# SEE ALSO
@@ -86,8 +86,8 @@ It only implements a generic constructor, which accepts native perl data types
8686

8787
# AUTHOR
8888

89-
David Caldwell <[email protected]>
90-
Marcel Greter <[email protected]>
89+
David Caldwell &lt;[email protected]>
90+
Marcel Greter &lt;[email protected]>
9191

9292
# LICENSE
9393

lib/CSS/Sass/Value.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ L<CSS::Sass>
423423
424424
=head1 AUTHOR
425425
426-
David Caldwell E<lt>[email protected]E<gt>
426+
David Caldwell E<lt>[email protected]E<gt>
427427
Marcel Greter E<lt>[email protected]E<gt>
428428
429429
=head1 LICENSE

libsass

t/sass-spec

Submodule sass-spec updated 281 files

0 commit comments

Comments
 (0)