bourbon 5.0.0.beta.4 → 5.0.0.beta.5
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 +4 -4
- data/CHANGELOG.md +16 -1
- data/bower.json +1 -1
- data/core/_bourbon.scss +1 -1
- data/core/bourbon/library/_font-face.scss +2 -2
- data/lib/bourbon.rb +4 -1
- data/lib/bourbon/version.rb +1 -1
- data/package.json +1 -1
- data/spec/fixtures/library/font-face-3.scss +2 -2
- data/spec/fixtures/library/font-face-4.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbcabb0de4099a8e82cae3ba0717c5067ef6d5bc
|
|
4
|
+
data.tar.gz: 23332a525fafb6e5b2febf8272829d6dbbc95a13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5ef886f1e4b3b503550a20ceeb3e2183c9c38c6351c32c304298e75d260de4dddfa3ec4b91ec02ec3f63cd984033982080bc063dbafcfaad29da5dfe4f0f751
|
|
7
|
+
data.tar.gz: cf1b84c963502b0c8f5909890a3cd72facc7f82f3100666fa80fd23d9901e26932a6793d3127e203b0ac7f21a34e68adfc51ebf1b85ee7c3412da88eecec5787
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,22 @@ project adheres to [Semantic Versioning](http://semver.org).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
[Unreleased]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.
|
|
8
|
+
[Unreleased]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.5...HEAD
|
|
9
|
+
|
|
10
|
+
## [5.0.0-beta.5] - 2016-03-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed a Sass load path issue that would intermittently break the importing of
|
|
15
|
+
Bourbon in Rails apps.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Swapped the order of the `$file-formats` and `$asset-pipeline` arguments in
|
|
20
|
+
the `font-face` mixin, so that `$asset-pipeline` is last (because it has a
|
|
21
|
+
default and is likely used the least).
|
|
22
|
+
|
|
23
|
+
[5.0.0-beta.5]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.4...v5.0.0.beta.5
|
|
9
24
|
|
|
10
25
|
## [5.0.0-beta.4] - 2016-03-11
|
|
11
26
|
|
data/bower.json
CHANGED
data/core/_bourbon.scss
CHANGED
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
@mixin font-face(
|
|
44
44
|
$font-family,
|
|
45
45
|
$file-path,
|
|
46
|
-
$
|
|
47
|
-
$
|
|
46
|
+
$file-formats: _bourbon-get-setting("global-font-file-formats"),
|
|
47
|
+
$asset-pipeline: _bourbon-get-setting("rails-asset-pipeline")
|
|
48
48
|
) {
|
|
49
49
|
|
|
50
50
|
@font-face {
|
data/lib/bourbon.rb
CHANGED
data/lib/bourbon/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bourbon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.0.beta.
|
|
4
|
+
version: 5.0.0.beta.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Reuter
|
|
@@ -17,7 +17,7 @@ authors:
|
|
|
17
17
|
autorequire:
|
|
18
18
|
bindir: bin
|
|
19
19
|
cert_chain: []
|
|
20
|
-
date: 2016-03-
|
|
20
|
+
date: 2016-03-23 00:00:00.000000000 Z
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
23
23
|
name: aruba
|