archetype 1.0.0.alpha.1 → 1.0.0.alpha.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: c6a2fb81e863d967312ecbecbc7f3c5448b59c62
4
- data.tar.gz: 0b6e44d73cafd433970965a671a2fa0c43c405bc
3
+ metadata.gz: 058c5fdcbd3d43e3cc2735abc2957391cc96e2c3
4
+ data.tar.gz: 7189fefda56c56cfeac9585dd15bcb23a8650bd1
5
5
  SHA512:
6
- metadata.gz: fc1349d999e060d49b2e94e4bd8abfe527e9bd6fff4b3ecfcc7c29c24698cf651ceeece94496347a4a230764ad43d41e3eb4d8c02fb32e4f3d649e92a9ca4e19
7
- data.tar.gz: 16adc0073b1fec35365d4c55edd05dc677ef49959266675955a4c0f67bf469804f62214626223bbc74ce93c858952139d40be3c2541c2cc2b4b28af45a9767c8
6
+ metadata.gz: 8b1938af856735dbb720e29c76bd4a26070d16649b930dea0fa490b299c126a12880c232e8569cfc005219d075abc9d1eb9d5d3ac653adfc97972ebc6ed2df50
7
+ data.tar.gz: 7ae8ed526d4bff1c47b92cc343c1b7bc6a2743f5100c652eb85d25ba97eaad47139ecc1783e1e830c8aaea6642290ae83dc55342a93b6a7f0c4a21ddc5d74ebb
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 1.0.0.alpha.1 (unreleased)
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
@@ -1,5 +1,5 @@
1
1
  Archetype
2
- Copyright (c) 2013 LinkedIn Corp. All rights reserved.
2
+ Copyright (c) 2014 LinkedIn Corp. All rights reserved.
3
3
  Apache Software License 2.0
4
4
 
5
5
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0.alpha.1
1
+ 1.0.0.alpha.2
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib = File.expand_path("../../lib/", __FILE__)
4
+ $:.unshift lib unless $:.include?(lib)
5
+
6
+ require 'archetype/executor'
@@ -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
- @content;
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.1
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-24 00:00:00.000000000 Z
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: