compass-pattern-primer 0.2.2 → 0.2.3
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
|
SHA512:
|
3
|
-
|
4
|
-
|
3
|
+
metadata.gz: 92cacdfa6ad91baf9d059850d7b9ece522f8fda12afe59d43b38210d790a24a2e7bf472a3a6b4f2edb52e5da43683c8b4f932febc375075731615b3b2c4cbb70
|
4
|
+
data.tar.gz: 98a91cc43c15c3d27655c9b36b439cbbbffebcfb47cf994763df0799fbf841a31a0154ac67271c98e2b19e462e6144ee29a43c5a33640b516a57365663e060cf
|
5
5
|
SHA1:
|
6
|
-
|
7
|
-
|
6
|
+
metadata.gz: 01b123f02dc9f10bb204a04a9f6ce67f5cff13bd
|
7
|
+
data.tar.gz: d16b54cf4d745ec49afe052758405b074ef9fa86
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
* **0.1** First pass at creating compass extension and ruby gem.
|
2
2
|
* **0.2** Created templates for building scaffolding in a compass project.
|
3
3
|
* **0.2.1** Minor tweaks, Fixes color stack dependencies.
|
4
|
-
* **0.2.2** Refactored bounding-box mixin. It's now 2 mixins: border-outline and margin-padding
|
4
|
+
* **0.2.2** Refactored `bounding-box` mixin. It's now 2 mixins: `border-outline` and `margin-padding`.
|
5
|
+
* **0.2.3** Fixed missing <html> tag on pattern-primer.html. Color scheme and modules are easier to opt out of in global.scss
|
@@ -18,8 +18,8 @@ Compass::Frameworks.register('compass-pattern-primer', :path => extension_path)
|
|
18
18
|
# a prerelease version
|
19
19
|
# Date is in the form of YYYY-MM-DD
|
20
20
|
module Compass_Pattern_Primer
|
21
|
-
VERSION = "0.2.
|
22
|
-
DATE = "2013-07
|
21
|
+
VERSION = "0.2.3"
|
22
|
+
DATE = "2013-08-07"
|
23
23
|
end
|
24
24
|
|
25
25
|
# This is where any custom SassScript should be placed. The functions will be
|
@@ -12,11 +12,24 @@
|
|
12
12
|
|
13
13
|
@import "compass-pattern-primer/reset";
|
14
14
|
|
15
|
-
@import "compass-pattern-primer/partials/";
|
15
|
+
@import "compass-pattern-primer/partials/_mixins";
|
16
|
+
@import "compass-pattern-primer/partials/_variables";
|
17
|
+
@import "compass-pattern-primer/partials/_extendables";
|
18
|
+
@import "compass-pattern-primer/partials/_functions";
|
19
|
+
@import "compass-pattern-primer/partials/_colors"; // generates color scheme table on pattern-primer.html —- good for development but adds a lot of css.
|
16
20
|
@import "partials/variables/theme/_overrides";
|
17
21
|
|
18
|
-
@import "compass-pattern-primer/base";
|
19
|
-
@import "compass-pattern-primer/
|
22
|
+
@import "compass-pattern-primer/base/_page";
|
23
|
+
@import "compass-pattern-primer/base/_typography";
|
24
|
+
@import "compass-pattern-primer/base/_links";
|
25
|
+
@import "compass-pattern-primer/base/_forms";
|
26
|
+
@import "compass-pattern-primer/base/_buttons";
|
27
|
+
|
28
|
+
// optional module imports. comment out ones you don't use
|
29
|
+
@import "compass-pattern-primer/modules/_control";
|
30
|
+
@import "compass-pattern-primer/modules/_feedback";
|
31
|
+
@import "compass-pattern-primer/modules/_options";
|
32
|
+
@import "compass-pattern-primer/modules/_pagination";
|
20
33
|
|
21
34
|
@import "base/_page";
|
22
35
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-pattern-primer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Reilly
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2013-07
|
12
|
+
date: 2013-08-07 00:00:00 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|