pith 0.5.0 → 0.5.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d871b90920e2e14c3f174e171c276de29b9c090c
4
- data.tar.gz: aaf52a3fc9e117cd939d9790d47527ae096e8739
3
+ metadata.gz: fc75c2672b318b257aa77d079a286d7de9e5e76d
4
+ data.tar.gz: 5073b92d53bb68e29d90ec53d917e4cfbcab0635
5
5
  SHA512:
6
- metadata.gz: '0679d8de13b5441f57b275a5b91b167bc20fa06abddfaa5cefd1bcedb2926764b60dcd03add3175b315b749c0c6017f2fd7eff053f1cf0e5dfc92a6f0e2818a9'
7
- data.tar.gz: b3e6e3e839e1e5cca899654aa841b57b454c91dc6b8b5642fd0d00bb7c3cb9f10c1d4ca5ccebbcf5e76b15eee1aa209619a073b7e1577c2d2fd4344f4da5f169
6
+ metadata.gz: 56619d4ddb1e243ec4249b9b5f62394d78c2bb12d5dbc29909ef5edf46207b0891dfa5cb43291e9bda663df1a8670e321ae1e8b9f254e43283bacd6e509ab310
7
+ data.tar.gz: 463dff7410f11b2e4bed4bae6030603eb1de715addba4f402a4d7d809da13b60082eea698380a359846aa89416ab220ebbdf48e978d21d2027042cf59f745f9e
@@ -91,7 +91,7 @@ module Pith
91
91
  def listen_for_changes
92
92
  Listen.to(input_dir.to_s) do
93
93
  sync
94
- end
94
+ end.start
95
95
  end
96
96
 
97
97
  # Public: check for errors.
@@ -1,3 +1,3 @@
1
1
  module Pith
2
- VERSION = "0.5.0".freeze
2
+ VERSION = "0.5.1".freeze
3
3
  end
@@ -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.0
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