docwu 0.0.6 → 0.0.7

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.
Files changed (63) hide show
  1. data/lib/docwu/post.rb +1 -1
  2. data/lib/docwu/utils.rb +6 -0
  3. data/lib/docwu/version.rb +1 -1
  4. data/lib/docwu/worker.rb +5 -27
  5. data/lib/docwu.rb +34 -5
  6. data/lib/template_files/Gemfile +3 -0
  7. data/lib/template_files/Gemfile.lock +28 -0
  8. data/lib/template_files/README.md +3 -0
  9. data/lib/template_files/_deploy/assets/images/shared/folder/README.txt +1 -0
  10. data/lib/template_files/_deploy/assets/images/shared/folder/text.png +0 -0
  11. data/lib/template_files/_deploy/assets/images/shared/folder/user.png +0 -0
  12. data/lib/template_files/_deploy/assets/images/shared/icons/li-1.gif +0 -0
  13. data/lib/template_files/_deploy/assets/images/shared/icons/li-2.gif +0 -0
  14. data/lib/template_files/_deploy/assets/images/shared/icons/li-3.gif +0 -0
  15. data/lib/template_files/_deploy/assets/javascripts/application.js +0 -0
  16. data/lib/template_files/_deploy/assets/javascripts/document_folder.js +0 -0
  17. data/lib/template_files/_deploy/assets/javascripts/document_post.js +0 -0
  18. data/lib/template_files/_deploy/assets/stylesheets/application.css +215 -0
  19. data/lib/template_files/_deploy/assets/stylesheets/document_folder.css +12 -0
  20. data/lib/template_files/_deploy/assets/stylesheets/document_post.css +103 -0
  21. data/lib/template_files/_deploy/assets/stylesheets/index.css +12 -0
  22. data/lib/template_files/_deploy/document/help/README.html +124 -0
  23. data/lib/template_files/_deploy/document/help/index.html +71 -0
  24. data/lib/template_files/_deploy/document/juices/README.html +67 -0
  25. data/lib/template_files/_deploy/document/juices/index.html +71 -0
  26. data/lib/template_files/_deploy/document/learning/README.html +108 -0
  27. data/lib/template_files/_deploy/document/learning/index.html +166 -0
  28. data/lib/template_files/_deploy/document/learning/markdown/index.html +73 -0
  29. data/lib/template_files/_deploy/document/learning/markdown/lesson_1.html +184 -0
  30. data/lib/template_files/_deploy/document/learning/ruby/1.html +102 -0
  31. data/lib/template_files/_deploy/document/learning/ruby/index.html +73 -0
  32. data/lib/template_files/_deploy/document/learning//345/210/235/345/255/246/350/200/205/346/225/231/347/250/213/index.html +73 -0
  33. data/lib/template_files/_deploy/document/learning//345/210/235/345/255/246/350/200/205/346/225/231/347/250/213/markdown-basic.html +140 -0
  34. data/lib/template_files/_deploy/document/projects/hui800/index.html +63 -0
  35. data/lib/template_files/_deploy/document/projects/passport800/index.html +63 -0
  36. data/lib/template_files/_deploy/document/projects/tuan800/index.html +63 -0
  37. data/lib/template_files/_deploy/document/projects/zhe800/index.html +63 -0
  38. data/lib/template_files/_deploy/index.html +241 -0
  39. data/lib/template_files/assets/images/shared/folder/README.txt +1 -0
  40. data/lib/template_files/assets/images/shared/folder/text.png +0 -0
  41. data/lib/template_files/assets/images/shared/folder/user.png +0 -0
  42. data/lib/template_files/assets/images/shared/icons/li-1.gif +0 -0
  43. data/lib/template_files/assets/images/shared/icons/li-2.gif +0 -0
  44. data/lib/template_files/assets/images/shared/icons/li-3.gif +0 -0
  45. data/lib/template_files/assets/javascripts/application.js +0 -0
  46. data/lib/template_files/assets/javascripts/document_folder.js +0 -0
  47. data/lib/template_files/assets/javascripts/document_post.js +0 -0
  48. data/lib/template_files/assets/stylesheets/application.css +215 -0
  49. data/lib/template_files/assets/stylesheets/document_folder.css +12 -0
  50. data/lib/template_files/assets/stylesheets/document_post.css +103 -0
  51. data/lib/template_files/assets/stylesheets/index.css +12 -0
  52. data/lib/template_files/config.yml +18 -0
  53. data/lib/template_files/doc/help/README.md +34 -0
  54. data/lib/template_files/layouts/folder.mustache +67 -0
  55. data/lib/template_files/layouts/index.mustache +29 -0
  56. data/lib/template_files/layouts/partials/folder/post_outline.mustache +6 -0
  57. data/lib/template_files/layouts/partials/folder/posterity.mustache +49 -0
  58. data/lib/template_files/layouts/partials/shared/copyright.mustache +6 -0
  59. data/lib/template_files/layouts/partials/shared/header.mustache +10 -0
  60. data/lib/template_files/layouts/post.mustache +97 -0
  61. data/lib/template_files/static/_static.html +0 -0
  62. data/lib/template_files/topics/index.markdown +6 -0
  63. metadata +61 -4
