bourbon 4.0.1 → 4.0.2
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/app/assets/stylesheets/_bourbon.scss +1 -0
- data/app/assets/stylesheets/addons/_retina-image.scss +1 -1
- data/app/assets/stylesheets/addons/_size.scss +1 -1
- data/app/assets/stylesheets/addons/_timing-functions.scss +1 -1
- data/app/assets/stylesheets/css3/_font-face.scss +1 -1
- data/app/assets/stylesheets/settings/_asset-pipeline.scss +1 -0
- data/bower.json +1 -1
- data/dist/_bourbon.scss +1 -0
- data/dist/addons/_retina-image.scss +1 -1
- data/dist/addons/_size.scss +1 -1
- data/dist/addons/_timing-functions.scss +1 -1
- data/dist/css3/_font-face.scss +1 -1
- data/dist/settings/_asset-pipeline.scss +1 -0
- data/lib/bourbon.rb +2 -1
- data/lib/bourbon/version.rb +1 -1
- data/package.json +1 -1
- data/readme.md +3 -3
- metadata +16 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82349a03d66ed0c3f92abf6f96f1fac2a59b61a4
|
4
|
+
data.tar.gz: aa833788f3cd41270c5a7e947559b86296b5b435
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e7f67108c6caca33adb567900a3f043424c55922cf7b3431246bf88c36f914df596d0449a215e38e0effd9d65b2c4ed56cc915f19cf81320b423500f5ac5428
|
7
|
+
data.tar.gz: d345ed538350de5860f11142eeb6543f69d754e69473cab581d3787d9c594516c086a5de59bad8374327897aef0abe57da94e5a68baa4f8e5700c63c7dac70d2
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline:
|
1
|
+
@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: $asset-pipeline) {
|
2
2
|
@if $asset-pipeline {
|
3
3
|
background-image: image-url("#{$filename}.#{$extension}");
|
4
4
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie)
|
2
|
-
// Timing functions are the same as demo'ed here: http://jqueryui.com/demos/effect/easing.html
|
2
|
+
// Timing functions are the same as demo'ed here: http://jqueryui.com/resources/demos/effect/easing.html
|
3
3
|
|
4
4
|
// EASE IN
|
5
5
|
$ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// Order of the includes matters, and it is: normal, bold, italic, bold+italic.
|
2
2
|
|
3
|
-
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline:
|
3
|
+
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: $asset-pipeline) {
|
4
4
|
@font-face {
|
5
5
|
font-family: $font-family;
|
6
6
|
font-weight: $weight;
|
@@ -0,0 +1 @@
|
|
1
|
+
$asset-pipeline: false !default;
|
data/bower.json
CHANGED
data/dist/_bourbon.scss
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline:
|
1
|
+
@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: $asset-pipeline) {
|
2
2
|
@if $asset-pipeline {
|
3
3
|
background-image: image-url("#{$filename}.#{$extension}");
|
4
4
|
}
|
data/dist/addons/_size.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie)
|
2
|
-
// Timing functions are the same as demo'ed here: http://jqueryui.com/demos/effect/easing.html
|
2
|
+
// Timing functions are the same as demo'ed here: http://jqueryui.com/resources/demos/effect/easing.html
|
3
3
|
|
4
4
|
// EASE IN
|
5
5
|
$ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
|
data/dist/css3/_font-face.scss
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// Order of the includes matters, and it is: normal, bold, italic, bold+italic.
|
2
2
|
|
3
|
-
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline:
|
3
|
+
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: $asset-pipeline) {
|
4
4
|
@font-face {
|
5
5
|
font-family: $font-family;
|
6
6
|
font-weight: $weight;
|
@@ -0,0 +1 @@
|
|
1
|
+
$asset-pipeline: false !default;
|
data/lib/bourbon.rb
CHANGED
@@ -22,6 +22,7 @@ module Bourbon
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
else
|
25
|
-
|
25
|
+
bourbon_path = File.expand_path("../../app/assets/stylesheets", __FILE__)
|
26
|
+
ENV["SASS_PATH"] = [ENV["SASS_PATH"], bourbon_path].compact.join(File::PATH_SEPARATOR)
|
26
27
|
end
|
27
28
|
end
|
data/lib/bourbon/version.rb
CHANGED
data/package.json
CHANGED
data/readme.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
[](http://badge.fury.io/rb/bourbon) [](https://codeclimate.com/github/thoughtbot/bourbon) [](https://gitter.im/thoughtbot/bourbon)
|
5
5
|
|
6
6
|
-
|
7
|
-
:warning: Bourbon **4.0.0** requires Sass **3.3.x**. If you are using **libsass** or **sass-rails** use **3.2.
|
7
|
+
:warning: Bourbon **4.0.0** requires Sass **3.3.x**. If you are using **libsass** or **sass-rails** use Bourbon **3.2.x**.
|
8
8
|
|
9
9
|
## A lightweight mixin library for Sass
|
10
10
|
Bourbon is a library of pure sass mixins that are designed to be simple
|
@@ -21,7 +21,7 @@ browsers that support only CSS3 prefixed properties. Bourbon uses SCSS syntax.
|
|
21
21
|
### [Documentation & Demo](http://bourbon.io)
|
22
22
|
|
23
23
|
### Requirements
|
24
|
-
Sass 3.
|
24
|
+
Sass 3.3+
|
25
25
|
|
26
26
|
### Install for Rails 3.1+
|
27
27
|
In your Gemfile:
|
@@ -86,7 +86,7 @@ Visit the [Command line tools wiki](https://github.com/thoughtbot/bourbon/wiki/C
|
|
86
86
|
##### [Bourbon v2.x install instructions](https://github.com/thoughtbot/bourbon/wiki/Bourbon-v2.x-or-Rails-2.3-Install)
|
87
87
|
|
88
88
|
|
89
|
-
- [Changelog](https://github.com/thoughtbot/bourbon/
|
89
|
+
- [Changelog](https://github.com/thoughtbot/bourbon/releases)
|
90
90
|
- [Browser support](https://github.com/thoughtbot/bourbon/wiki/Browser-Support)
|
91
91
|
|
92
92
|
### Chat with us
|
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: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil LaPier
|
@@ -20,62 +20,62 @@ authors:
|
|
20
20
|
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date: 2014-
|
23
|
+
date: 2014-05-21 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: sass
|
27
27
|
requirement: !ruby/object:Gem::Requirement
|
28
28
|
requirements:
|
29
|
-
- -
|
29
|
+
- - ~>
|
30
30
|
- !ruby/object:Gem::Version
|
31
31
|
version: '3.3'
|
32
32
|
type: :runtime
|
33
33
|
prerelease: false
|
34
34
|
version_requirements: !ruby/object:Gem::Requirement
|
35
35
|
requirements:
|
36
|
-
- -
|
36
|
+
- - ~>
|
37
37
|
- !ruby/object:Gem::Version
|
38
38
|
version: '3.3'
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: thor
|
41
41
|
requirement: !ruby/object:Gem::Requirement
|
42
42
|
requirements:
|
43
|
-
- -
|
43
|
+
- - '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '0'
|
46
46
|
type: :runtime
|
47
47
|
prerelease: false
|
48
48
|
version_requirements: !ruby/object:Gem::Requirement
|
49
49
|
requirements:
|
50
|
-
- -
|
50
|
+
- - '>='
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: '0'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: aruba
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- -
|
57
|
+
- - ~>
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '0.4'
|
60
60
|
type: :development
|
61
61
|
prerelease: false
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
|
-
- -
|
64
|
+
- - ~>
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '0.4'
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: rake
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
70
70
|
requirements:
|
71
|
-
- -
|
71
|
+
- - '>='
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0'
|
74
74
|
type: :development
|
75
75
|
prerelease: false
|
76
76
|
version_requirements: !ruby/object:Gem::Requirement
|
77
77
|
requirements:
|
78
|
-
- -
|
78
|
+
- - '>='
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: '0'
|
81
81
|
description: |
|
@@ -92,8 +92,8 @@ executables:
|
|
92
92
|
extensions: []
|
93
93
|
extra_rdoc_files: []
|
94
94
|
files:
|
95
|
-
-
|
96
|
-
-
|
95
|
+
- .gitignore
|
96
|
+
- .npmignore
|
97
97
|
- Gemfile
|
98
98
|
- Gemfile.lock
|
99
99
|
- LICENSE
|
@@ -164,6 +164,7 @@ files:
|
|
164
164
|
- app/assets/stylesheets/helpers/_render-gradients.scss
|
165
165
|
- app/assets/stylesheets/helpers/_shape-size-stripper.scss
|
166
166
|
- app/assets/stylesheets/helpers/_str-to-num.scss
|
167
|
+
- app/assets/stylesheets/settings/_asset-pipeline.scss
|
167
168
|
- app/assets/stylesheets/settings/_prefixer.scss
|
168
169
|
- app/assets/stylesheets/settings/_px-to-em.scss
|
169
170
|
- bin/bourbon
|
@@ -235,6 +236,7 @@ files:
|
|
235
236
|
- dist/helpers/_render-gradients.scss
|
236
237
|
- dist/helpers/_shape-size-stripper.scss
|
237
238
|
- dist/helpers/_str-to-num.scss
|
239
|
+
- dist/settings/_asset-pipeline.scss
|
238
240
|
- dist/settings/_prefixer.scss
|
239
241
|
- dist/settings/_px-to-em.scss
|
240
242
|
- features/install.feature
|
@@ -260,12 +262,12 @@ require_paths:
|
|
260
262
|
- lib
|
261
263
|
required_ruby_version: !ruby/object:Gem::Requirement
|
262
264
|
requirements:
|
263
|
-
- -
|
265
|
+
- - '>='
|
264
266
|
- !ruby/object:Gem::Version
|
265
267
|
version: '0'
|
266
268
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
267
269
|
requirements:
|
268
|
-
- -
|
270
|
+
- - '>='
|
269
271
|
- !ruby/object:Gem::Version
|
270
272
|
version: '0'
|
271
273
|
requirements: []
|