bourbon 3.2.3 → 3.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -6
- data/.npmignore +11 -9
- data/Gemfile.lock +4 -4
- data/{LICENSE → LICENSE.md} +8 -10
- data/README.md +126 -0
- data/app/assets/stylesheets/_bourbon.scss +5 -0
- data/app/assets/stylesheets/addons/_position.scss +4 -4
- data/app/assets/stylesheets/css3/_flex-box.scss +14 -14
- data/app/assets/stylesheets/helpers/_render-gradients.scss +2 -2
- data/bower.json +23 -6
- data/dist/_bourbon.scss +5 -0
- data/dist/addons/_position.scss +4 -4
- data/dist/css3/_flex-box.scss +14 -14
- data/dist/helpers/_render-gradients.scss +2 -2
- data/lib/bourbon/version.rb +1 -1
- data/package.json +18 -14
- metadata +16 -16
- data/readme.md +0 -100
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88f0d743725b79399da61063778c2f1ba0e4a2e8
|
4
|
+
data.tar.gz: 8de36252f02ecb58d8682a2e5ab2e7a5283b1eac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd89c5677e8d2d52696350f850b6227b2b9753a422a34aa6489dee3dc70afe884afbe49ddf623445a6b2d838147d778e491e3a8260bc0859bd8fd286b2af2b29
|
7
|
+
data.tar.gz: 8377579580cd2fd475fc3bc9f8e43977779debd69e39b35fe72d9a92527d2d27b41720c224e6dacbc6625a2978bffdf5351f39b649ebc52a038981bd6f5a326b
|
data/.gitignore
CHANGED
data/.npmignore
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bourbon (
|
5
|
-
sass (~> 3.
|
4
|
+
bourbon (3.2.4)
|
5
|
+
sass (~> 3.2)
|
6
6
|
thor
|
7
7
|
|
8
8
|
GEM
|
@@ -36,9 +36,9 @@ GEM
|
|
36
36
|
rspec-expectations (2.8.0)
|
37
37
|
diff-lcs (~> 1.1.2)
|
38
38
|
rspec-mocks (2.8.0)
|
39
|
-
sass (3.
|
39
|
+
sass (3.4.9)
|
40
40
|
term-ansicolor (1.0.7)
|
41
|
-
thor (0.
|
41
|
+
thor (0.19.1)
|
42
42
|
|
43
43
|
PLATFORMS
|
44
44
|
ruby
|
data/{LICENSE → LICENSE.md}
RENAMED
@@ -1,23 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Copyright (c) 2011-2013 thoughtbot, inc.
|
3
|
+
Copyright © 2011–2015 [thoughtbot, inc.](http://thoughtbot.com)
|
6
4
|
|
7
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
of this software and associated documentation files (the
|
6
|
+
of this software and associated documentation files (the “Software”), to deal
|
9
7
|
in the Software without restriction, including without limitation the rights
|
10
8
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
9
|
copies of the Software, and to permit persons to whom the Software is
|
12
10
|
furnished to do so, subject to the following conditions:
|
13
11
|
|
14
|
-
The above copyright notice and this permission notice shall be included in
|
15
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
16
14
|
|
17
|
-
THE SOFTWARE IS PROVIDED
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
-
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
[![Bourbon](http://images.thoughtbot.com/bourbon/bourbon-logo.svg)](http://bourbon.io)
|
2
|
+
|
3
|
+
## A simple and lightweight mixin library for Sass.
|
4
|
+
|
5
|
+
### _This is the v3.2.4 branch_
|
6
|
+
|
7
|
+
Bourbon is a library of pure Sass mixins that are designed to be simple and easy to use. No configuration required. The mixins aim to be as vanilla as possible, meaning they should be as close to the original CSS syntax as possible.
|
8
|
+
|
9
|
+
The mixins contain vendor specific prefixes for all CSS3 properties for support amongst modern browsers. The prefixes also ensure graceful degradation for older browsers that support only CSS3 prefixed properties. Bourbon uses SCSS syntax.
|
10
|
+
|
11
|
+
- **[Documentation](http://bourbon.io/docs)**
|
12
|
+
- **[Changelog](https://github.com/thoughtbot/bourbon/releases)**
|
13
|
+
- **[Issues & Bugs](https://github.com/thoughtbot/bourbon/issues)**
|
14
|
+
|
15
|
+
## Requirements
|
16
|
+
|
17
|
+
- [Sass](https://github.com/sass/sass) 3.2+
|
18
|
+
|
19
|
+
## Installation
|
20
|
+
|
21
|
+
For command line help, visit our wiki page on Bourbon’s [command line interface](https://github.com/thoughtbot/bourbon/wiki/Command-Line-Interface).
|
22
|
+
|
23
|
+
1. Install the Bourbon gem using the [RubyGems](https://rubygems.org) package manager:
|
24
|
+
|
25
|
+
```bash
|
26
|
+
gem install bourbon
|
27
|
+
```
|
28
|
+
|
29
|
+
Alternatively, you can install Bourbon with [Bower](http://bower.io).
|
30
|
+
|
31
|
+
2. Install the Bourbon library into the current directory:
|
32
|
+
|
33
|
+
```bash
|
34
|
+
bourbon install
|
35
|
+
```
|
36
|
+
|
37
|
+
**Pro Tip:** You can target installation into a specific directory using the `path` flag:
|
38
|
+
|
39
|
+
```bash
|
40
|
+
bourbon install --path my/custom/path/
|
41
|
+
```
|
42
|
+
|
43
|
+
3. Import Bourbon at the beginning of your stylesheet:
|
44
|
+
|
45
|
+
```scss
|
46
|
+
@import "bourbon/bourbon";
|
47
|
+
```
|
48
|
+
|
49
|
+
It’s not recommended to add or modify the Bourbon files so that you can update them easily.
|
50
|
+
|
51
|
+
## Installation for Ruby on Rails 3.1+
|
52
|
+
|
53
|
+
1. Add Bourbon to your Gemfile:
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
gem 'bourbon'
|
57
|
+
```
|
58
|
+
|
59
|
+
2. Then run:
|
60
|
+
|
61
|
+
```bash
|
62
|
+
bundle install
|
63
|
+
```
|
64
|
+
|
65
|
+
3. Restart your server and rename `application.css` to `application.css.scss`:
|
66
|
+
|
67
|
+
```bash
|
68
|
+
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.css.scss
|
69
|
+
```
|
70
|
+
|
71
|
+
4. Delete the sprocket directive in `application.css.scss` ([why?](https://github.com/thoughtbot/bourbon/wiki/Rails-Sprockets)):
|
72
|
+
|
73
|
+
```scss
|
74
|
+
*= require_tree .
|
75
|
+
```
|
76
|
+
|
77
|
+
5. Import Bourbon at the beginning of `application.css.scss`. All additional stylesheets should be imported below Bourbon:
|
78
|
+
|
79
|
+
```scss
|
80
|
+
@import "bourbon";
|
81
|
+
@import "home";
|
82
|
+
@import "users";
|
83
|
+
```
|
84
|
+
|
85
|
+
[Help! I’m getting an undefined mixin error.](https://github.com/thoughtbot/bourbon/wiki/Rails-Help-%5C-Undefined-mixin)
|
86
|
+
|
87
|
+
## Installing older versions of Bourbon
|
88
|
+
|
89
|
+
1. Uninstall any Bourbon gem versions you already have:
|
90
|
+
|
91
|
+
```bash
|
92
|
+
gem uninstall bourbon
|
93
|
+
```
|
94
|
+
|
95
|
+
2. Reinstall the Bourbon gem, using the `-v` flag to specify the version you need:
|
96
|
+
|
97
|
+
```bash
|
98
|
+
gem install bourbon -v 3.2.4
|
99
|
+
```
|
100
|
+
|
101
|
+
3. Follow the [instructions above](#installation) to install Bourbon into your project.
|
102
|
+
|
103
|
+
## Browser support
|
104
|
+
|
105
|
+
- Chrome 10.0+
|
106
|
+
- Firefox 3.6+
|
107
|
+
- Internet Explorer 9+
|
108
|
+
- Opera 12+
|
109
|
+
- Safari 5.1+
|
110
|
+
|
111
|
+
## The Bourbon family
|
112
|
+
|
113
|
+
- [Bourbon](https://github.com/thoughtbot/bourbon): A simple and lightweight mixin library for Sass
|
114
|
+
- [Neat](https://github.com/thoughtbot/neat): A lightweight semantic grid framework for Sass and Bourbon
|
115
|
+
- [Bitters](https://github.com/thoughtbot/bitters): Scaffold styles, variables and structure for Bourbon projects
|
116
|
+
- [Refills](https://github.com/thoughtbot/refills): Prepackaged patterns and components built with Bourbon, Neat and Bitters
|
117
|
+
|
118
|
+
## Credits
|
119
|
+
|
120
|
+
[![thoughtbot](http://images.thoughtbot.com/bourbon/thoughtbot-logo.svg)](http://thoughtbot.com)
|
121
|
+
|
122
|
+
Bourbon is maintained and funded by [thoughtbot, inc](http://thoughtbot.com). Tweet your questions or suggestions to [@bourbonsass](https://twitter.com/bourbonsass) and while you’re at it follow us too.
|
123
|
+
|
124
|
+
## License
|
125
|
+
|
126
|
+
Copyright © 2011–2015 [thoughtbot, inc](http://thoughtbot.com). Bourbon is free software, and may be redistributed under the terms specified in the [license](LICENSE.md).
|
@@ -14,19 +14,19 @@
|
|
14
14
|
|
15
15
|
position: $position;
|
16
16
|
|
17
|
-
@if ($top and $top == auto) or (type-of($top) == number and not
|
17
|
+
@if ($top and $top == auto) or (type-of($top) == number and not(unitless($top))) {
|
18
18
|
top: $top;
|
19
19
|
}
|
20
20
|
|
21
|
-
@if ($right and $right == auto) or (type-of($right) == number and not
|
21
|
+
@if ($right and $right == auto) or (type-of($right) == number and not(unitless($right))) {
|
22
22
|
right: $right;
|
23
23
|
}
|
24
24
|
|
25
|
-
@if ($bottom and $bottom == auto) or (type-of($bottom) == number and not
|
25
|
+
@if ($bottom and $bottom == auto) or (type-of($bottom) == number and not(unitless($bottom))) {
|
26
26
|
bottom: $bottom;
|
27
27
|
}
|
28
28
|
|
29
|
-
@if ($left and $left == auto) or (type-of($left) == number and not
|
29
|
+
@if ($left and $left == auto) or (type-of($left) == number and not(unitless($left))) {
|
30
30
|
left: $left;
|
31
31
|
}
|
32
32
|
}
|
@@ -78,7 +78,7 @@
|
|
78
78
|
display: flex;
|
79
79
|
}
|
80
80
|
|
81
|
-
@
|
81
|
+
@else if $value == "inline-flex" {
|
82
82
|
display: -webkit-inline-box;
|
83
83
|
display: -moz-inline-box;
|
84
84
|
display: inline-box;
|
@@ -124,16 +124,16 @@
|
|
124
124
|
$value-2009: horizontal;
|
125
125
|
}
|
126
126
|
|
127
|
-
@
|
127
|
+
@else if $value == "row-reverse" {
|
128
128
|
$value-2009: horizontal;
|
129
129
|
$direction: reverse;
|
130
130
|
}
|
131
131
|
|
132
|
-
@
|
132
|
+
@else if $value == column {
|
133
133
|
$value-2009: vertical;
|
134
134
|
}
|
135
135
|
|
136
|
-
@
|
136
|
+
@else if $value == "column-reverse" {
|
137
137
|
$value-2009: vertical;
|
138
138
|
$direction: reverse;
|
139
139
|
}
|
@@ -162,11 +162,11 @@
|
|
162
162
|
$alt-value: single;
|
163
163
|
}
|
164
164
|
|
165
|
-
@
|
165
|
+
@else if $value == wrap {
|
166
166
|
$alt-value: multiple;
|
167
167
|
}
|
168
168
|
|
169
|
-
@
|
169
|
+
@else if $value == "wrap-reverse" {
|
170
170
|
$alt-value: multiple;
|
171
171
|
}
|
172
172
|
|
@@ -224,15 +224,15 @@
|
|
224
224
|
$alt-value: start;
|
225
225
|
}
|
226
226
|
|
227
|
-
@
|
227
|
+
@else if $value == "flex-end" {
|
228
228
|
$alt-value: end;
|
229
229
|
}
|
230
230
|
|
231
|
-
@
|
231
|
+
@else if $value == "space-between" {
|
232
232
|
$alt-value: justify;
|
233
233
|
}
|
234
234
|
|
235
|
-
@
|
235
|
+
@else if $value == "space-around" {
|
236
236
|
$alt-value: center;
|
237
237
|
}
|
238
238
|
|
@@ -257,7 +257,7 @@
|
|
257
257
|
$alt-value: start;
|
258
258
|
}
|
259
259
|
|
260
|
-
@
|
260
|
+
@else if $value == "flex-end" {
|
261
261
|
$alt-value: end;
|
262
262
|
}
|
263
263
|
|
@@ -280,7 +280,7 @@
|
|
280
280
|
$value-2011: start;
|
281
281
|
}
|
282
282
|
|
283
|
-
@
|
283
|
+
@else if $value == "flex-end" {
|
284
284
|
$value-2011: end;
|
285
285
|
}
|
286
286
|
|
@@ -300,15 +300,15 @@
|
|
300
300
|
$value-2011: start;
|
301
301
|
}
|
302
302
|
|
303
|
-
@
|
303
|
+
@else if $value == "flex-end" {
|
304
304
|
$value-2011: end;
|
305
305
|
}
|
306
306
|
|
307
|
-
@
|
307
|
+
@else if $value == "space-between" {
|
308
308
|
$value-2011: justify;
|
309
309
|
}
|
310
310
|
|
311
|
-
@
|
311
|
+
@else if $value == "space-around" {
|
312
312
|
$value-2011: distribute;
|
313
313
|
}
|
314
314
|
|
@@ -16,11 +16,11 @@
|
|
16
16
|
}
|
17
17
|
|
18
18
|
@if $vendor {
|
19
|
-
$vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);
|
19
|
+
$vendor-gradients: "-#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} #{$gradients})";
|
20
20
|
}
|
21
21
|
@else if $vendor == false {
|
22
22
|
$vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})";
|
23
|
-
$vendor-gradients: unquote($vendor-gradients);
|
24
23
|
}
|
24
|
+
$vendor-gradients: unquote($vendor-gradients);
|
25
25
|
@return $vendor-gradients;
|
26
26
|
}
|
data/bower.json
CHANGED
@@ -1,17 +1,34 @@
|
|
1
1
|
{
|
2
2
|
"name": "bourbon",
|
3
|
-
"
|
4
|
-
"version": "3.2.
|
3
|
+
"description": "A simple and lightweight mixin library for Sass.",
|
4
|
+
"version": "3.2.4",
|
5
5
|
"main": "dist/_bourbon.scss",
|
6
|
+
"license": "MIT",
|
6
7
|
"ignore": [
|
8
|
+
"**/.*",
|
7
9
|
"app",
|
8
10
|
"bin",
|
11
|
+
"bourbon.gemspec",
|
9
12
|
"features",
|
13
|
+
"LICENSE.md",
|
10
14
|
"lib",
|
11
|
-
".gitignore",
|
12
15
|
"Gemfile",
|
13
16
|
"Gemfile.lock",
|
14
|
-
"
|
15
|
-
"
|
16
|
-
]
|
17
|
+
"package.json",
|
18
|
+
"Rakefile"
|
19
|
+
],
|
20
|
+
"keywords": [
|
21
|
+
"css",
|
22
|
+
"mixins",
|
23
|
+
"sass",
|
24
|
+
"scss"
|
25
|
+
],
|
26
|
+
"authors": [
|
27
|
+
"thoughtbot (http://thoughtbot.com)"
|
28
|
+
],
|
29
|
+
"homepage": "http://bourbon.io",
|
30
|
+
"repository": {
|
31
|
+
"type": "git",
|
32
|
+
"url": "https://github.com/thoughtbot/bourbon.git"
|
33
|
+
}
|
17
34
|
}
|
data/dist/_bourbon.scss
CHANGED
data/dist/addons/_position.scss
CHANGED
@@ -14,19 +14,19 @@
|
|
14
14
|
|
15
15
|
position: $position;
|
16
16
|
|
17
|
-
@if ($top and $top == auto) or (type-of($top) == number and not
|
17
|
+
@if ($top and $top == auto) or (type-of($top) == number and not(unitless($top))) {
|
18
18
|
top: $top;
|
19
19
|
}
|
20
20
|
|
21
|
-
@if ($right and $right == auto) or (type-of($right) == number and not
|
21
|
+
@if ($right and $right == auto) or (type-of($right) == number and not(unitless($right))) {
|
22
22
|
right: $right;
|
23
23
|
}
|
24
24
|
|
25
|
-
@if ($bottom and $bottom == auto) or (type-of($bottom) == number and not
|
25
|
+
@if ($bottom and $bottom == auto) or (type-of($bottom) == number and not(unitless($bottom))) {
|
26
26
|
bottom: $bottom;
|
27
27
|
}
|
28
28
|
|
29
|
-
@if ($left and $left == auto) or (type-of($left) == number and not
|
29
|
+
@if ($left and $left == auto) or (type-of($left) == number and not(unitless($left))) {
|
30
30
|
left: $left;
|
31
31
|
}
|
32
32
|
}
|
data/dist/css3/_flex-box.scss
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
display: flex;
|
79
79
|
}
|
80
80
|
|
81
|
-
@
|
81
|
+
@else if $value == "inline-flex" {
|
82
82
|
display: -webkit-inline-box;
|
83
83
|
display: -moz-inline-box;
|
84
84
|
display: inline-box;
|
@@ -124,16 +124,16 @@
|
|
124
124
|
$value-2009: horizontal;
|
125
125
|
}
|
126
126
|
|
127
|
-
@
|
127
|
+
@else if $value == "row-reverse" {
|
128
128
|
$value-2009: horizontal;
|
129
129
|
$direction: reverse;
|
130
130
|
}
|
131
131
|
|
132
|
-
@
|
132
|
+
@else if $value == column {
|
133
133
|
$value-2009: vertical;
|
134
134
|
}
|
135
135
|
|
136
|
-
@
|
136
|
+
@else if $value == "column-reverse" {
|
137
137
|
$value-2009: vertical;
|
138
138
|
$direction: reverse;
|
139
139
|
}
|
@@ -162,11 +162,11 @@
|
|
162
162
|
$alt-value: single;
|
163
163
|
}
|
164
164
|
|
165
|
-
@
|
165
|
+
@else if $value == wrap {
|
166
166
|
$alt-value: multiple;
|
167
167
|
}
|
168
168
|
|
169
|
-
@
|
169
|
+
@else if $value == "wrap-reverse" {
|
170
170
|
$alt-value: multiple;
|
171
171
|
}
|
172
172
|
|
@@ -224,15 +224,15 @@
|
|
224
224
|
$alt-value: start;
|
225
225
|
}
|
226
226
|
|
227
|
-
@
|
227
|
+
@else if $value == "flex-end" {
|
228
228
|
$alt-value: end;
|
229
229
|
}
|
230
230
|
|
231
|
-
@
|
231
|
+
@else if $value == "space-between" {
|
232
232
|
$alt-value: justify;
|
233
233
|
}
|
234
234
|
|
235
|
-
@
|
235
|
+
@else if $value == "space-around" {
|
236
236
|
$alt-value: center;
|
237
237
|
}
|
238
238
|
|
@@ -257,7 +257,7 @@
|
|
257
257
|
$alt-value: start;
|
258
258
|
}
|
259
259
|
|
260
|
-
@
|
260
|
+
@else if $value == "flex-end" {
|
261
261
|
$alt-value: end;
|
262
262
|
}
|
263
263
|
|
@@ -280,7 +280,7 @@
|
|
280
280
|
$value-2011: start;
|
281
281
|
}
|
282
282
|
|
283
|
-
@
|
283
|
+
@else if $value == "flex-end" {
|
284
284
|
$value-2011: end;
|
285
285
|
}
|
286
286
|
|
@@ -300,15 +300,15 @@
|
|
300
300
|
$value-2011: start;
|
301
301
|
}
|
302
302
|
|
303
|
-
@
|
303
|
+
@else if $value == "flex-end" {
|
304
304
|
$value-2011: end;
|
305
305
|
}
|
306
306
|
|
307
|
-
@
|
307
|
+
@else if $value == "space-between" {
|
308
308
|
$value-2011: justify;
|
309
309
|
}
|
310
310
|
|
311
|
-
@
|
311
|
+
@else if $value == "space-around" {
|
312
312
|
$value-2011: distribute;
|
313
313
|
}
|
314
314
|
|
@@ -16,11 +16,11 @@
|
|
16
16
|
}
|
17
17
|
|
18
18
|
@if $vendor {
|
19
|
-
$vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);
|
19
|
+
$vendor-gradients: "-#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} #{$gradients})";
|
20
20
|
}
|
21
21
|
@else if $vendor == false {
|
22
22
|
$vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})";
|
23
|
-
$vendor-gradients: unquote($vendor-gradients);
|
24
23
|
}
|
24
|
+
$vendor-gradients: unquote($vendor-gradients);
|
25
25
|
@return $vendor-gradients;
|
26
26
|
}
|
data/lib/bourbon/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,24 +1,28 @@
|
|
1
1
|
{
|
2
2
|
"name": "bourbon",
|
3
|
-
"version": "3.2.
|
3
|
+
"version": "3.2.4",
|
4
4
|
"description": "A simple and lightweight mixin library for Sass.",
|
5
|
-
"main": "dist/_bourbon.scss",
|
6
|
-
"scripts": {
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
-
},
|
9
|
-
"repository": {
|
10
|
-
"type": "git",
|
11
|
-
"url": "https://github.com/thoughtbot/bourbon"
|
12
|
-
},
|
13
5
|
"keywords": [
|
14
|
-
"scss",
|
15
6
|
"css",
|
16
|
-
"mixins"
|
7
|
+
"mixins",
|
8
|
+
"sass",
|
9
|
+
"scss"
|
17
10
|
],
|
18
|
-
"
|
19
|
-
"license": "MIT",
|
11
|
+
"homepage": "http://bourbon.io",
|
20
12
|
"bugs": {
|
21
13
|
"url": "https://github.com/thoughtbot/bourbon/issues"
|
22
14
|
},
|
23
|
-
"
|
15
|
+
"license": "MIT",
|
16
|
+
"author": {
|
17
|
+
"name": "thoughtbot",
|
18
|
+
"url": "http://thoughtbot.com"
|
19
|
+
},
|
20
|
+
"main": "dist/_bourbon.scss",
|
21
|
+
"repository": {
|
22
|
+
"type": "git",
|
23
|
+
"url": "https://github.com/thoughtbot/bourbon.git"
|
24
|
+
},
|
25
|
+
"scripts": {
|
26
|
+
"test": "echo \"No test specified\""
|
27
|
+
}
|
24
28
|
}
|
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.
|
4
|
+
version: 3.2.4
|
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:
|
23
|
+
date: 2015-01-16 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,11 +92,12 @@ 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
|
-
- LICENSE
|
99
|
+
- LICENSE.md
|
100
|
+
- README.md
|
100
101
|
- Rakefile
|
101
102
|
- app/assets/stylesheets/_bourbon-deprecated-upcoming.scss
|
102
103
|
- app/assets/stylesheets/_bourbon.scss
|
@@ -241,7 +242,6 @@ files:
|
|
241
242
|
- lib/bourbon/version.rb
|
242
243
|
- lib/tasks/install.rake
|
243
244
|
- package.json
|
244
|
-
- readme.md
|
245
245
|
homepage: https://github.com/thoughtbot/bourbon
|
246
246
|
licenses:
|
247
247
|
- MIT
|
@@ -252,12 +252,12 @@ require_paths:
|
|
252
252
|
- lib
|
253
253
|
required_ruby_version: !ruby/object:Gem::Requirement
|
254
254
|
requirements:
|
255
|
-
- -
|
255
|
+
- - ">="
|
256
256
|
- !ruby/object:Gem::Version
|
257
257
|
version: '0'
|
258
258
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
259
259
|
requirements:
|
260
|
-
- -
|
260
|
+
- - ">="
|
261
261
|
- !ruby/object:Gem::Version
|
262
262
|
version: '0'
|
263
263
|
requirements: []
|
data/readme.md
DELETED
@@ -1,100 +0,0 @@
|
|
1
|
-
[![Bourbon Sass Mixin Library](http://bourbon.io/images/shared/bourbon-logo.png)](http://bourbon.io)
|
2
|
-
<br>
|
3
|
-
<br>
|
4
|
-
[![Gem Version](https://badge.fury.io/rb/bourbon.png)](http://badge.fury.io/rb/bourbon) [![Code Climate](https://codeclimate.com/github/thoughtbot/bourbon.png)](https://codeclimate.com/github/thoughtbot/bourbon) [![Gitter chat](https://badges.gitter.im/thoughtbot/bourbon.png)](https://gitter.im/thoughtbot/bourbon)
|
5
|
-
|
6
|
-
## A lightweight mixin library for Sass
|
7
|
-
Bourbon is a library of pure sass mixins that are designed to be simple
|
8
|
-
and easy to use. No configuration required.
|
9
|
-
|
10
|
-
The mixins aim to be as vanilla as possible, meaning they should be as close to the original CSS syntax as possible.
|
11
|
-
|
12
|
-
The mixins contain vendor specific prefixes for all CSS3 properties for support
|
13
|
-
amongst modern browsers. The prefixes also ensure graceful degradation for older
|
14
|
-
browsers that support only CSS3 prefixed properties. Bourbon uses SCSS syntax.
|
15
|
-
|
16
|
-
### [Documentation & Demo](http://bourbon.io)
|
17
|
-
|
18
|
-
### Requirements
|
19
|
-
Sass 3.2+
|
20
|
-
|
21
|
-
### Install for Rails 3.1+
|
22
|
-
In your Gemfile:
|
23
|
-
|
24
|
-
gem 'bourbon'
|
25
|
-
|
26
|
-
Then run:
|
27
|
-
|
28
|
-
$ bundle install
|
29
|
-
|
30
|
-
Restart your server. Then rename application`.css` to application`.css.scss`:
|
31
|
-
|
32
|
-
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.css.scss
|
33
|
-
|
34
|
-
Delete the sprocket directive in application.css.scss: [Why?](https://github.com/thoughtbot/bourbon/wiki/Rails-Sprockets)
|
35
|
-
|
36
|
-
*= require_tree .
|
37
|
-
|
38
|
-
Import Bourbon at the beginning of application.css.scss. All additional stylesheets must be imported below Bourbon:
|
39
|
-
|
40
|
-
@import "bourbon";
|
41
|
-
@import "home";
|
42
|
-
@import "users";
|
43
|
-
|
44
|
-
|
45
|
-
[Help! I'm getting an undefined mixin error.](https://github.com/thoughtbot/bourbon/wiki/Rails-Help-%5C-Undefined-mixin)
|
46
|
-
|
47
|
-
##### [Rails 3.0.x Install Instructions](https://github.com/thoughtbot/bourbon/wiki/Rails-3.0.x-Install) | [Rails 2.3 Install Instructions](https://github.com/thoughtbot/bourbon/wiki/Bourbon-v2.x-or-Rails-2.3-Install)
|
48
|
-
|
49
|
-
### Non-Rails projects
|
50
|
-
Bourbon includes an easy way to generate a directory with all the necessary files.
|
51
|
-
For command line help: `$ bourbon help` or visit the [Command line tools wiki](https://github.com/thoughtbot/bourbon/wiki/Command-Line-Tools)
|
52
|
-
|
53
|
-
##### Install (Bourbon v3.0+)
|
54
|
-
|
55
|
-
gem install bourbon
|
56
|
-
|
57
|
-
Install Bourbon into the current directory by generating the `bourbon` folder:
|
58
|
-
|
59
|
-
bourbon install
|
60
|
-
|
61
|
-
The generated folder will contain all the mixins and other necessary Bourbon files. It is recommended not to add or modify the Bourbon files so that you can update Bourbon easily.
|
62
|
-
|
63
|
-
You can specify a target directory using the `path` flag:
|
64
|
-
|
65
|
-
bourbon install --path my/custom/path/
|
66
|
-
|
67
|
-
##### Import
|
68
|
-
|
69
|
-
Lastly, import the mixins at the beginning of your stylesheet(s):
|
70
|
-
|
71
|
-
@import 'bourbon/bourbon';
|
72
|
-
|
73
|
-
Note: Bourbon no longer requires a custom `sass --watch` command for Bourbon v3.0+
|
74
|
-
|
75
|
-
##### Other Commands
|
76
|
-
Visit the [Command line tools wiki](https://github.com/thoughtbot/bourbon/wiki/Command-Line-Tools) for a complete list
|
77
|
-
|
78
|
-
bourbon help
|
79
|
-
bourbon update
|
80
|
-
|
81
|
-
##### [Bourbon v2.x install instructions](https://github.com/thoughtbot/bourbon/wiki/Bourbon-v2.x-or-Rails-2.3-Install)
|
82
|
-
|
83
|
-
|
84
|
-
- [Changelog](https://github.com/thoughtbot/bourbon/wiki)
|
85
|
-
- [Browser support](https://github.com/thoughtbot/bourbon/wiki/Browser-Support)
|
86
|
-
|
87
|
-
### Chat with us
|
88
|
-
[![Gitter chat](https://badges.gitter.im/thoughtbot/bourbon.png)](https://gitter.im/thoughtbot/bourbon)
|
89
|
-
|
90
|
-
### Credits
|
91
|
-
![thoughtbot](http://thoughtbot.com/images/tm/logo.png)
|
92
|
-
|
93
|
-
Bourbon is maintained and funded by [thoughtbot, inc](http://thoughtbot.com/community)
|
94
|
-
|
95
|
-
The names and logos for thoughtbot are trademarks of thoughtbot, inc.
|
96
|
-
|
97
|
-
Got questions? Need help? Tweet at [@phillapier](http://twitter.com/phillapier).
|
98
|
-
|
99
|
-
### License
|
100
|
-
Bourbon is Copyright © 2011-2013 thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|