rails_layout 0.5.1 → 0.5.2

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: 8d91380c47918b97472dac4ea4465abc2db191ba
4
- data.tar.gz: 143ed4325ce448bc5a58297816e51b8d1eac2745
3
+ metadata.gz: e95f1a59f270874088175daee2ab4fd6fed4894d
4
+ data.tar.gz: 09fdcabb0eda04fc44a25663f3f62b83ea9ea397
5
5
  SHA512:
6
- metadata.gz: 26e6421df9f4b1cda3b2fe8e4b5aecb0163a4af715bc3a82563d6e50a8ec2082c36a76f6bf0e7479c8e9a66dbc57b9cc9adf3fd8ac729fce6f5014ee7516a651
7
- data.tar.gz: 52c9c12d26be5b7f18c43a085d5425e37d91f61fe462c0b2148feda2c588726f619b4e8c0fa003cb2819ab2df800f584cd6c42a502eb76bfb6ef3a6e99a74139
6
+ metadata.gz: 9b4d8e56d76259ca7f52f796dc6ac97d38ac779cea4b05230e050361948fa82e210e9e349ab2042e5f4e7146f685e145cc1a381650ee847b1752b01adac68de6
7
+ data.tar.gz: 92a37c76905a098b2594183bac11f37f55408714b232dba69872efdf83cf7882c0af308bc4cd4b4065ea4c6cdb5c3223700d7ed233e448bdc7ca542975483e6c
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h3. 0.5.2 November 18, 2013
4
+
5
+ * fix mixin names
6
+
3
7
  h3. 0.5.1 November 18, 2013
4
8
 
5
9
  * make it clear that the mixins are just examples
@@ -12,17 +12,17 @@
12
12
 
13
13
  // use mixins to create semantic classes
14
14
  // these are examples you can modify
15
- @mixin 12-columns {
15
+ @mixin twelve-columns {
16
16
  @extend .small-12;
17
17
  @extend .columns;
18
18
  }
19
- @mixin 6-columns-centered {
19
+ @mixin six-columns-centered {
20
20
  @extend .small-6;
21
21
  @extend .columns;
22
22
  @extend .text-center;
23
23
  }
24
24
  main {
25
- @include 12-columns;
25
+ @include twelve-columns;
26
26
  background-color: #eee;
27
27
  }
28
28
  section {
@@ -30,13 +30,13 @@ section {
30
30
  margin-top: 20px;
31
31
  }
32
32
  .column {
33
- @include 6-columns-centered;
33
+ @include six-columns-centered;
34
34
  }
35
35
  .form {
36
36
  @include grid-column(6);
37
37
  }
38
38
  .form-centered {
39
- @include 6-columns-centered;
39
+ @include six-columns-centered;
40
40
  }
41
41
  .submit {
42
42
  @extend .button;
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_layout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe