toppings 0.0.7 → 0.0.8
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/config/default.json +30 -0
- data/lib/toppings/version.rb +1 -1
- data/toppings.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3f7a4fb133bfc1e0daf330640c012f8906dfb3f
|
|
4
|
+
data.tar.gz: 1ef54690bd2ad07a3abb1b92257739ade3560360
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 892ff840033dd63b03f0bb63e4fb812df717466861d0b3d28bd159145b3f94339216c6301cd1a46533e335986e98da1e00bab1d28b79797592d631813fc9b257
|
|
7
|
+
data.tar.gz: c8b77ccf93bf0c8260106f7727820b101f4c0fffedbef5b9c572a144f5bcd0af01ec70f7f1d7cfc373eb31b196e7f7322dcc68f0b332d6a1b6c240dee182d5ca
|
data/config/default.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"required_vendors": [
|
|
3
|
+
"toppings/normalize",
|
|
4
|
+
"toppings/modular_scale",
|
|
5
|
+
"toppings/singularity"
|
|
6
|
+
],
|
|
7
|
+
|
|
8
|
+
"sass": {
|
|
9
|
+
// whether to use sass original style or scss syntax for generated files
|
|
10
|
+
"dialect": "sass",
|
|
11
|
+
|
|
12
|
+
// dialect of the source templates
|
|
13
|
+
"template_dialect": "sass",
|
|
14
|
+
|
|
15
|
+
// decides which libraries to use to the framework imports
|
|
16
|
+
"framework": {
|
|
17
|
+
"core": "compass",
|
|
18
|
+
"reset": "normalize",
|
|
19
|
+
"css3": "compass/css3"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
// the name of the given root file where base files will be appended
|
|
24
|
+
"stylesheets": {
|
|
25
|
+
"root_folder": "sass",
|
|
26
|
+
"compile_target": "stylesheets",
|
|
27
|
+
"root_file": "toppings",
|
|
28
|
+
"relative_index_file": "index"
|
|
29
|
+
}
|
|
30
|
+
}
|
data/lib/toppings/version.rb
CHANGED
data/toppings.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: toppings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Falk Hoppe, Roman Stranghöner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -189,6 +189,7 @@ files:
|
|
|
189
189
|
- LICENSE.txt
|
|
190
190
|
- README.md
|
|
191
191
|
- toppings.gemspec
|
|
192
|
+
- config/default.json
|
|
192
193
|
- bin/topping
|
|
193
194
|
- lib/toppings/cli.rb
|
|
194
195
|
- lib/toppings/config.rb
|