archetype-base-hybrid 1.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +16 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/CHANGELOG.md +0 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/README.md +0 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/VERSION +0 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/lib/archetype-base-hybrid/version.rb +3 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/lib/archetype-base-hybrid.rb +9 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/stylesheets/archetype/base/_hybrid.scss +25 -0
- data/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/templates/project/manifest.rb +4 -0
- metadata +68 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 02c9e96e4f22c2ced20143f5b4aa2605f0003eb8
|
4
|
+
data.tar.gz: 94a73155913fdb413bbf7dff0cc6a7833d7eeb63
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 03405c23c291c8dc9dfbba68d43e3165a0100fe6f7f0df2881269bfbf3f91ad84436cd9bf1098820ff095f28139daf26321ad80a987eba88597dfca32930e2b2
|
7
|
+
data.tar.gz: 0d443542f78bec1551a7c538d7bcb3e232841ebb8fe44fd2b94ca92a1f25398f6a820797d3eb4338887420102019105c24d08575484f4e5c5c75ec58fd0b13a5
|
data/LICENSE
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
Archetype
|
2
|
+
Copyright (c) 2013 LinkedIn Corp. All rights reserved.
|
3
|
+
Apache Software License 2.0
|
4
|
+
|
5
|
+
|
6
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
you may not use this file except in compliance with the License.
|
8
|
+
You may obtain a copy of the License at
|
9
|
+
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
See the License for the specific language governing permissions and
|
16
|
+
limitations under the License.
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// @category base
|
2
|
+
@import "archetype/base/normalize";
|
3
|
+
@import "archetype/base/reset";
|
4
|
+
@import "archetype/base/h5bp";
|
5
|
+
|
6
|
+
// hybrid method for reset using both a global reset as well as some normalize features
|
7
|
+
// @mixin base-hybrid
|
8
|
+
// @param $exclude {List} the list of features to exclude from the reset
|
9
|
+
@mixin base-hybrid($exclude: ()) {
|
10
|
+
$exclude: -archetype-list($exclude);
|
11
|
+
// start with a reset
|
12
|
+
@if not index($exclude, reset) {
|
13
|
+
@include base-reset($exclude: $exclude);
|
14
|
+
}
|
15
|
+
|
16
|
+
// add in some good stuff from normalize
|
17
|
+
@if not index($exclude, normalize) {
|
18
|
+
@include base-normalize($exclude: join(normalize-html5 normalize-page normalize-typography normalize-quotes normalize-lists normalize-embeds normalize-figures normalize-tables normalize-ime, $exclude));
|
19
|
+
}
|
20
|
+
|
21
|
+
// and some boilerplate
|
22
|
+
@if not index($exclude, h5bp) {
|
23
|
+
@include base-h5bp($exclude: $exclude);
|
24
|
+
}
|
25
|
+
}
|
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: archetype-base-hybrid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.alpha.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eugene ONeill
|
8
|
+
- LinkedIn
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-03-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: archetype
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.0.0.alpha.1
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.0.0.alpha.1
|
28
|
+
description: An Archetype extension that provides hooks into Normalize.css, HTML5
|
29
|
+
Boilerplate, and a traditional Eric Meyer's based CSS reset
|
30
|
+
email: oneill.eugene@gmail.com
|
31
|
+
executables: []
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/CHANGELOG.md"
|
36
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/README.md"
|
37
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/VERSION"
|
38
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/lib/archetype-base-hybrid.rb"
|
39
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/lib/archetype-base-hybrid/version.rb"
|
40
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/stylesheets/archetype/base/_hybrid.scss"
|
41
|
+
- "/Users/eoneill/workspace/archetype/extensions/archetype-base-hybrid/templates/project/manifest.rb"
|
42
|
+
- LICENSE
|
43
|
+
homepage: http://www.archetypecss.com/extensions/archetype-base-hybrid
|
44
|
+
licenses:
|
45
|
+
- Apache License (2.0)
|
46
|
+
metadata: {}
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 1.3.1
|
61
|
+
requirements: []
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 2.2.2
|
64
|
+
signing_key:
|
65
|
+
specification_version: 4
|
66
|
+
summary: Archetype Hybrid CSS Reset Extension
|
67
|
+
test_files: []
|
68
|
+
has_rdoc:
|