mcgriddle 0.4.1 → 0.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 946ad6f2ed8176062c85d3a0f43e9e1372af16b2
4
- data.tar.gz: 5da130cced60c63db1898460cf7492353a3022ce
3
+ metadata.gz: 020382579ed412b1a3fce1f2aaaa7b2ddd1a6e5b
4
+ data.tar.gz: b20d7dc93484be85480f8fec59d367121635cee7
5
5
  SHA512:
6
- metadata.gz: fdf325c65d6a19ac6bed3a7da50e8de1a98a4d908eae1afe9167de4fa52e56168035001c4e242827a4faf06ec953219ccda63877eaf282b00acde9f76ea30968
7
- data.tar.gz: ff2ca3ac717d4cf9fe5a3a0632d7999898d280b8bb95dec3eedb21848971e33de6708a98b6ae944a800b7f449c3cae5de879001238c92fd10294e7f8dd239cbb
6
+ metadata.gz: be462f110f5313ba1bc60a362e52fee7dfbc9d13406f17141df250dbd1338e143ce612a010319e2b9195443997a36c401612edde36fd941e53fe64392317fbef
7
+ data.tar.gz: ce3e7d6ee1c81098ca82b0de7aed679987cf7a4a89c1558c49ad2af9cc53093b6909336be2547eb41d4507c826ac2e8f0a559c6411bbd3ffc4d0ec9dc858e687
data/CHANGELOG.md CHANGED
@@ -2,5 +2,8 @@
2
2
 
3
3
  Changelog for McGriddle.
4
4
 
5
+ ## [0.4.2] - 11/29/2016
6
+ - Minor release-related and documentation tweaks.
7
+
5
8
  ## [0.4.1] - 11/28/2016
6
9
  - Public release.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # McGriddle
2
2
 
3
- McGriddle is a (mostly) get-out-of-your-way Sass library designed to help you build based a grid system. Set up your grid system…
3
+ McGriddle is a get-out-of-your-way Sass library designed to help you build based a grid system. Suports [flexbox](#grid-flexbox) (the grid is based on floats, by default). Set up your grid system…
4
4
 
5
5
  ```scss
6
6
  $grid-width : 64em;
@@ -78,11 +78,12 @@ $grid-width : 64em;
78
78
  $grid-gutter : 1.875em;
79
79
  $grid-columns : 12;
80
80
  $grid-minor : 1/3;
81
+ $grid-collapse : false;
82
+ $grid-rtl : false;
83
+
81
84
  $grid-flexbox : false;
82
85
  $grid-flexbox-wrap : wrap;
83
86
  $grid-flexbox-justify: flex-start;
84
- $grid-collapse : false;
85
- $grid-rtl : false;
86
87
  ```
87
88
 
88
89
  ---
@@ -2,8 +2,8 @@
2
2
  * McGriddle
3
3
  * @description
4
4
  * @author Jonathan Suh @jonsuh
5
- * @site https://
6
- * @link https://
5
+ * @site https://jonsuh.com/mcgriddle
6
+ * @link https://github.com/jonsuh/mcgriddle
7
7
  */
8
8
 
9
9
  // Settings
@@ -6,7 +6,8 @@ $grid-gutter : 1.875em !default;
6
6
  $grid-columns : 12 !default;
7
7
  $grid-minor : 1/3 !default;
8
8
  $grid-collapse : false !default;
9
+ $grid-rtl : false !default;
10
+
9
11
  $grid-flexbox : false !default;
10
12
  $grid-flexbox-wrap : wrap !default;
11
13
  $grid-flexbox-justify: flex-start !default;
12
- $grid-rtl : false !default;
data/bower.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcgriddle",
3
- "version": "0.4.1",
4
- "description": "",
3
+ "version": "0.4.2",
4
+ "description": "A get-out-of-your-way Sass grid library. Supports flexbox.",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Jonathan Suh",
@@ -1,3 +1,3 @@
1
1
  module McGriddle
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
data/mcgriddle.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Jonathan Suh"]
9
9
  spec.email = ["hello@jonsuh.com"]
10
10
  spec.homepage = "https://jonsuh.com/mcgriddle"
11
- spec.summary = "A (mostly) get-out-of-your-way Sass grid library."
12
- spec.description = "A (mostly) get-out-of-your-way Sass library designed to help you build based a grid system."
11
+ spec.summary = "A get-out-of-your-way Sass grid library. Supports flexbox."
12
+ spec.description = "A get-out-of-your-way Sass library designed to help you build based a grid system. Supports flexbox."
13
13
  spec.license = "MIT"
14
14
 
15
15
  spec.files = `git ls-files`.split("\n")
data/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcgriddle",
3
- "version": "0.4.1",
4
- "description": "",
3
+ "version": "0.4.2",
4
+ "description": "A get-out-of-your-way Sass grid library. Supports flexbox.",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Jonathan Suh",
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcgriddle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
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-28 00:00:00.000000000 Z
11
+ date: 2016-11-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: A (mostly) get-out-of-your-way Sass library designed to help you build
14
- based a grid system.
13
+ description: A get-out-of-your-way Sass library designed to help you build based a
14
+ grid system. Supports flexbox.
15
15
  email:
16
16
  - hello@jonsuh.com
17
17
  executables: []
@@ -71,5 +71,5 @@ rubyforge_project:
71
71
  rubygems_version: 2.5.1
72
72
  signing_key:
73
73
  specification_version: 4
74
- summary: A (mostly) get-out-of-your-way Sass grid library.
74
+ summary: A get-out-of-your-way Sass grid library. Supports flexbox.
75
75
  test_files: []