mcgriddle 0.4.0 → 0.4.1

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: 3b2723d5851f215b336ce2e8948fe0edb0353a5f
4
- data.tar.gz: a7e3df0e46369551436422db022c7e5b7f22de3c
3
+ metadata.gz: 946ad6f2ed8176062c85d3a0f43e9e1372af16b2
4
+ data.tar.gz: 5da130cced60c63db1898460cf7492353a3022ce
5
5
  SHA512:
6
- metadata.gz: 87977bb509e1117dcfdf0e02356802578a4467f27cb66bfe4bccf944fd96ebc268b29f50711d7bbaff3ab9084037234526a2f58afe45d48b0135b1b650810614
7
- data.tar.gz: 5ceefdac04c2c6c7e31c7d75bbf508600bc4e60b734e16416d3a4b60cd920377e20cac9143a1ebb1c9145c9bcc8304476a4355410b1e4a2f0f83d4ab04d586bc
6
+ metadata.gz: fdf325c65d6a19ac6bed3a7da50e8de1a98a4d908eae1afe9167de4fa52e56168035001c4e242827a4faf06ec953219ccda63877eaf282b00acde9f76ea30968
7
+ data.tar.gz: ff2ca3ac717d4cf9fe5a3a0632d7999898d280b8bb95dec3eedb21848971e33de6708a98b6ae944a800b7f449c3cae5de879001238c92fd10294e7f8dd239cbb
data/CHANGELOG.md CHANGED
@@ -0,0 +1,6 @@
1
+ # Changelog
2
+
3
+ Changelog for McGriddle.
4
+
5
+ ## [0.4.1] - 11/28/2016
6
+ - Public release.
data/README.md CHANGED
@@ -6,7 +6,6 @@ McGriddle is a (mostly) get-out-of-your-way Sass library designed to help you bu
6
6
  $grid-width : 64em;
7
7
  $grid-gutter : 1.875em;
8
8
  $grid-columns: 12;
9
- $grid-flexbox: false;
10
9
  ```
11
10
 
12
11
  …and you’re ready to build.
@@ -88,7 +87,7 @@ $grid-rtl : false;
88
87
 
89
88
  ---
90
89
 
91
- ### Read the [documentation](https://jonsuh.com/mcgriddle) for full list and explanation of settings, mixins and functions.
90
+ ### Read the [documentation](https://jonsuh.com/mcgriddle/) for a full list and explanation of settings, mixins and functions.
92
91
 
93
92
  ---
94
93
 
@@ -197,3 +196,11 @@ Right-to-left support for RTL languages: `$grid-rtl: true`. (Default is `false`)
197
196
  $grid-rtl: true;
198
197
  .container { @include container; }
199
198
  ```
199
+
200
+ _Be sure to read the [documentation](https://jonsuh.com/mcgriddle/) for a full list of settings, mixins and functions._
201
+
202
+ ## That’s it?
203
+
204
+ The documentation is still a work-in-progress, so there are features and functionality that have yet to be properly documented. I also have a couple more features I’d like to build (when and if I decide to), but aside from that… yep, that’s it.
205
+
206
+ I originally created McGriddle for me—I wanted something stupid simple and straight forward. Therefore if you’re looking for something more robust, I’d suggest [Bourbon Neat](https://github.com/thoughtbot/neat) or [Susy](http://susy.oddbird.net/).
@@ -5,7 +5,9 @@
5
5
  @if $_max-width == max or $_max-width == true {
6
6
  $_column-width: column-width($_columns, false);
7
7
 
8
- width: 100%;
8
+ @if $grid-flexbox == true {
9
+ width: 100%;
10
+ }
9
11
  max-width: $_column-width;
10
12
  }
11
13
  @else { // $_max-width == default
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcgriddle",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -1,3 +1,3 @@
1
1
  module McGriddle
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcgriddle",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcgriddle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Suh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-23 00:00:00.000000000 Z
11
+ date: 2016-11-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A (mostly) get-out-of-your-way Sass library designed to help you build
14
14
  based a grid system.