@@ -0,0 +1,103 @@
1
+
2
+ #container .information {
3
+ text-align: center;
4
+ color: #666;
5
+ }
6
+
7
+ #container .information .bar {
8
+ padding: 5px;
9
+ }
10
+
11
+ #container .information .bar-tags {
12
+ }
13
+
14
+ #container .outline {
15
+ background: none repeat scroll 0 0 #F5FCEE;
16
+ border: 1px solid #DCDDDD;
17
+ color: #706A6A;
18
+ font-size: 13px;
19
+ line-height: 24px;
20
+ margin: 8px auto 0;
21
+ padding: 8px 16px;
22
+ text-align: left;
23
+ }
24
+
25
+ #container .container-block {
26
+ background: none repeat scroll 0 0 #EEEEEE;
27
+ }
28
+
29
+ #container .content {
30
+ margin: 0;
31
+ border-radius: 3px 3px 3px 3px;
32
+ padding: 3px;
33
+ }
34
+
35
+ #container .content .content-inner {
36
+ background-color: #FFFFFF;
37
+ border: 1px solid #CACACA;
38
+ padding: 10px;
39
+ }
40
+
41
+ #container .content .content-inner > p {
42
+ text-indent: 2em;
43
+ }
44
+
45
+ .content-workmark > *:first-child {
46
+ margin-top: 0 !important;
47
+ }
48
+
49
+ .content-workmark h1,
50
+ .content-workmark h2,
51
+ .content-workmark h3,
52
+ .content-workmark h4,
53
+ .content-workmark h5,
54
+ .content-workmark h6
55
+ {
56
+ cursor: text;
57
+ font-weight: bold;
58
+ line-height: 1.7;
59
+ margin: 1em 0 15px;
60
+ padding: 0;
61
+ position: relative;
62
+ }
63
+
64
+ .content-workmark h1 {
65
+ border-bottom: 2px solid #DDDDDD;
66
+ font-size: 2.5em;
67
+ }
68
+
69
+ .content-workmark h2 {
70
+ border-bottom: 1px solid #EEEEEE;
71
+ font-size: 1.6em;
72
+ margin-left: 5px;
73
+ }
74
+
75
+ .content-workmark h3 {
76
+ margin-left: 8px;
77
+ }
78
+
79
+ .content-workmark h4 {
80
+ margin-left: 10px;
81
+ }
82
+
83
+ .content-workmark h5 {
84
+ margin-left: 12px;
85
+ }
86
+
87
+ .content-workmark h6 {
88
+ margin-left: 14px;
89
+ }
90
+
91
+ #container .container-main {
92
+ float: left;
93
+ line-height: 1.5;
94
+ margin: 0 auto;
95
+ padding: 5px;
96
+ width: 795px;
97
+ }
98
+
99
+ #container .container-side {
100
+ float: right;
101
+ padding: 10px 8px 0 0;
102
+ width: 210px;
103
+ }
@@ -0,0 +1,12 @@
1
+ #container .information {
2
+ text-align: left;
3
+ }
4
+
5
+ #container .information h1 {
6
+ margin: 5px 0;
7
+ }
8
+
9
+ #container .information .bar {
10
+ padding: 5px;
11
+ }
12
+
@@ -0,0 +1,18 @@
1
+ docwu:
2
+ routes:
3
+ folders:
4
+ 'doc/help': "document/help"
5
+ topics:
6
+ index.markdown: "index.html"
7
+ layouts:
8
+ index: "index.mustache"
9
+ post: "post.mustache"
10
+ folder: "folder.mustache"
11
+ worker:
12
+ site:
13
+ name: "document Work Up"
14
+ copyright:
15
+ year: '2013'
16
+ name: "docwu"
17
+ content: "document work up and work up"
18
+
@@ -0,0 +1,34 @@
1
+ ---
2
+ title: 'document work up'
3
+ authors:
4
+ - happy
5
+ datetime: '2013-08-30 19:41'
6
+ ---
7
+
8
+ # document Work up
9
+
10
+ ## command
11
+
12
+ 1. update codes
13
+
14
+ 2. install GEMS:
15
+
16
+ ```
17
+ gem install docwu
18
+ bundle install
19
+ ```
20
+
21
+ 3. development
22
+
23
+ * bundle exec docwu server # server start, http://127.0.0.1:5656
24
+ * bundle exec docwu server -p 3300 # use 3300 port, http://127.0.0.1:3300
25
+
26
+ 4. generate
27
+
28
+ * bundle exec docwu generate
29
+
30
+ ## Deploy
31
+
32
+ * use nginx, apache .. web server,
33
+ root point to -> ruby_wiki/_deploy # !!!!
34
+
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
5
+ <title>文件夹: {{ reader.folder.name }} - {{ worker.site.name }}</title>
6
+ <script type='text/javascript' src='/assets/javascripts/application.js'></script>
7
+ <script type='text/javascript' src='/assets/javascripts/document_folder.js'></script>
8
+ <link href="/assets/stylesheets/application.css" media="all" rel="stylesheet" />
9
+ <link href="/assets/stylesheets/document_folder.css" media="all" rel="stylesheet" />
10
+ </head>
11
+ <body>
12
+ {{> partials/shared/header }}
13
+
14
+ <div id='container' class='wrapper clearfix'>
15
+
16
+ <!-- container-main begin -->
17
+ <div class='container-main clearfix'>
18
+ <div class='path'>
19
+ <a href='/index.html'>首页</a>
20
+
21
+ {{# reader.folders }}
22
+ &gt;
23
+ <a href='{{ url }}' title='{{title}}'>{{ name }}</a>
24
+ {{/ reader.folders }}
25
+
26
+ &gt;
27
+ {{# reader.folder }}
28
+ {{ name }}
29
+ {{/ reader.folder }}
30
+ </div>
31
+
32
+ <div class='information'>
33
+ {{# reader.folder }}
34
+ <h1>{{ name }}</h1>
35
+ {{/ reader.folder }}
36
+
37
+ <div class='bar'>
38
+ 共 <span class='high'>{{ reader.folder.folders_count }}</span> 个子文件夹
39
+ 共 <span class='high'>{{ reader.folder.posts_count }}</span> 篇文档
40
+ </div>
41
+ </div>
42
+
43
+ <div class='posterity'>
44
+ {{# reader.folder.folders_any? }}
45
+ <div class='folders'>
46
+ {{# reader.folder.folders }}
47
+ {{> partials/folder/posterity }}
48
+ {{/ reader.folder.folders }}
49
+ </div>
50
+ {{/ reader.folder.folders_any? }}
51
+
52
+ {{# reader.folder.posts_any? }}
53
+ <ul class='folders'>
54
+ {{# reader.folder.posts }}
55
+ {{> partials/folder/post_outline }}
56
+ {{/ reader.folder.posts }}
57
+ </ul>
58
+ {{/ reader.folder.posts_any? }}
59
+
60
+ </div>
61
+ </div> <!-- container-main end -->
62
+ </div>
63
+
64
+ {{> partials/shared/copyright }}
65
+
66
+ </body>
67
+ </html>
@@ -0,0 +1,29 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
5
+ <title>
6
+ {{# reader.topic }}{{ name }}{{/ reader.topic }} - {{ worker.site.name }}
7
+ </title>
8
+ <script type='text/javascript' src='/assets/javascripts/application.js'></script>
9
+ <link href="/assets/stylesheets/application.css" media="all" rel="stylesheet" />
10
+ <link href="/assets/stylesheets/index.css" media="all" rel="stylesheet" />
11
+ </head>
12
+ <body>
13
+ {{> partials/shared/header }}
14
+
15
+ <div id='container' class='wrapper clearfix'>
16
+ {{# reader.global.folders_any? }}
17
+ <div class='posterity'>
18
+ <div class='folders'>
19
+ {{# reader.global.folders }}
20
+ {{> partials/folder/posterity }}
21
+ {{/ reader.global.folders }}
22
+ </div>
23
+ </div>
24
+ {{/ reader.global.folders_any? }}
25
+ </div>
26
+
27
+ {{> partials/shared/copyright }}
28
+ </body>
29
+ </html>
@@ -0,0 +1,6 @@
1
+ <li class='post' title='{{ outline }}'>
2
+ <a href='{{ url }}' title='{{title}}'>{{ title }}</a>
3
+ <span class='introduction'>{{ introduction }}</span>
4
+ <a href='{{ url }}' title='{{title}}' class='read-link'>阅读 &gt;&gt;</a>
5
+ </li>
6
+
@@ -0,0 +1,49 @@
1
+ {{! 这里是每个folder的单位 }}
2
+ <div class='folder'>
3
+ <div class='self'>
4
+ <span class='info'>
5
+ 共 <span class='high'>{{ folders_count }}</span> 个子文件夹
6
+ 共 <span class='high'>{{ posts_count }}</span> 篇文档
7
+ {{# limit_posts_more? }}
8
+ <a href='{{ url }}' title='{{title}}'>阅读&gt;&gt;</a>
9
+ {{/ limit_posts_more? }}
10
+ </span>
11
+ <h3>
12
+ <a href='{{ url }}' title='{{title}}'>{{ name }}</a>
13
+ </h3>
14
+ </div>
15
+
16
+ <a href='{{ url }}' title='{{title}}'>
17
+ <img src='/assets/images/shared/folder/text.png' alt='' class='icon clearfix'/>
18
+ </a>
19
+
20
+ <div class='children'>
21
+ {{# folders_any? }}
22
+ <span class='sub-folders'>
23
+ {{# folders }}
24
+ <a href='{{ url }}' title='{{title}}'>
25
+ <img src='/assets/images/shared/folder/text.png' alt='' class='sub-icon'/>
26
+ {{ name }}
27
+ </a>
28
+ {{/ folders }}
29
+ </span>
30
+ {{/ folders_any? }}
31
+
32
+ {{# limit_posts_any? }}
33
+ <ul class='posts clearfix'>
34
+ {{# limit_posts }}
35
+ {{> partials/folder/post_outline }}
36
+ {{/ limit_posts }}
37
+ </ul>
38
+ {{/ limit_posts_any? }}
39
+
40
+ {{# limit_posts_more? }}
41
+ <div>
42
+ <a href='{{ url }}' title='{{title}}'>阅读更多&gt;&gt;</a>
43
+ </div>
44
+ {{/ limit_posts_more? }}
45
+
46
+ </div>
47
+
48
+ </div>
49
+
@@ -0,0 +1,6 @@
1
+ <div id='footer'>
2
+ <div class='wrapper'>
3
+ <p>&copy; {{ worker.copyright.year }} {{ worker.copyright.name }}</p>
4
+ <p>{{ worker.copyright.content }}</p>
5
+ </div>
6
+ </div>
@@ -0,0 +1,10 @@
1
+ <div id='header' class='clearfix'>
2
+ <div class='nav wrapper'>
3
+ <a href='/index.html'>首页</a>
4
+
5
+ {{# reader.global.folders }}
6
+ <a href='{{ url }}' title='{{title}}'>{{ name }}</a>
7
+ {{/ reader.global.folders }}
8
+ </div>
9
+ </div>
10
+
@@ -0,0 +1,97 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
5
+ <title>
6
+ {{# reader.post }}《{{ title }}》{{/ reader.post }}{{# reader.folder }} - {{ name }} {{/ reader.folder }} - {{ worker.site.name }}
7
+ </title>
8
+ <script type='text/javascript' src='/assets/javascripts/application.js'></script>
9
+ <script type='text/javascript' src='/assets/javascripts/document_post.js'></script>
10
+ <link href="/assets/stylesheets/application.css" media="all" rel="stylesheet" />
11
+ <link href="/assets/stylesheets/document_post.css" media="all" rel="stylesheet" />
12
+ </head>
13
+ <body>
14
+ {{> partials/shared/header }}
15
+ <div id='container' class='wrapper clearfix'>
16
+ <div class='path'>
17
+ <a href='/index.html'>首页</a>
18
+
19
+ {{# reader.folders }}
20
+ &gt;
21
+ <a href='{{ url }}' title='{{title}}'>{{ name }}</a>
22
+ {{/ reader.folders }}
23
+ </div>
24
+
25
+ <div class='information'>
26
+ <h1>{{ page.title }}</h1>
27
+
28
+ <div class='bar'>
29
+ {{# page.datetime }}
30
+ 时间: {{ page.datetime }}
31
+ {{/ page.datetime }}
32
+
33
+ {{# page.authors_any? }}
34
+ <span class='bar-authors'>
35
+ 作者:
36
+ {{# page.authors }}
37
+ <a href='javascript:;'>{{ value }}</a>
38
+ {{/ page.authors }}
39
+ </span>
40
+ {{/ page.authors_any? }}
41
+
42
+ {{# page.categories_any? }}
43
+ <span class='bar-categories'>
44
+ 分类:
45
+ {{# page.categories }}
46
+ <a href='javascript:;'>{{ value }}</a>
47
+ {{/ page.categories }}
48
+ </span>
49
+ {{/ page.categories_any? }}
50
+ </div>
51
+
52
+ {{# page.tags_any? }}
53
+ <div class='bar bar-tags'>
54
+ {{# page.tags }}
55
+ <a href='javascript:;' class='button'>{{ value }}</a>
56
+ {{/ page.tags }}
57
+ </div>
58
+ {{/ page.tags_any? }}
59
+
60
+ {{# page.outline }}
61
+ <div class='outline'>
62
+ 纲要: {{ page.outline }}
63
+ </div>
64
+ {{/ page.outline }}
65
+
66
+ </div>
67
+
68
+ <div class='container-block clearfix'>
69
+ <!-- container-main begin -->
70
+ <div class='container-main clearfix'>
71
+
72
+ {{# page.content_present? }}
73
+ <div class='content'>
74
+ <div class='content-inner content-workmark'>
75
+ {{{ page.content }}}
76
+ </div>
77
+ </div>
78
+ {{/ page.content_present? }}
79
+
80
+ </div> <!-- container-main end -->
81
+
82
+ <div class='container-side clearfix'>
83
+ {{# page.catalogs_any? }}
84
+ <h3>文档目录大纲</h3>
85
+ <dl class='dl-catalogs'>
86
+ {{# page.catalogs }}
87
+ <dd class='catalog-link-{{ name }}'><a href='#{{anchor}}' title='{{ text }}'>{{ text }}</a></dd>
88
+ {{/ page.catalogs }}
89
+ </dl>
90
+ {{/ page.catalogs_any? }}
91
+ </div>
92
+ </div>
93
+
94
+ </div>
95
+ {{> partials/shared/copyright }}
96
+ </body>
97
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ ---
2
+ layout: index
3
+ title: 首页
4
+ name: 首页
5
+ ---
6
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docwu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-30 00:00:00.000000000 Z
12
+ date: 2013-08-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redcarpet
@@ -109,6 +109,63 @@ files:
109
109
  - lib/docwu/worker.rb
110
110
  - lib/docwu/post.rb
111
111
  - lib/docwu/folder.rb
112
+ - lib/template_files/README.md
113
+ - lib/template_files/Gemfile.lock
114
+ - lib/template_files/layouts/folder.mustache
115
+ - lib/template_files/layouts/post.mustache
116
+ - lib/template_files/layouts/partials/folder/posterity.mustache
117
+ - lib/template_files/layouts/partials/folder/post_outline.mustache
118
+ - lib/template_files/layouts/partials/shared/copyright.mustache
119
+ - lib/template_files/layouts/partials/shared/header.mustache
120
+ - lib/template_files/layouts/index.mustache
121
+ - lib/template_files/topics/index.markdown
122
+ - lib/template_files/doc/help/README.md
123
+ - lib/template_files/config.yml
124
+ - lib/template_files/_deploy/assets/images/shared/folder/README.txt
125
+ - lib/template_files/_deploy/assets/images/shared/folder/user.png
126
+ - lib/template_files/_deploy/assets/images/shared/folder/text.png
127
+ - lib/template_files/_deploy/assets/images/shared/icons/li-1.gif
128
+ - lib/template_files/_deploy/assets/images/shared/icons/li-3.gif
129
+ - lib/template_files/_deploy/assets/images/shared/icons/li-2.gif
130
+ - lib/template_files/_deploy/assets/stylesheets/document_post.css
131
+ - lib/template_files/_deploy/assets/stylesheets/document_folder.css
132
+ - lib/template_files/_deploy/assets/stylesheets/application.css
133
+ - lib/template_files/_deploy/assets/stylesheets/index.css
134
+ - lib/template_files/_deploy/assets/javascripts/application.js
135
+ - lib/template_files/_deploy/assets/javascripts/document_post.js
136
+ - lib/template_files/_deploy/assets/javascripts/document_folder.js
137
+ - lib/template_files/_deploy/index.html
138
+ - lib/template_files/_deploy/document/projects/zhe800/index.html
139
+ - lib/template_files/_deploy/document/projects/tuan800/index.html
140
+ - lib/template_files/_deploy/document/projects/passport800/index.html
141
+ - lib/template_files/_deploy/document/projects/hui800/index.html
142
+ - lib/template_files/_deploy/document/help/README.html
143
+ - lib/template_files/_deploy/document/help/index.html
144
+ - lib/template_files/_deploy/document/learning/初学者教程/markdown-basic.html
145
+ - lib/template_files/_deploy/document/learning/初学者教程/index.html
146
+ - lib/template_files/_deploy/document/learning/README.html
147
+ - lib/template_files/_deploy/document/learning/ruby/1.html
148
+ - lib/template_files/_deploy/document/learning/ruby/index.html
149
+ - lib/template_files/_deploy/document/learning/markdown/index.html
150
+ - lib/template_files/_deploy/document/learning/markdown/lesson_1.html
151
+ - lib/template_files/_deploy/document/learning/index.html
152
+ - lib/template_files/_deploy/document/juices/README.html
153
+ - lib/template_files/_deploy/document/juices/index.html
154
+ - lib/template_files/static/_static.html
155
+ - lib/template_files/Gemfile
156
+ - lib/template_files/assets/images/shared/folder/README.txt
157
+ - lib/template_files/assets/images/shared/folder/user.png
158
+ - lib/template_files/assets/images/shared/folder/text.png
159
+ - lib/template_files/assets/images/shared/icons/li-1.gif
160
+ - lib/template_files/assets/images/shared/icons/li-3.gif
161
+ - lib/template_files/assets/images/shared/icons/li-2.gif
162
+ - lib/template_files/assets/stylesheets/document_post.css
163
+ - lib/template_files/assets/stylesheets/document_folder.css
164
+ - lib/template_files/assets/stylesheets/application.css
165
+ - lib/template_files/assets/stylesheets/index.css
166
+ - lib/template_files/assets/javascripts/application.js
167
+ - lib/template_files/assets/javascripts/document_post.js
168
+ - lib/template_files/assets/javascripts/document_folder.js
112
169
  - lib/docwu.rb
113
170
  - lib/tasks/docwu_tasks.rake
114
171
  - MIT-LICENSE
@@ -129,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
129
186
  version: '0'
130
187
  segments:
131
188
  - 0
132
- hash: 989421214351366918
189
+ hash: -1003078366328497426
133
190
  required_rubygems_version: !ruby/object:Gem::Requirement
134
191
  none: false
135
192
  requirements:
@@ -138,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
195
  version: '0'
139
196
  segments:
140
197
  - 0
141
- hash: 989421214351366918
198
+ hash: -1003078366328497426
142
199
  requirements: []
143
200
  rubyforge_project:
144
201
  rubygems_version: 1.8.25