bourbon-compass 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f823aef5e6ff145352d80d577ac45386baf4d13e
4
+ data.tar.gz: 6c3db8f018ed1071b71cb1f9e269cf4c15f254d8
5
+ SHA512:
6
+ metadata.gz: 6849e67c5ac70b027832fc94b3e20c00dabfc5ffb24acaad7ea51d6637d9e9eeaf666616b3b63cf56ec0a6d1cc23c5b493bfda77c521ac0b9f42b1964d2b6b03
7
+ data.tar.gz: 6396257876f1a0e208b71d23870140f8af891f1e3d81375431d67548b182c90ee950f77237ab238435305e400d3e713dd1dfc7d73b4bf25adec079b09a29eebc
@@ -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/convert-units";
@@ -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
  }
@@ -10,7 +10,7 @@
10
10
  height: $height;
11
11
  }
12
12
 
13
- @if $width == auto or (type-of($height) == number and not unitless($width)) {
13
+ @if $width == auto or (type-of($width) == number and not unitless($width)) {
14
14
  width: $width;
15
15
  }
16
16
  }
@@ -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;
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon-compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
5
- prerelease:
4
+ version: 4.0.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jed Foster
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-04-23 00:00:00.000000000 Z
11
+ date: 2014-05-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: compass
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 0.13.alpha.10
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 0.13.alpha.10
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: sass
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: '3.3'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: '3.3'
46
41
  description: thoughtbot's Bourbon packaged as a Compass extension.
@@ -116,30 +111,30 @@ files:
116
111
  - stylesheets/bourbon/helpers/_render-gradients.scss
117
112
  - stylesheets/bourbon/helpers/_shape-size-stripper.scss
118
113
  - stylesheets/bourbon/helpers/_str-to-num.scss
114
+ - stylesheets/bourbon/settings/_asset-pipeline.scss
119
115
  - stylesheets/bourbon/settings/_prefixer.scss
120
116
  - stylesheets/bourbon/settings/_px-to-em.scss
121
117
  homepage: https://github.com/jedfoster/bourbon-compass
122
118
  licenses: []
119
+ metadata: {}
123
120
  post_install_message:
124
121
  rdoc_options: []
125
122
  require_paths:
126
123
  - lib
127
124
  required_ruby_version: !ruby/object:Gem::Requirement
128
- none: false
129
125
  requirements:
130
- - - ! '>='
126
+ - - ">="
131
127
  - !ruby/object:Gem::Version
132
128
  version: '0'
133
129
  required_rubygems_version: !ruby/object:Gem::Requirement
134
- none: false
135
130
  requirements:
136
- - - ! '>='
131
+ - - ">="
137
132
  - !ruby/object:Gem::Version
138
133
  version: '0'
139
134
  requirements: []
140
135
  rubyforge_project:
141
- rubygems_version: 1.8.23
136
+ rubygems_version: 2.2.2
142
137
  signing_key:
143
- specification_version: 3
138
+ specification_version: 4
144
139
  summary: thoughtbot's Bourbon packaged as a Compass extension.
145
140
  test_files: []