bourbon 3.2.1 → 3.2.3

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
2
  SHA1:
3
- metadata.gz: 00460664f57c554e83140ddb14de747218cc318b
4
- data.tar.gz: 0f43a47d010e1158138249b1262474b46842af93
3
+ metadata.gz: bcb5121ac3665861ec7e62c5430f95407b194914
4
+ data.tar.gz: cea907e4bec941e59b74299ef9e02dbf9f89fd17
5
5
  SHA512:
6
- metadata.gz: 825f048ef1a90232aa1ba2ec59ffb71290bdfd8a6e3b484e78080ed78c97aed52543adc00f623a9401b6c9f3e3e52e13cb663e4d3620a618b894fc65fa2a7389
7
- data.tar.gz: 919cf319d03f77f92d3b6e6cd52744da95446f124ba150b364e76569fe20191c0921f1665915ce88da3b6e3603285f9cecb7b805a6f4af55e13ae64aedf3e7b2
6
+ metadata.gz: 05a0b0cb0dde3b4a67d58bdc2638d4f16c3792ea83baebfd9483be5fc7047794fb5238177b8e3f94ff2793716f4c3a297d260b928989df08d977c6ab462290e0
7
+ data.tar.gz: 3bc84210266053b6a6a5e1f1385724b9369d216565dfb304737d7ebb93e190ab5d9034b8cd9caf70e9c2a4b7c3ab378bc01e4e40d8516e77950b2aad19fbd057
@@ -1,6 +1,7 @@
1
1
  // Settings
2
2
  @import "settings/prefixer";
3
3
  @import "settings/px-to-em";
4
+ @import "settings/asset-pipeline";
4
5
 
5
6
  // Custom Helpers
6
7
  @import "helpers/gradient-positions-parser";
@@ -1,4 +1,4 @@
1
- @mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: false) {
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: false ) {
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bourbon",
3
3
  "homepage": "http://bourbon.io/",
4
- "version": "3.2.1",
4
+ "version": "3.2.3",
5
5
  "main": "dist/_bourbon.scss",
6
6
  "ignore": [
7
7
  "app",
@@ -1,6 +1,7 @@
1
1
  // Settings
2
2
  @import "settings/prefixer";
3
3
  @import "settings/px-to-em";
4
+ @import "settings/asset-pipeline";
4
5
 
5
6
  // Custom Helpers
6
7
  @import "helpers/gradient-positions-parser";
@@ -1,4 +1,4 @@
1
- @mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: false) {
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: false ) {
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;
@@ -1,3 +1,3 @@
1
1
  module Bourbon
2
- VERSION = "3.2.1"
2
+ VERSION = "3.2.3"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bourbon",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "A simple and lightweight mixin library for Sass.",
5
5
  "main": "dist/_bourbon.scss",
6
6
  "scripts": {
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: 3.2.1
4
+ version: 3.2.3
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-04-23 00:00:00.000000000 Z
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.2'
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.2'
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
- - ".gitignore"
96
- - ".npmignore"
95
+ - .gitignore
96
+ - .npmignore
97
97
  - Gemfile
98
98
  - Gemfile.lock
99
99
  - LICENSE
@@ -159,6 +159,7 @@ files:
159
159
  - app/assets/stylesheets/helpers/_radial-positions-parser.scss
160
160
  - app/assets/stylesheets/helpers/_render-gradients.scss
161
161
  - app/assets/stylesheets/helpers/_shape-size-stripper.scss
162
+ - app/assets/stylesheets/settings/_asset-pipeline.scss
162
163
  - app/assets/stylesheets/settings/_prefixer.scss
163
164
  - app/assets/stylesheets/settings/_px-to-em.scss
164
165
  - bin/bourbon
@@ -225,6 +226,7 @@ files:
225
226
  - dist/helpers/_radial-positions-parser.scss
226
227
  - dist/helpers/_render-gradients.scss
227
228
  - dist/helpers/_shape-size-stripper.scss
229
+ - dist/settings/_asset-pipeline.scss
228
230
  - dist/settings/_prefixer.scss
229
231
  - dist/settings/_px-to-em.scss
230
232
  - features/install.feature
@@ -250,12 +252,12 @@ require_paths:
250
252
  - lib
251
253
  required_ruby_version: !ruby/object:Gem::Requirement
252
254
  requirements:
253
- - - ">="
255
+ - - '>='
254
256
  - !ruby/object:Gem::Version
255
257
  version: '0'
256
258
  required_rubygems_version: !ruby/object:Gem::Requirement
257
259
  requirements:
258
- - - ">="
260
+ - - '>='
259
261
  - !ruby/object:Gem::Version
260
262
  version: '0'
261
263
  requirements: []