pith 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/pith/project.rb +1 -1
- data/lib/pith/version.rb +1 -1
- data/sample/_out/index.html +15 -0
- data/sample/_out/stylesheets/app.css +38 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc75c2672b318b257aa77d079a286d7de9e5e76d
|
4
|
+
data.tar.gz: 5073b92d53bb68e29d90ec53d917e4cfbcab0635
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56619d4ddb1e243ec4249b9b5f62394d78c2bb12d5dbc29909ef5edf46207b0891dfa5cb43291e9bda663df1a8670e321ae1e8b9f254e43283bacd6e509ab310
|
7
|
+
data.tar.gz: 463dff7410f11b2e4bed4bae6030603eb1de715addba4f402a4d7d809da13b60082eea698380a359846aa89416ab220ebbdf48e978d21d2027042cf59f745f9e
|
data/lib/pith/project.rb
CHANGED
data/lib/pith/version.rb
CHANGED
@@ -0,0 +1,15 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<link href='stylesheets/app.css' rel='stylesheet' type='text/css'>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<ol class='tabs'>
|
8
|
+
<li><a href="index.html">Introduction</a></li>
|
9
|
+
</ol>
|
10
|
+
<div class='box'>
|
11
|
+
<p>This is my site. Do you like it?</p>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
</body>
|
15
|
+
</html>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
.sidebar {
|
2
|
+
width: 19%;
|
3
|
+
float: right; }
|
4
|
+
|
5
|
+
.main {
|
6
|
+
width: 79%; }
|
7
|
+
|
8
|
+
.box {
|
9
|
+
-moz-border-radius: 0.5em;
|
10
|
+
-webkit-border-radius: 0.5em;
|
11
|
+
border: 2px solid grey;
|
12
|
+
padding: 0.5em; }
|
13
|
+
.box .heading {
|
14
|
+
font-size: 120%;
|
15
|
+
border-bottom: 1px solid #aaa;
|
16
|
+
font-weight: bold;
|
17
|
+
margin-bottom: 0.5em; }
|
18
|
+
|
19
|
+
ol.tabs {
|
20
|
+
position: relative;
|
21
|
+
padding: 0;
|
22
|
+
margin: 0 0 -2px 1em;
|
23
|
+
list-style-type: none; }
|
24
|
+
ol.tabs li {
|
25
|
+
display: inline-block;
|
26
|
+
border: 2px solid grey;
|
27
|
+
-moz-border-radius-topleft: 0.5em;
|
28
|
+
-webkit-border-top-left-radius: 0.5em;
|
29
|
+
-moz-border-radius-topright: 0.5em;
|
30
|
+
-webkit-border-top-right-radius: 0.5em;
|
31
|
+
background: #ccc;
|
32
|
+
padding: 0.5em; }
|
33
|
+
ol.tabs li.current {
|
34
|
+
border-bottom: 2px solid white;
|
35
|
+
background: white; }
|
36
|
+
ol.tabs li a {
|
37
|
+
color: inherit;
|
38
|
+
text-decoration: none; }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pith
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Williams
|
@@ -148,6 +148,8 @@ files:
|
|
148
148
|
- lib/pith/version.rb
|
149
149
|
- lib/pith/watcher.rb
|
150
150
|
- sample/_layouts/standard.haml
|
151
|
+
- sample/_out/index.html
|
152
|
+
- sample/_out/stylesheets/app.css
|
151
153
|
- sample/index.html.haml
|
152
154
|
- sample/stylesheets/app.css.sass
|
153
155
|
- spec/pith/config_spec.rb
|