kentucky 1.0.3 → 1.0.4

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: ee0b0a0b63dc58d2beda013eb646c430c04a2c4f
4
- data.tar.gz: 5ed4671c61946067dae37a2c4818e9bb46e14e6b
3
+ metadata.gz: 5aba123a850392a26be6dcec5489b4a910c931db
4
+ data.tar.gz: 1e5622841ccbb1529e69bf652d413c23aab1642d
5
5
  SHA512:
6
- metadata.gz: a50bdec8747bda18c8652be464f97a1219ac6f726eca7d469c96d622e10847104a4bca9b8ae9ea77343b1a841922ce08b2d2bdcd6fb8b005d0498908810835a6
7
- data.tar.gz: e4eee8ae16e8de0b0a924ff69c42bd3e5facb42eaebab5a6a6493d29225d2fd853364c8e7d3fee623eeecb370b1845d37332fe914357469c21ce6c23fcc21ad9
6
+ metadata.gz: 11346423d4fabf7712e58a32ee48b4c7d5a5ced685b49b37a09d4a4f2614ac6812f9183e55e161e89db8faea91417b30dc6eabe5c298e2b10bfd915154794956
7
+ data.tar.gz: 18466723ccc239399ad05aa47051c01396542486bde078c63042facef5ca822ed4de7c51726bd47ab90f68eabbc4bc80938ae64261fd0b8eb3a26cc0fa2a173d
data/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # 1.0.4
2
+
3
+ ### Bug fixes
4
+
5
+ * Resolve deprecation warning in HTML5-Input-Types helper
6
+
7
+ ---
8
+ # 1.0.2 / 1.0.3
9
+
10
+ ### Bug fixes
11
+
12
+ * Removed Bourbon/Neat dependency from Kentucky gem install process
13
+
14
+ ---
15
+ # 1.0.1
16
+
17
+ ### Bug fixes
18
+
19
+ * Resolved typo in transition mixin
20
+
21
+ ---
22
+ # 1.0.0
23
+
24
+ ### Features
25
+
26
+ * Initial release
27
+ * Full addition of standalone grid system
28
+ * Shifted gutters from using rems to pixels
29
+ * Relocated all project variables to project-settings
@@ -13,7 +13,6 @@ $inputs-list:
13
13
  'input[type="text"]',
14
14
  'input[type="url"]',
15
15
 
16
- // Webkit / Gecko specific
17
16
  'input[type="color"]',
18
17
  'input[type="date"]',
19
18
  'input[type="datetime"]',
@@ -22,9 +21,9 @@ $inputs-list:
22
21
  'input[type="time"]',
23
22
  'input[type="week"]';
24
23
 
25
- $unquoted-inputs-list: ();
24
+ $unquoted-inputs-list: null;
26
25
  @each $input-type in $inputs-list{
27
26
  $unquoted-inputs-list: append($unquoted-inputs-list, unquote($input-type), comma) !global;
28
27
  }
29
28
 
30
- $all-text-inputs: $unquoted-inputs-list;
29
+ $all-text-inputs: $unquoted-inputs-list;
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
data/readme.md CHANGED
@@ -5,22 +5,3 @@
5
5
 
6
6
  ***
7
7
 
8
- ## CHANGELOG
9
-
10
- **1.0.3**
11
-
12
- Fix dependency issue in gem files
13
-
14
- **1.0.2**
15
-
16
- Remove Bourbon/Neat dependencies
17
-
18
- **1.0.1**
19
-
20
- Fixed error (typos are fun) in the transition mixin
21
-
22
- **1.0.0 - The big one!**
23
-
24
- Finished custom grid system for Kentucky
25
- Spruced up project settings to be more inclusive
26
- Shifted from rem-based gutters to pixels
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kentucky
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Clemmer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-04-10 00:00:00.000000000 Z
13
+ date: 2014-04-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -78,6 +78,7 @@ extensions: []
78
78
  extra_rdoc_files: []
79
79
  files:
80
80
  - .gitignore
81
+ - CHANGELOG.md
81
82
  - Gemfile
82
83
  - Gemfile.lock
83
84
  - LICENSE