polar-express 1.0.0 → 1.1.0
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/README.md +12 -12
- data/lib/generators/inuitcss/install/templates/inuit.scss +1 -1
- data/lib/polar-express/version.rb +1 -1
- data/vendor/assets/inuit.css/inuit-bare-list/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-block-list/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-box/.bower.json +7 -8
- data/vendor/assets/inuit.css/inuit-buttons/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-clearfix/.bower.json +16 -5
- data/vendor/assets/inuit.css/inuit-clearfix/README.md +4 -0
- data/vendor/assets/inuit.css/inuit-clearfix/{_generic.clearfix.scss → _trumps.clearfix.scss} +0 -0
- data/vendor/assets/inuit.css/inuit-flag/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-headings/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-images/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-layout/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-lists/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-media/.bower.json +7 -8
- data/vendor/assets/inuit.css/inuit-paragraphs/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-reset/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-responsive-tools/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-shared/.bower.json +6 -7
- data/vendor/assets/inuit.css/inuit-shared/_generic.shared.scss +6 -6
- data/vendor/assets/inuit.css/inuit-spacing/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-starter-kit/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-tables/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-tabs/.bower.json +1 -1
- data/vendor/assets/inuit.css/inuit-ui-list/.bower.json +2 -3
- data/vendor/assets/inuit.css/inuit-widths/.bower.json +2 -3
- 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: 60ab6acec4c1dcb4a2924bd6c4037bcc814dc746
|
4
|
+
data.tar.gz: 3c10257a44657311a91e99e93a9bebdfed1c3f78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 335729c4471189cd7a45084d95bda7ae5811a3330e73b1d881a9dcd84505e539796f3ea1c2261b8c7a75ff457c44e63bddb921b5ce5c8c71c1e6163010901987
|
7
|
+
data.tar.gz: 21a1c99fa4431a24bdd6b4291286d7b7003e6a278f1950b5b31624d4acc0c5e57f38813341999b3e5ad48496fe9083dbeda3dd6be9e3ff1777ba28367ae682c4
|
data/README.md
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
#Polar Express
|
1
|
+
# Polar Express
|
2
2
|
|
3
3
|
Polar Express is a Ruby gem that allows easy integration of the awesome [inuit.css](http://inuitcss.com/) framework into the Rails asset pipeline.
|
4
4
|
|
5
|
-
##Installation
|
5
|
+
## Installation
|
6
6
|
|
7
7
|
Add the following line to your `Gemfile` then run the `bundle` command.
|
8
8
|
|
9
9
|
```
|
10
|
-
gem
|
10
|
+
gem "polar-express", "~> 1.0.0"
|
11
11
|
```
|
12
12
|
|
13
|
-
To use the latest
|
13
|
+
To use the latest release of the gem from github add the following line to your `Gemfile` instead of the line above and run the `bundle` command to install the gem.
|
14
14
|
|
15
15
|
```
|
16
16
|
gem 'polar-express', :git => 'https://github.com/danielboggs/polar-express.git'
|
@@ -22,16 +22,16 @@ Use the included generator to create the necessary assets.
|
|
22
22
|
rails g inuitcss:install
|
23
23
|
```
|
24
24
|
|
25
|
-
This creates
|
25
|
+
This creates an `/app/assets/stylesheets/inuit.scss` file which contains individual imports for all of Inuit's components along with an area to provide any necessary Inuit variable overrides (see Inuit documentation for details) so you can opt in for only the parts you need (the minimum requirements are uncommented by default).
|
26
26
|
|
27
|
-
##Additional Installation Notes
|
27
|
+
## Additional Installation Notes
|
28
28
|
|
29
|
-
Once I have the gem installed and the assets generated I typically
|
30
|
-
|
31
|
-
From here I typically create a `theme` folder in my stylesheets directory and add any custom/theme sass files there such as `_layout.scss`, `_header.scss` etc. then manually import them at the bottom of the `inuit.css.scss` file.
|
32
|
-
|
33
|
-
e.g.
|
29
|
+
Once I have the gem installed and the assets generated I typically convert my `/app/assets/stylesheets/application.css` file to a `.scss` file, remove its contents and then manually import my Sass structure.
|
34
30
|
|
35
31
|
```
|
36
|
-
@import "
|
32
|
+
@import "inuit";
|
33
|
+
|
34
|
+
@import "main/base/*";
|
35
|
+
@import "main/mixins/*";
|
36
|
+
@import "main/components/*";
|
37
37
|
```
|
@@ -28,7 +28,6 @@
|
|
28
28
|
// Inuit.css Generic
|
29
29
|
@import "../inuit.css/inuit-box-sizing/generic.box-sizing";
|
30
30
|
@import "../inuit.css/inuit-normalize/generic.normalize";
|
31
|
-
// @import "../inuit.css/inuit-clearfix/generic.clearfix";
|
32
31
|
// @import "../inuit.css/inuit-reset/generic.reset";
|
33
32
|
// @import "../inuit.css/inuit-shared/generic.shared";
|
34
33
|
|
@@ -52,5 +51,6 @@
|
|
52
51
|
// @import "../inuit.css/inuit-ui-list/objects.ui-list";
|
53
52
|
|
54
53
|
// Inuit.css Trumps
|
54
|
+
// @import "../inuit.css/inuit-clearfix/trumps.clearfix";
|
55
55
|
// @import "../inuit.css/inuit-spacing/trumps.spacing";
|
56
56
|
// @import "../inuit.css/inuit-widths/trumps.widths";
|
@@ -23,7 +23,6 @@
|
|
23
23
|
"commit": "68610db4e5a21b17ad43e6842cedc3abfb3fe992"
|
24
24
|
},
|
25
25
|
"_source": "git://github.com/inuitcss/objects.bare-list.git",
|
26
|
-
"_target": "
|
27
|
-
"_originalSource": "inuit-bare-list"
|
28
|
-
"_direct": true
|
26
|
+
"_target": "*",
|
27
|
+
"_originalSource": "inuit-bare-list"
|
29
28
|
}
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "81e77100bda3dcd313650fd5413521c73c47ee81"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/block-list.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-block-list"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-block-list"
|
30
29
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "inuit-box",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.4.0",
|
4
4
|
"homepage": "https://github.com/inuitcss/objects.box",
|
5
5
|
"authors": [
|
6
6
|
"Harry Roberts <harry@csswizardry.com>"
|
@@ -15,17 +15,16 @@
|
|
15
15
|
"license": "Apache",
|
16
16
|
"dependencies": {
|
17
17
|
"inuit-defaults": "~0.2.0",
|
18
|
-
"inuit-clearfix": "~0.
|
18
|
+
"inuit-clearfix": "~0.2.0",
|
19
19
|
"inuit-functions": "~0.2.0"
|
20
20
|
},
|
21
|
-
"_release": "0.
|
21
|
+
"_release": "0.4.0",
|
22
22
|
"_resolution": {
|
23
23
|
"type": "version",
|
24
|
-
"tag": "0.
|
25
|
-
"commit": "
|
24
|
+
"tag": "0.4.0",
|
25
|
+
"commit": "02c36ad12849f359ec12d546ab692e0537729f28"
|
26
26
|
},
|
27
27
|
"_source": "git://github.com/inuitcss/objects.box.git",
|
28
|
-
"_target": "
|
29
|
-
"_originalSource": "inuit-box"
|
30
|
-
"_direct": true
|
28
|
+
"_target": "*",
|
29
|
+
"_originalSource": "inuit-box"
|
31
30
|
}
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "68465f37c237e1b5fd8b08eca3075f6fa72c0d3f"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/objects.buttons.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-buttons"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-buttons"
|
30
29
|
}
|
@@ -1,14 +1,25 @@
|
|
1
1
|
{
|
2
2
|
"name": "inuit-clearfix",
|
3
|
+
"version": "0.2.0",
|
3
4
|
"homepage": "https://github.com/inuitcss/generic.clearfix",
|
4
|
-
"
|
5
|
-
|
5
|
+
"authors": [
|
6
|
+
"Harry Roberts <harry@csswizardry.com>"
|
7
|
+
],
|
8
|
+
"description": "Small clearfixing utility for the inuitcss framework",
|
9
|
+
"main": "_generic.clearfix.scss",
|
10
|
+
"keywords": [
|
11
|
+
"inuitcss",
|
12
|
+
"oocss",
|
13
|
+
"css"
|
14
|
+
],
|
15
|
+
"license": "Apache",
|
16
|
+
"_release": "0.2.0",
|
6
17
|
"_resolution": {
|
7
18
|
"type": "version",
|
8
|
-
"tag": "0.
|
9
|
-
"commit": "
|
19
|
+
"tag": "0.2.0",
|
20
|
+
"commit": "ad3ae5dc7f1f9dceaecf93202effa9528896fb7d"
|
10
21
|
},
|
11
22
|
"_source": "git://github.com/inuitcss/generic.clearfix.git",
|
12
|
-
"_target": "~0.
|
23
|
+
"_target": "~0.2.0",
|
13
24
|
"_originalSource": "inuit-clearfix"
|
14
25
|
}
|
data/vendor/assets/inuit.css/inuit-clearfix/{_generic.clearfix.scss → _trumps.clearfix.scss}
RENAMED
File without changes
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "fd676862511daf5317759d491b462dad9f0b2629"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/base.headings.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-headings"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-headings"
|
30
29
|
}
|
@@ -20,7 +20,6 @@
|
|
20
20
|
"commit": "59e0cc55e65147143e80012e8eb1e7157f65e13e"
|
21
21
|
},
|
22
22
|
"_source": "git://github.com/inuitcss/base.images.git",
|
23
|
-
"_target": "
|
24
|
-
"_originalSource": "inuit-images"
|
25
|
-
"_direct": true
|
23
|
+
"_target": "*",
|
24
|
+
"_originalSource": "inuit-images"
|
26
25
|
}
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "44f22551a24752e5172e247937014a483f809b5d"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/objects.layout.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-layout"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-layout"
|
30
29
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "inuit-media",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.4.0",
|
4
4
|
"homepage": "https://github.com/inuitcss/objects.media",
|
5
5
|
"authors": [
|
6
6
|
"Harry Roberts <harry@csswizardry.com>"
|
@@ -15,17 +15,16 @@
|
|
15
15
|
"license": "Apache",
|
16
16
|
"dependencies": {
|
17
17
|
"inuit-defaults": "~0.2.0",
|
18
|
-
"inuit-clearfix": "~0.
|
18
|
+
"inuit-clearfix": "~0.2.0",
|
19
19
|
"inuit-functions": "~0.2.0"
|
20
20
|
},
|
21
|
-
"_release": "0.
|
21
|
+
"_release": "0.4.0",
|
22
22
|
"_resolution": {
|
23
23
|
"type": "version",
|
24
|
-
"tag": "0.
|
25
|
-
"commit": "
|
24
|
+
"tag": "0.4.0",
|
25
|
+
"commit": "1343184cd3fce94491057e52b515b909d7155960"
|
26
26
|
},
|
27
27
|
"_source": "git://github.com/inuitcss/objects.media.git",
|
28
|
-
"_target": "
|
29
|
-
"_originalSource": "inuit-media"
|
30
|
-
"_direct": true
|
28
|
+
"_target": "*",
|
29
|
+
"_originalSource": "inuit-media"
|
31
30
|
}
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "9e5a880f4fb834c0d38b8bdf955091b6d8cb285a"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/base.paragraphs.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-paragraphs"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-paragraphs"
|
30
29
|
}
|
@@ -20,7 +20,6 @@
|
|
20
20
|
"commit": "20b76c5c5c6c1e267b81008e03dc793a10b9e652"
|
21
21
|
},
|
22
22
|
"_source": "git://github.com/inuitcss/generic.reset.git",
|
23
|
-
"_target": "
|
24
|
-
"_originalSource": "inuit-reset"
|
25
|
-
"_direct": true
|
23
|
+
"_target": "*",
|
24
|
+
"_originalSource": "inuit-reset"
|
26
25
|
}
|
@@ -23,7 +23,6 @@
|
|
23
23
|
"commit": "70a360e85fcbcd50cd7e923ee66ffb81685533e8"
|
24
24
|
},
|
25
25
|
"_source": "git://github.com/inuitcss/tools.responsive.git",
|
26
|
-
"_target": "
|
27
|
-
"_originalSource": "inuit-responsive-tools"
|
28
|
-
"_direct": true
|
26
|
+
"_target": "*",
|
27
|
+
"_originalSource": "inuit-responsive-tools"
|
29
28
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "inuit-shared",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.3",
|
4
4
|
"homepage": "https://github.com/inuitcss/generic.shared",
|
5
5
|
"authors": [
|
6
6
|
"Harry Roberts <harry@csswizardry.com>"
|
@@ -16,14 +16,13 @@
|
|
16
16
|
"dependencies": {
|
17
17
|
"inuit-defaults": "~0.2.0"
|
18
18
|
},
|
19
|
-
"_release": "0.1.
|
19
|
+
"_release": "0.1.3",
|
20
20
|
"_resolution": {
|
21
21
|
"type": "version",
|
22
|
-
"tag": "0.1.
|
23
|
-
"commit": "
|
22
|
+
"tag": "0.1.3",
|
23
|
+
"commit": "39150c0f96a4af3f1383a22ec9fa30cefb7d7073"
|
24
24
|
},
|
25
25
|
"_source": "git://github.com/inuitcss/generic.shared.git",
|
26
|
-
"_target": "
|
27
|
-
"_originalSource": "inuit-shared"
|
28
|
-
"_direct": true
|
26
|
+
"_target": "*",
|
27
|
+
"_originalSource": "inuit-shared"
|
29
28
|
}
|
@@ -7,12 +7,12 @@
|
|
7
7
|
* base line-height. This allows us to keep a consistent vertical rhythm.
|
8
8
|
* As per: csswizardry.com/2012/06/single-direction-margin-declarations
|
9
9
|
*/
|
10
|
-
h1, h2, h3, h4, h5, h6,
|
11
|
-
ul, ol, dl,
|
12
|
-
blockquote, p, address,
|
13
|
-
table,
|
14
|
-
fieldset, figure,
|
15
|
-
pre,
|
10
|
+
h1, h2, h3, h4, h5, h6,
|
11
|
+
ul, ol, dl,
|
12
|
+
blockquote, p, address,
|
13
|
+
table,
|
14
|
+
fieldset, figure,
|
15
|
+
pre,
|
16
16
|
%margin-bottom {
|
17
17
|
margin-bottom: $inuit-base-spacing-unit;
|
18
18
|
margin-bottom: ($inuit-base-spacing-unit / $inuit-base-font-size) * 1rem;
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "c87d4033e47ee8666569a0c0c3e4d2a0c597f36e"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/trumps.spacing.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-spacing"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-spacing"
|
30
29
|
}
|
@@ -27,7 +27,6 @@
|
|
27
27
|
"commit": "484da84ed1004e825da6c28ad750e0ba3c1b3405"
|
28
28
|
},
|
29
29
|
"_source": "git://github.com/inuitcss/starter-kit.git",
|
30
|
-
"_target": "
|
31
|
-
"_originalSource": "inuit-starter-kit"
|
32
|
-
"_direct": true
|
30
|
+
"_target": "*",
|
31
|
+
"_originalSource": "inuit-starter-kit"
|
33
32
|
}
|
@@ -25,7 +25,6 @@
|
|
25
25
|
"commit": "2819e946ba80230b21b55167ac798ac706c2234c"
|
26
26
|
},
|
27
27
|
"_source": "git://github.com/inuitcss/base.tables.git",
|
28
|
-
"_target": "
|
29
|
-
"_originalSource": "inuit-tables"
|
30
|
-
"_direct": true
|
28
|
+
"_target": "*",
|
29
|
+
"_originalSource": "inuit-tables"
|
31
30
|
}
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"commit": "1be981a5f225a4bd8288600aefd4028a25619f22"
|
25
25
|
},
|
26
26
|
"_source": "git://github.com/inuitcss/objects.ui-list.git",
|
27
|
-
"_target": "
|
28
|
-
"_originalSource": "inuit-ui-list"
|
29
|
-
"_direct": true
|
27
|
+
"_target": "*",
|
28
|
+
"_originalSource": "inuit-ui-list"
|
30
29
|
}
|
@@ -23,7 +23,6 @@
|
|
23
23
|
"commit": "8f3d8e3d8d9fcc643625864a68076e3381bc65f1"
|
24
24
|
},
|
25
25
|
"_source": "git://github.com/inuitcss/trumps.widths.git",
|
26
|
-
"_target": "
|
27
|
-
"_originalSource": "inuit-widths"
|
28
|
-
"_direct": true
|
26
|
+
"_target": "*",
|
27
|
+
"_originalSource": "inuit-widths"
|
29
28
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: polar-express
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Boggs
|
@@ -63,7 +63,7 @@ files:
|
|
63
63
|
- vendor/assets/inuit.css/inuit-buttons/_objects.buttons.scss
|
64
64
|
- vendor/assets/inuit.css/inuit-clearfix/.bower.json
|
65
65
|
- vendor/assets/inuit.css/inuit-clearfix/README.md
|
66
|
-
- vendor/assets/inuit.css/inuit-clearfix/
|
66
|
+
- vendor/assets/inuit.css/inuit-clearfix/_trumps.clearfix.scss
|
67
67
|
- vendor/assets/inuit.css/inuit-defaults/.bower.json
|
68
68
|
- vendor/assets/inuit.css/inuit-defaults/README.md
|
69
69
|
- vendor/assets/inuit.css/inuit-defaults/_settings.defaults.scss
|