archetype 1.0.0.alpha.1 → 1.0.0.alpha.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 +4 -4
- data/CHANGELOG.md +8 -1
- data/LICENSE +1 -1
- data/VERSION +1 -1
- data/bin/archetype +6 -0
- data/stylesheets/archetype/util/_styles.scss +12 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 058c5fdcbd3d43e3cc2735abc2957391cc96e2c3
|
|
4
|
+
data.tar.gz: 7189fefda56c56cfeac9585dd15bcb23a8650bd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b1938af856735dbb720e29c76bd4a26070d16649b930dea0fa490b299c126a12880c232e8569cfc005219d075abc9d1eb9d5d3ac653adfc97972ebc6ed2df50
|
|
7
|
+
data.tar.gz: 7ae8ed526d4bff1c47b92cc343c1b7bc6a2743f5100c652eb85d25ba97eaad47139ecc1783e1e830c8aaea6642290ae83dc55342a93b6a7f0c4a21ddc5d74ebb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.0.0.alpha.
|
|
3
|
+
## 1.0.0.alpha.2 (3/24/2014)
|
|
4
|
+
|
|
5
|
+
### Resolved Issues:
|
|
6
|
+
|
|
7
|
+
- fixed broken gems
|
|
8
|
+
- fix the `to-styles` to correctly apply overrides passed in via a content block when using smart content
|
|
9
|
+
|
|
10
|
+
## 1.0.0.alpha.1 (3/24/2014)
|
|
4
11
|
|
|
5
12
|
### Resolved Issues:
|
|
6
13
|
|
data/LICENSE
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.0.alpha.
|
|
1
|
+
1.0.0.alpha.2
|
data/bin/archetype
ADDED
|
@@ -272,7 +272,18 @@ $a-blackhole: require-archetype-modules(archetype/util);
|
|
|
272
272
|
@if $message { /* #{$message} */ }
|
|
273
273
|
|
|
274
274
|
// any original block content passed in...
|
|
275
|
-
|
|
275
|
+
// if we're using smart content...
|
|
276
|
+
@if $CONFIG_USE_SMART_CONTENT and not $here {
|
|
277
|
+
// intentionally break out of the context
|
|
278
|
+
& {
|
|
279
|
+
@content;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
// otherwise...
|
|
283
|
+
@else {
|
|
284
|
+
// just put it here
|
|
285
|
+
@content;
|
|
286
|
+
}
|
|
276
287
|
}
|
|
277
288
|
}
|
|
278
289
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: archetype
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.alpha.
|
|
4
|
+
version: 1.0.0.alpha.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugene ONeill
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-03-
|
|
12
|
+
date: 2014-03-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: compass
|
|
@@ -58,7 +58,8 @@ description: "\n Archetype is a Compass/Sass based framework for authoring co
|
|
|
58
58
|
provides allows your designers and developers to discuss UI\n compositions using
|
|
59
59
|
the same vocabulary.\n "
|
|
60
60
|
email: oneill.eugene@gmail.com
|
|
61
|
-
executables:
|
|
61
|
+
executables:
|
|
62
|
+
- archetype
|
|
62
63
|
extensions: []
|
|
63
64
|
extra_rdoc_files: []
|
|
64
65
|
files:
|
|
@@ -66,6 +67,7 @@ files:
|
|
|
66
67
|
- LICENSE
|
|
67
68
|
- README.md
|
|
68
69
|
- VERSION
|
|
70
|
+
- bin/archetype
|
|
69
71
|
- lib/README.rdoc
|
|
70
72
|
- lib/archetype.rb
|
|
71
73
|
- lib/archetype/actions/help.rb
|
|
@@ -218,4 +220,3 @@ signing_key:
|
|
|
218
220
|
specification_version: 4
|
|
219
221
|
summary: A CSS UI Component Authoring Framework
|
|
220
222
|
test_files: []
|
|
221
|
-
has_rdoc:
|