staticise 0.5.9 → 0.5.10
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +4 -0
- data/VERSION +1 -1
- data/app/css/{test.less → test-1.less} +0 -0
- data/app/layouts/app.html +6 -0
- data/config.yml +1 -0
- data/lib/staticise/renderer.rb +16 -2
- data/lib/staticise.rb +1 -0
- data/public/cat/index.html +4 -56
- data/public/css/test-1.css +9 -0
- data/public/dog/index.html +4 -56
- data/public/help.html +7 -56
- data/public/index.html +14 -64
- data/public/js/app.js +1 -0
- data/public/js/main.js +1 -0
- data/public/js/plugins/a.js +1 -0
- data/public/lion/index.html +4 -56
- data/public/t.html +4 -56
- data/staticise.gemspec +6 -3
- metadata +25 -67
data/Gemfile
CHANGED
@@ -1,11 +1,15 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
+
|
3
4
|
gem 'haml'
|
4
5
|
gem 'sass'
|
5
6
|
gem 'coffee-script'
|
6
7
|
gem 'commander'
|
7
8
|
gem 'listen'
|
8
9
|
|
10
|
+
require 'rbconfig'
|
11
|
+
gem 'wdm', '>= 0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
|
12
|
+
|
9
13
|
# Add dependencies to develop your gem here.
|
10
14
|
# Include everything needed to run rake, tests, features, etc.
|
11
15
|
group :development do
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.10
|
File without changes
|
data/config.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
layout: app.haml
|
data/lib/staticise/renderer.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'fileutils'
|
2
|
+
require 'yaml'
|
2
3
|
|
3
4
|
module Staticise
|
4
5
|
|
@@ -90,7 +91,7 @@ module Staticise
|
|
90
91
|
|
91
92
|
def read_template(file)
|
92
93
|
if File.extname(file).eql?(".html")
|
93
|
-
s = [":
|
94
|
+
s = [":erb\n"]
|
94
95
|
s << File.readlines(file).map {|l| " #{ l }"}
|
95
96
|
res = s.flatten.join
|
96
97
|
else
|
@@ -101,8 +102,21 @@ module Staticise
|
|
101
102
|
end
|
102
103
|
|
103
104
|
def extract(file)
|
104
|
-
@layout = File.join(APP_ROOT, "app", "layouts", "app.haml")
|
105
105
|
@file = file
|
106
|
+
@layout = File.join(APP_ROOT, "app", "layouts", get_layout(file))
|
107
|
+
end
|
108
|
+
|
109
|
+
def get_layout(file)
|
110
|
+
config = File.join(File.dirname(file), "config.yml")
|
111
|
+
unless File.exist?(config)
|
112
|
+
config = File.join(APP_ROOT, "config.yml")
|
113
|
+
unless File.exist?(config)
|
114
|
+
config = File.join(LIB_ROOT, "config.yml")
|
115
|
+
end
|
116
|
+
end
|
117
|
+
data = YAML.load_file(config)
|
118
|
+
|
119
|
+
data["layout"] || "app.haml"
|
106
120
|
end
|
107
121
|
|
108
122
|
end
|
data/lib/staticise.rb
CHANGED
data/public/cat/index.html
CHANGED
@@ -1,59 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
<
|
22
|
-
|
23
|
-
<div class='container'>
|
24
|
-
<a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'>
|
25
|
-
<span class='icon-bar'></span>
|
26
|
-
<span class='icon-bar'></span>
|
27
|
-
<span class='icon-bar'></span>
|
28
|
-
</a>
|
29
|
-
<a class='brand' href='/' title='Im sick of damn excel sheet'>isodes</a>
|
30
|
-
<div class='container nav-collapse'>
|
31
|
-
<ul class='nav'>
|
32
|
-
<li></li>
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
<h1>Cat Page</h1>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<footer>
|
49
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
50
|
-
</footer>
|
51
|
-
</div>
|
52
|
-
<!--
|
53
|
-
Javascripts
|
54
|
-
==================================================
|
55
|
-
-->
|
56
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
57
|
-
|
4
|
+
<h1>Cat Page</h1>
|
5
|
+
|
58
6
|
</body>
|
59
7
|
</html>
|
data/public/dog/index.html
CHANGED
@@ -1,59 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
<
|
22
|
-
|
23
|
-
<div class='container'>
|
24
|
-
<a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'>
|
25
|
-
<span class='icon-bar'></span>
|
26
|
-
<span class='icon-bar'></span>
|
27
|
-
<span class='icon-bar'></span>
|
28
|
-
</a>
|
29
|
-
<a class='brand' href='/' title='Im sick of damn excel sheet'>isodes</a>
|
30
|
-
<div class='container nav-collapse'>
|
31
|
-
<ul class='nav'>
|
32
|
-
<li></li>
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
<h1>Dog Page</h1>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<footer>
|
49
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
50
|
-
</footer>
|
51
|
-
</div>
|
52
|
-
<!--
|
53
|
-
Javascripts
|
54
|
-
==================================================
|
55
|
-
-->
|
56
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
57
|
-
|
4
|
+
<h1>Dog Page</h1>
|
5
|
+
|
58
6
|
</body>
|
59
7
|
</html>
|
data/public/help.html
CHANGED
@@ -1,59 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
<
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<span class='icon-bar'></span>
|
27
|
-
<span class='icon-bar'></span>
|
28
|
-
</a>
|
29
|
-
<a class='brand' href='/' title='Im sick of damn excel sheet'>isodes</a>
|
30
|
-
<div class='container nav-collapse'>
|
31
|
-
<ul class='nav'>
|
32
|
-
<li></li>
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
<h1>
 I am a help page
</h1>
<p>Hello world . com</p>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<footer>
|
49
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
50
|
-
</footer>
|
51
|
-
</div>
|
52
|
-
<!--
|
53
|
-
Javascripts
|
54
|
-
==================================================
|
55
|
-
-->
|
56
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
57
|
-
|
4
|
+
<h1>
|
5
|
+
I am a help page
|
6
|
+
</h1>
|
7
|
+
<p>Hello world . com</p>
|
8
|
+
|
58
9
|
</body>
|
59
10
|
</html>
|
data/public/index.html
CHANGED
@@ -1,67 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
<
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
<h1>Hello World</h1>
|
46
|
-
<p>
|
47
|
-
Hello world, hello world...
|
48
|
-
</p>
|
49
|
-
<h5>Footer with haml partial</h5>
|
50
|
-
<h1>this is a footer</h1>
|
51
|
-
<p>tst</p>
|
52
|
-
<h5>Footer with Html partial</h5>
|
53
|
-
<h1>
 I am a Footer with pure html
</h1>
|
54
|
-
</div>
|
55
|
-
</div>
|
56
|
-
<footer>
|
57
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
58
|
-
</footer>
|
59
|
-
</div>
|
60
|
-
<!--
|
61
|
-
Javascripts
|
62
|
-
==================================================
|
63
|
-
-->
|
64
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
65
|
-
|
4
|
+
<h1>Hello World</h1>
|
5
|
+
<p>
|
6
|
+
Hello world, hello world...
|
7
|
+
</p>
|
8
|
+
<h5>Footer with haml partial</h5>
|
9
|
+
<h1>this is a footer</h1>
|
10
|
+
<p>tst</p>
|
11
|
+
<h5>Footer with Html partial</h5>
|
12
|
+
<h1>
|
13
|
+
I am a Footer with pure html
|
14
|
+
</h1>
|
15
|
+
|
66
16
|
</body>
|
67
17
|
</html>
|
data/public/js/app.js
CHANGED
data/public/js/main.js
CHANGED
data/public/js/plugins/a.js
CHANGED
data/public/lion/index.html
CHANGED
@@ -1,59 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
<
|
22
|
-
|
23
|
-
<div class='container'>
|
24
|
-
<a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'>
|
25
|
-
<span class='icon-bar'></span>
|
26
|
-
<span class='icon-bar'></span>
|
27
|
-
<span class='icon-bar'></span>
|
28
|
-
</a>
|
29
|
-
<a class='brand' href='/' title='Im sick of damn excel sheet'>isodes</a>
|
30
|
-
<div class='container nav-collapse'>
|
31
|
-
<ul class='nav'>
|
32
|
-
<li></li>
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
<h1>Lion Page</h1>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<footer>
|
49
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
50
|
-
</footer>
|
51
|
-
</div>
|
52
|
-
<!--
|
53
|
-
Javascripts
|
54
|
-
==================================================
|
55
|
-
-->
|
56
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
57
|
-
|
4
|
+
<h1>Lion Page</h1>
|
5
|
+
|
58
6
|
</body>
|
59
7
|
</html>
|
data/public/t.html
CHANGED
@@ -1,59 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
<meta content='IE=Edge,chrome=1' http-equiv='X-UA-Compatible'>
|
6
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
|
7
|
-
<title></title>
|
8
|
-
|
9
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
10
|
-
<!--[if lt IE 9]>
|
11
|
-
|
12
|
-
<![endif]-->
|
13
|
-
|
14
|
-
<link href='images/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
|
15
|
-
<link href='images/apple-touch-icon-114x114.png' rel='apple-touch-icon-precomposed' sizes='114x114'>
|
16
|
-
<link href='images/apple-touch-icon-72x72.png' rel='apple-touch-icon-precomposed' sizes='72x72'>
|
17
|
-
<link href='images/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
|
18
|
-
<link href='favicon.ico' rel='shortcut icon'>
|
19
|
-
</head>
|
1
|
+
<html>
|
2
|
+
|
20
3
|
<body>
|
21
|
-
|
22
|
-
|
23
|
-
<div class='container'>
|
24
|
-
<a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'>
|
25
|
-
<span class='icon-bar'></span>
|
26
|
-
<span class='icon-bar'></span>
|
27
|
-
<span class='icon-bar'></span>
|
28
|
-
</a>
|
29
|
-
<a class='brand' href='/' title='Im sick of damn excel sheet'>isodes</a>
|
30
|
-
<div class='container nav-collapse'>
|
31
|
-
<ul class='nav'>
|
32
|
-
<li></li>
|
33
|
-
<li></li>
|
34
|
-
<li></li>
|
35
|
-
<li></li>
|
36
|
-
</ul>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
</div>
|
40
|
-
</div>
|
41
|
-
<div class='container content-panel'>
|
42
|
-
<div class='row'>
|
43
|
-
<div class='span12'>
|
44
|
-
|
45
|
-
melvin
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<footer>
|
49
|
-
<p>© melvinsembrano@gmail.com 2013</p>
|
50
|
-
</footer>
|
51
|
-
</div>
|
52
|
-
<!--
|
53
|
-
Javascripts
|
54
|
-
==================================================
|
55
|
-
-->
|
56
|
-
<!-- Placed at the end of the document so the pages load faster -->
|
57
|
-
|
4
|
+
melvin
|
5
|
+
|
58
6
|
</body>
|
59
7
|
</html>
|
data/staticise.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "staticise"
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.10"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Melvin Sembrano"]
|
@@ -27,11 +27,12 @@ Gem::Specification.new do |s|
|
|
27
27
|
"Rakefile",
|
28
28
|
"VERSION",
|
29
29
|
"app/css/st.sass",
|
30
|
-
"app/css/test.less",
|
30
|
+
"app/css/test-1.less",
|
31
31
|
"app/css/test.sass",
|
32
32
|
"app/js/main.coffee",
|
33
33
|
"app/js/plugins/a.coffee",
|
34
34
|
"app/layouts/app.haml",
|
35
|
+
"app/layouts/app.html",
|
35
36
|
"app/pages/_footer.haml",
|
36
37
|
"app/pages/_footer.html",
|
37
38
|
"app/pages/cat/index.haml",
|
@@ -41,10 +42,12 @@ Gem::Specification.new do |s|
|
|
41
42
|
"app/pages/lion/index.haml",
|
42
43
|
"app/pages/t.haml",
|
43
44
|
"bin/staticise",
|
45
|
+
"config.yml",
|
44
46
|
"lib/staticise.rb",
|
45
47
|
"lib/staticise/renderer.rb",
|
46
48
|
"lib/staticise/watcher.rb",
|
47
49
|
"public/cat/index.html",
|
50
|
+
"public/css/test-1.css",
|
48
51
|
"public/css/test.css",
|
49
52
|
"public/dog/index.html",
|
50
53
|
"public/help.html",
|
@@ -61,7 +64,7 @@ Gem::Specification.new do |s|
|
|
61
64
|
s.homepage = "http://github.com/melvinsembrano/staticise"
|
62
65
|
s.licenses = ["MIT"]
|
63
66
|
s.require_paths = ["lib"]
|
64
|
-
s.rubygems_version = "1.8.
|
67
|
+
s.rubygems_version = "1.8.10"
|
65
68
|
s.summary = "Static site generator using Haml and Coffescript"
|
66
69
|
|
67
70
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: staticise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.10
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2013-05-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: haml
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirement: &70173478358240 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,15 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ! '>='
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '0'
|
24
|
+
version_requirements: *70173478358240
|
30
25
|
- !ruby/object:Gem::Dependency
|
31
26
|
name: sass
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
27
|
+
requirement: &70173478357740 !ruby/object:Gem::Requirement
|
33
28
|
none: false
|
34
29
|
requirements:
|
35
30
|
- - ! '>='
|
@@ -37,15 +32,10 @@ dependencies:
|
|
37
32
|
version: '0'
|
38
33
|
type: :runtime
|
39
34
|
prerelease: false
|
40
|
-
version_requirements:
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: '0'
|
35
|
+
version_requirements: *70173478357740
|
46
36
|
- !ruby/object:Gem::Dependency
|
47
37
|
name: coffee-script
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
38
|
+
requirement: &70173478357260 !ruby/object:Gem::Requirement
|
49
39
|
none: false
|
50
40
|
requirements:
|
51
41
|
- - ! '>='
|
@@ -53,15 +43,10 @@ dependencies:
|
|
53
43
|
version: '0'
|
54
44
|
type: :runtime
|
55
45
|
prerelease: false
|
56
|
-
version_requirements:
|
57
|
-
none: false
|
58
|
-
requirements:
|
59
|
-
- - ! '>='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
46
|
+
version_requirements: *70173478357260
|
62
47
|
- !ruby/object:Gem::Dependency
|
63
48
|
name: commander
|
64
|
-
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirement: &70173478356760 !ruby/object:Gem::Requirement
|
65
50
|
none: false
|
66
51
|
requirements:
|
67
52
|
- - ! '>='
|
@@ -69,15 +54,10 @@ dependencies:
|
|
69
54
|
version: '0'
|
70
55
|
type: :runtime
|
71
56
|
prerelease: false
|
72
|
-
version_requirements:
|
73
|
-
none: false
|
74
|
-
requirements:
|
75
|
-
- - ! '>='
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '0'
|
57
|
+
version_requirements: *70173478356760
|
78
58
|
- !ruby/object:Gem::Dependency
|
79
59
|
name: listen
|
80
|
-
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirement: &70173478356260 !ruby/object:Gem::Requirement
|
81
61
|
none: false
|
82
62
|
requirements:
|
83
63
|
- - ! '>='
|
@@ -85,15 +65,10 @@ dependencies:
|
|
85
65
|
version: '0'
|
86
66
|
type: :runtime
|
87
67
|
prerelease: false
|
88
|
-
version_requirements:
|
89
|
-
none: false
|
90
|
-
requirements:
|
91
|
-
- - ! '>='
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: '0'
|
68
|
+
version_requirements: *70173478356260
|
94
69
|
- !ruby/object:Gem::Dependency
|
95
70
|
name: shoulda
|
96
|
-
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirement: &70173478355700 !ruby/object:Gem::Requirement
|
97
72
|
none: false
|
98
73
|
requirements:
|
99
74
|
- - ! '>='
|
@@ -101,15 +76,10 @@ dependencies:
|
|
101
76
|
version: '0'
|
102
77
|
type: :development
|
103
78
|
prerelease: false
|
104
|
-
version_requirements:
|
105
|
-
none: false
|
106
|
-
requirements:
|
107
|
-
- - ! '>='
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '0'
|
79
|
+
version_requirements: *70173478355700
|
110
80
|
- !ruby/object:Gem::Dependency
|
111
81
|
name: rdoc
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
82
|
+
requirement: &70173478355200 !ruby/object:Gem::Requirement
|
113
83
|
none: false
|
114
84
|
requirements:
|
115
85
|
- - ! '>='
|
@@ -117,15 +87,10 @@ dependencies:
|
|
117
87
|
version: '0'
|
118
88
|
type: :development
|
119
89
|
prerelease: false
|
120
|
-
version_requirements:
|
121
|
-
none: false
|
122
|
-
requirements:
|
123
|
-
- - ! '>='
|
124
|
-
- !ruby/object:Gem::Version
|
125
|
-
version: '0'
|
90
|
+
version_requirements: *70173478355200
|
126
91
|
- !ruby/object:Gem::Dependency
|
127
92
|
name: bundler
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
93
|
+
requirement: &70173478371040 !ruby/object:Gem::Requirement
|
129
94
|
none: false
|
130
95
|
requirements:
|
131
96
|
- - ! '>='
|
@@ -133,15 +98,10 @@ dependencies:
|
|
133
98
|
version: '0'
|
134
99
|
type: :development
|
135
100
|
prerelease: false
|
136
|
-
version_requirements:
|
137
|
-
none: false
|
138
|
-
requirements:
|
139
|
-
- - ! '>='
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version: '0'
|
101
|
+
version_requirements: *70173478371040
|
142
102
|
- !ruby/object:Gem::Dependency
|
143
103
|
name: jeweler
|
144
|
-
requirement: !ruby/object:Gem::Requirement
|
104
|
+
requirement: &70173478370520 !ruby/object:Gem::Requirement
|
145
105
|
none: false
|
146
106
|
requirements:
|
147
107
|
- - ! '>='
|
@@ -149,12 +109,7 @@ dependencies:
|
|
149
109
|
version: '0'
|
150
110
|
type: :development
|
151
111
|
prerelease: false
|
152
|
-
version_requirements:
|
153
|
-
none: false
|
154
|
-
requirements:
|
155
|
-
- - ! '>='
|
156
|
-
- !ruby/object:Gem::Version
|
157
|
-
version: '0'
|
112
|
+
version_requirements: *70173478370520
|
158
113
|
description: Static site generator using Haml and Coffescript
|
159
114
|
email: melvinsembrano@gmail.com
|
160
115
|
executables:
|
@@ -173,11 +128,12 @@ files:
|
|
173
128
|
- Rakefile
|
174
129
|
- VERSION
|
175
130
|
- app/css/st.sass
|
176
|
-
- app/css/test.less
|
131
|
+
- app/css/test-1.less
|
177
132
|
- app/css/test.sass
|
178
133
|
- app/js/main.coffee
|
179
134
|
- app/js/plugins/a.coffee
|
180
135
|
- app/layouts/app.haml
|
136
|
+
- app/layouts/app.html
|
181
137
|
- app/pages/_footer.haml
|
182
138
|
- app/pages/_footer.html
|
183
139
|
- app/pages/cat/index.haml
|
@@ -187,10 +143,12 @@ files:
|
|
187
143
|
- app/pages/lion/index.haml
|
188
144
|
- app/pages/t.haml
|
189
145
|
- bin/staticise
|
146
|
+
- config.yml
|
190
147
|
- lib/staticise.rb
|
191
148
|
- lib/staticise/renderer.rb
|
192
149
|
- lib/staticise/watcher.rb
|
193
150
|
- public/cat/index.html
|
151
|
+
- public/css/test-1.css
|
194
152
|
- public/css/test.css
|
195
153
|
- public/dog/index.html
|
196
154
|
- public/help.html
|
@@ -218,7 +176,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
218
176
|
version: '0'
|
219
177
|
segments:
|
220
178
|
- 0
|
221
|
-
hash:
|
179
|
+
hash: 4419099196193228984
|
222
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
223
181
|
none: false
|
224
182
|
requirements:
|
@@ -227,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
185
|
version: '0'
|
228
186
|
requirements: []
|
229
187
|
rubyforge_project:
|
230
|
-
rubygems_version: 1.8.
|
188
|
+
rubygems_version: 1.8.10
|
231
189
|
signing_key:
|
232
190
|
specification_version: 3
|
233
191
|
summary: Static site generator using Haml and Coffescript
|