hashup 0.0.5

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 (166) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +45 -0
  6. data/Rakefile +5 -0
  7. data/bin/hashup +4 -0
  8. data/hashup.gemspec +28 -0
  9. data/lib/hashup.rb +14 -0
  10. data/lib/hashup/configuration.rb +26 -0
  11. data/lib/hashup/generator.rb +103 -0
  12. data/lib/hashup/post.rb +22 -0
  13. data/lib/hashup/site.rb +74 -0
  14. data/lib/hashup/templates/config.yml +8 -0
  15. data/lib/hashup/templates/contents/_pages/about.ma +7 -0
  16. data/lib/hashup/templates/contents/_posts/markascend.ma +54 -0
  17. data/lib/hashup/templates/contents/data.yml +9 -0
  18. data/lib/hashup/templates/themes/_layout/_footer.slim +11 -0
  19. data/lib/hashup/templates/themes/_layout/_header.slim +12 -0
  20. data/lib/hashup/templates/themes/_layout/_layout.slim +5 -0
  21. data/lib/hashup/templates/themes/_layout/_nav.slim +7 -0
  22. data/lib/hashup/templates/themes/assets/flat-ui/_config.sass +16 -0
  23. data/lib/hashup/templates/themes/assets/flat-ui/_icon-font-24.sass +91 -0
  24. data/lib/hashup/templates/themes/assets/flat-ui/_icon-font.sass +91 -0
  25. data/lib/hashup/templates/themes/assets/flat-ui/_mixins.sass +96 -0
  26. data/lib/hashup/templates/themes/assets/flat-ui/_spaces.sass +129 -0
  27. data/lib/hashup/templates/themes/assets/flat-ui/flat-ui.sass +39 -0
  28. data/lib/hashup/templates/themes/assets/flat-ui/modules/_btn.sass +73 -0
  29. data/lib/hashup/templates/themes/assets/flat-ui/modules/_checkbox-and-radio.sass +86 -0
  30. data/lib/hashup/templates/themes/assets/flat-ui/modules/_demo.sass +228 -0
  31. data/lib/hashup/templates/themes/assets/flat-ui/modules/_footer.sass +57 -0
  32. data/lib/hashup/templates/themes/assets/flat-ui/modules/_input.sass +66 -0
  33. data/lib/hashup/templates/themes/assets/flat-ui/modules/_login.sass +95 -0
  34. data/lib/hashup/templates/themes/assets/flat-ui/modules/_navbar.sass +152 -0
  35. data/lib/hashup/templates/themes/assets/flat-ui/modules/_pager.sass +56 -0
  36. data/lib/hashup/templates/themes/assets/flat-ui/modules/_pagination.sass +75 -0
  37. data/lib/hashup/templates/themes/assets/flat-ui/modules/_palette.sass +88 -0
  38. data/lib/hashup/templates/themes/assets/flat-ui/modules/_progress.sass +29 -0
  39. data/lib/hashup/templates/themes/assets/flat-ui/modules/_select.sass +163 -0
  40. data/lib/hashup/templates/themes/assets/flat-ui/modules/_share.sass +34 -0
  41. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tagsinput.sass +91 -0
  42. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tile.sass +42 -0
  43. data/lib/hashup/templates/themes/assets/flat-ui/modules/_todo.sass +77 -0
  44. data/lib/hashup/templates/themes/assets/flat-ui/modules/_toggle.sass +85 -0
  45. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tooltip.sass +45 -0
  46. data/lib/hashup/templates/themes/assets/flat-ui/modules/_type.sass +43 -0
  47. data/lib/hashup/templates/themes/assets/flat-ui/modules/_ui-slider.sass +44 -0
  48. data/lib/hashup/templates/themes/assets/flat-ui/modules/_video.sass +358 -0
  49. data/lib/hashup/templates/themes/index.slim +9 -0
  50. data/lib/hashup/templates/themes/post.slim +3 -0
  51. data/lib/hashup/templates/themes/static/css/bootstrap.css +6039 -0
  52. data/lib/hashup/templates/themes/static/css/custom.css +11 -0
  53. data/lib/hashup/templates/themes/static/css/flat-ui.css +2533 -0
  54. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.dev.svg +112 -0
  55. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.eot +0 -0
  56. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.svg +112 -0
  57. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.ttf +0 -0
  58. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.woff +0 -0
  59. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.dev.svg +111 -0
  60. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.eot +0 -0
  61. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.svg +111 -0
  62. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.ttf +0 -0
  63. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.woff +0 -0
  64. data/lib/hashup/templates/themes/static/images/checkbox-2x.png +0 -0
  65. data/lib/hashup/templates/themes/static/images/checkbox.png +0 -0
  66. data/lib/hashup/templates/themes/static/images/demo/browser-2x.png +0 -0
  67. data/lib/hashup/templates/themes/static/images/demo/browser-author.jpg +0 -0
  68. data/lib/hashup/templates/themes/static/images/demo/browser-pic-1.jpg +0 -0
  69. data/lib/hashup/templates/themes/static/images/demo/browser-pic-2.jpg +0 -0
  70. data/lib/hashup/templates/themes/static/images/demo/browser-pic-3.jpg +0 -0
  71. data/lib/hashup/templates/themes/static/images/demo/browser-pic-4.jpg +0 -0
  72. data/lib/hashup/templates/themes/static/images/demo/browser-pic-5.jpg +0 -0
  73. data/lib/hashup/templates/themes/static/images/demo/browser-pic-6.jpg +0 -0
  74. data/lib/hashup/templates/themes/static/images/demo/browser.png +0 -0
  75. data/lib/hashup/templates/themes/static/images/demo/html-icon.png +0 -0
  76. data/lib/hashup/templates/themes/static/images/demo/logo-mask-2x.png +0 -0
  77. data/lib/hashup/templates/themes/static/images/demo/logo-mask.png +0 -0
  78. data/lib/hashup/templates/themes/static/images/demo/video.jpg +0 -0
  79. data/lib/hashup/templates/themes/static/images/favicon.ico +0 -0
  80. data/lib/hashup/templates/themes/static/images/footer/logo.png +0 -0
  81. data/lib/hashup/templates/themes/static/images/illustrations/bag.png +0 -0
  82. data/lib/hashup/templates/themes/static/images/illustrations/book.png +0 -0
  83. data/lib/hashup/templates/themes/static/images/illustrations/calendar.png +0 -0
  84. data/lib/hashup/templates/themes/static/images/illustrations/clipboard.png +0 -0
  85. data/lib/hashup/templates/themes/static/images/illustrations/colors.png +0 -0
  86. data/lib/hashup/templates/themes/static/images/illustrations/compass.png +0 -0
  87. data/lib/hashup/templates/themes/static/images/illustrations/gift.png +0 -0
  88. data/lib/hashup/templates/themes/static/images/illustrations/infinity.png +0 -0
  89. data/lib/hashup/templates/themes/static/images/illustrations/mail.png +0 -0
  90. data/lib/hashup/templates/themes/static/images/illustrations/map.png +0 -0
  91. data/lib/hashup/templates/themes/static/images/illustrations/paper.png +0 -0
  92. data/lib/hashup/templates/themes/static/images/illustrations/retina.png +0 -0
  93. data/lib/hashup/templates/themes/static/images/illustrations/share.png +0 -0
  94. data/lib/hashup/templates/themes/static/images/illustrations/time.png +0 -0
  95. data/lib/hashup/templates/themes/static/images/login/icon.png +0 -0
  96. data/lib/hashup/templates/themes/static/images/login/imac-2x.png +0 -0
  97. data/lib/hashup/templates/themes/static/images/login/imac.png +0 -0
  98. data/lib/hashup/templates/themes/static/images/pager/next.png +0 -0
  99. data/lib/hashup/templates/themes/static/images/pager/previous.png +0 -0
  100. data/lib/hashup/templates/themes/static/images/radio-2x.png +0 -0
  101. data/lib/hashup/templates/themes/static/images/radio.png +0 -0
  102. data/lib/hashup/templates/themes/static/images/select/toggle.png +0 -0
  103. data/lib/hashup/templates/themes/static/images/tile/ribbon-2x.png +0 -0
  104. data/lib/hashup/templates/themes/static/images/tile/ribbon.png +0 -0
  105. data/lib/hashup/templates/themes/static/images/todo/done-2x.png +0 -0
  106. data/lib/hashup/templates/themes/static/images/todo/done.png +0 -0
  107. data/lib/hashup/templates/themes/static/images/todo/search-2x.png +0 -0
  108. data/lib/hashup/templates/themes/static/images/todo/search.png +0 -0
  109. data/lib/hashup/templates/themes/static/images/todo/todo-2x.png +0 -0
  110. data/lib/hashup/templates/themes/static/images/todo/todo.png +0 -0
  111. data/lib/hashup/templates/themes/static/images/toggle/block-off.png +0 -0
  112. data/lib/hashup/templates/themes/static/images/toggle/block-on.png +0 -0
  113. data/lib/hashup/templates/themes/static/images/toggle/icon-off-2x.png +0 -0
  114. data/lib/hashup/templates/themes/static/images/toggle/icon-off.png +0 -0
  115. data/lib/hashup/templates/themes/static/images/toggle/icon-on-2x.png +0 -0
  116. data/lib/hashup/templates/themes/static/images/toggle/icon-on.png +0 -0
  117. data/lib/hashup/templates/themes/static/images/video/fullscreen-2x.png +0 -0
  118. data/lib/hashup/templates/themes/static/images/video/fullscreen.png +0 -0
  119. data/lib/hashup/templates/themes/static/images/video/pause-2x.png +0 -0
  120. data/lib/hashup/templates/themes/static/images/video/pause.png +0 -0
  121. data/lib/hashup/templates/themes/static/images/video/play-2x.png +0 -0
  122. data/lib/hashup/templates/themes/static/images/video/play.png +0 -0
  123. data/lib/hashup/templates/themes/static/images/video/poster.jpg +0 -0
  124. data/lib/hashup/templates/themes/static/images/video/volume-full-2x.png +0 -0
  125. data/lib/hashup/templates/themes/static/images/video/volume-full.png +0 -0
  126. data/lib/hashup/templates/themes/static/images/video/volume-off-2x.png +0 -0
  127. data/lib/hashup/templates/themes/static/images/video/volume-off.png +0 -0
  128. data/lib/hashup/templates/themes/static/js/application.js +51 -0
  129. data/lib/hashup/templates/themes/static/js/bootstrap-tooltip.js +353 -0
  130. data/lib/hashup/templates/themes/static/js/custom_checkbox_and_radio.js +53 -0
  131. data/lib/hashup/templates/themes/static/js/custom_radio.js +28 -0
  132. data/lib/hashup/templates/themes/static/js/html5shiv.js +8 -0
  133. data/lib/hashup/templates/themes/static/js/icon-font-ie7.js +44 -0
  134. data/lib/hashup/templates/themes/static/js/jquery-1.8.2.min.js +2 -0
  135. data/lib/hashup/templates/themes/static/js/jquery-ui-1.10.0.custom.min.js +6 -0
  136. data/lib/hashup/templates/themes/static/js/jquery.dropkick-1.0.0.js +400 -0
  137. data/lib/hashup/templates/themes/static/js/jquery.placeholder.js +157 -0
  138. data/lib/hashup/templates/themes/static/js/jquery.tagsinput.js +354 -0
  139. data/lib/hashup/templates/themes/static/js/lte-ie7-24.js +44 -0
  140. data/lib/hashup/templates/themes/static/pygments-css/README.rst +27 -0
  141. data/lib/hashup/templates/themes/static/pygments-css/autumn.css +58 -0
  142. data/lib/hashup/templates/themes/static/pygments-css/borland.css +46 -0
  143. data/lib/hashup/templates/themes/static/pygments-css/bw.css +34 -0
  144. data/lib/hashup/templates/themes/static/pygments-css/colorful.css +61 -0
  145. data/lib/hashup/templates/themes/static/pygments-css/default.css +62 -0
  146. data/lib/hashup/templates/themes/static/pygments-css/emacs.css +61 -0
  147. data/lib/hashup/templates/themes/static/pygments-css/friendly.css +61 -0
  148. data/lib/hashup/templates/themes/static/pygments-css/fruity.css +69 -0
  149. data/lib/hashup/templates/themes/static/pygments-css/github.css +61 -0
  150. data/lib/hashup/templates/themes/static/pygments-css/manni.css +61 -0
  151. data/lib/hashup/templates/themes/static/pygments-css/monokai.css +59 -0
  152. data/lib/hashup/templates/themes/static/pygments-css/murphy.css +61 -0
  153. data/lib/hashup/templates/themes/static/pygments-css/native.css +69 -0
  154. data/lib/hashup/templates/themes/static/pygments-css/pastie.css +60 -0
  155. data/lib/hashup/templates/themes/static/pygments-css/perldoc.css +58 -0
  156. data/lib/hashup/templates/themes/static/pygments-css/tango.css +69 -0
  157. data/lib/hashup/templates/themes/static/pygments-css/trac.css +59 -0
  158. data/lib/hashup/templates/themes/static/pygments-css/vim.css +69 -0
  159. data/lib/hashup/templates/themes/static/pygments-css/vs.css +33 -0
  160. data/lib/hashup/templates/themes/static/pygments-css/zenburn.css +1 -0
  161. data/lib/hashup/templates/themes/stylesheets/style.css +0 -0
  162. data/lib/hashup/version.rb +3 -0
  163. data/spec/generator_spec.rb +11 -0
  164. data/spec/hashup_spec.rb +12 -0
  165. data/spec/spec_helper.rb +9 -0
  166. metadata +310 -0
@@ -0,0 +1,58 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #228B22 } /* Comment */
3
+ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .codehilite .k { color: #8B008B; font-weight: bold } /* Keyword */
5
+ .codehilite .cm { color: #228B22 } /* Comment.Multiline */
6
+ .codehilite .cp { color: #1e889b } /* Comment.Preproc */
7
+ .codehilite .c1 { color: #228B22 } /* Comment.Single */
8
+ .codehilite .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
9
+ .codehilite .gd { color: #aa0000 } /* Generic.Deleted */
10
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
11
+ .codehilite .gr { color: #aa0000 } /* Generic.Error */
12
+ .codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
13
+ .codehilite .gi { color: #00aa00 } /* Generic.Inserted */
14
+ .codehilite .go { color: #888888 } /* Generic.Output */
15
+ .codehilite .gp { color: #555555 } /* Generic.Prompt */
16
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
17
+ .codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
18
+ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */
19
+ .codehilite .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
20
+ .codehilite .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
21
+ .codehilite .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
22
+ .codehilite .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
23
+ .codehilite .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
24
+ .codehilite .kt { color: #a7a7a7; font-weight: bold } /* Keyword.Type */
25
+ .codehilite .m { color: #B452CD } /* Literal.Number */
26
+ .codehilite .s { color: #CD5555 } /* Literal.String */
27
+ .codehilite .na { color: #658b00 } /* Name.Attribute */
28
+ .codehilite .nb { color: #658b00 } /* Name.Builtin */
29
+ .codehilite .nc { color: #008b45; font-weight: bold } /* Name.Class */
30
+ .codehilite .no { color: #00688B } /* Name.Constant */
31
+ .codehilite .nd { color: #707a7c } /* Name.Decorator */
32
+ .codehilite .ne { color: #008b45; font-weight: bold } /* Name.Exception */
33
+ .codehilite .nf { color: #008b45 } /* Name.Function */
34
+ .codehilite .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
35
+ .codehilite .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
36
+ .codehilite .nv { color: #00688B } /* Name.Variable */
37
+ .codehilite .ow { color: #8B008B } /* Operator.Word */
38
+ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
39
+ .codehilite .mf { color: #B452CD } /* Literal.Number.Float */
40
+ .codehilite .mh { color: #B452CD } /* Literal.Number.Hex */
41
+ .codehilite .mi { color: #B452CD } /* Literal.Number.Integer */
42
+ .codehilite .mo { color: #B452CD } /* Literal.Number.Oct */
43
+ .codehilite .sb { color: #CD5555 } /* Literal.String.Backtick */
44
+ .codehilite .sc { color: #CD5555 } /* Literal.String.Char */
45
+ .codehilite .sd { color: #CD5555 } /* Literal.String.Doc */
46
+ .codehilite .s2 { color: #CD5555 } /* Literal.String.Double */
47
+ .codehilite .se { color: #CD5555 } /* Literal.String.Escape */
48
+ .codehilite .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
49
+ .codehilite .si { color: #CD5555 } /* Literal.String.Interpol */
50
+ .codehilite .sx { color: #cb6c20 } /* Literal.String.Other */
51
+ .codehilite .sr { color: #1c7e71 } /* Literal.String.Regex */
52
+ .codehilite .s1 { color: #CD5555 } /* Literal.String.Single */
53
+ .codehilite .ss { color: #CD5555 } /* Literal.String.Symbol */
54
+ .codehilite .bp { color: #658b00 } /* Name.Builtin.Pseudo */
55
+ .codehilite .vc { color: #00688B } /* Name.Variable.Class */
56
+ .codehilite .vg { color: #00688B } /* Name.Variable.Global */
57
+ .codehilite .vi { color: #00688B } /* Name.Variable.Instance */
58
+ .codehilite .il { color: #B452CD } /* Literal.Number.Integer.Long */
@@ -0,0 +1,69 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #8f5902; font-style: italic } /* Comment */
3
+ .codehilite .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
4
+ .codehilite .g { color: #000000 } /* Generic */
5
+ .codehilite .k { color: #204a87; font-weight: bold } /* Keyword */
6
+ .codehilite .l { color: #000000 } /* Literal */
7
+ .codehilite .n { color: #000000 } /* Name */
8
+ .codehilite .o { color: #ce5c00; font-weight: bold } /* Operator */
9
+ .codehilite .x { color: #000000 } /* Other */
10
+ .codehilite .p { color: #000000; font-weight: bold } /* Punctuation */
11
+ .codehilite .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
12
+ .codehilite .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
13
+ .codehilite .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
14
+ .codehilite .cs { color: #8f5902; font-style: italic } /* Comment.Special */
15
+ .codehilite .gd { color: #a40000 } /* Generic.Deleted */
16
+ .codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */
17
+ .codehilite .gr { color: #ef2929 } /* Generic.Error */
18
+ .codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
19
+ .codehilite .gi { color: #00A000 } /* Generic.Inserted */
20
+ .codehilite .go { color: #000000; font-style: italic } /* Generic.Output */
21
+ .codehilite .gp { color: #8f5902 } /* Generic.Prompt */
22
+ .codehilite .gs { color: #000000; font-weight: bold } /* Generic.Strong */
23
+ .codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
24
+ .codehilite .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
25
+ .codehilite .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
26
+ .codehilite .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
27
+ .codehilite .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
28
+ .codehilite .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
29
+ .codehilite .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
30
+ .codehilite .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
31
+ .codehilite .ld { color: #000000 } /* Literal.Date */
32
+ .codehilite .m { color: #0000cf; font-weight: bold } /* Literal.Number */
33
+ .codehilite .s { color: #4e9a06 } /* Literal.String */
34
+ .codehilite .na { color: #c4a000 } /* Name.Attribute */
35
+ .codehilite .nb { color: #204a87 } /* Name.Builtin */
36
+ .codehilite .nc { color: #000000 } /* Name.Class */
37
+ .codehilite .no { color: #000000 } /* Name.Constant */
38
+ .codehilite .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
39
+ .codehilite .ni { color: #ce5c00 } /* Name.Entity */
40
+ .codehilite .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
41
+ .codehilite .nf { color: #000000 } /* Name.Function */
42
+ .codehilite .nl { color: #f57900 } /* Name.Label */
43
+ .codehilite .nn { color: #000000 } /* Name.Namespace */
44
+ .codehilite .nx { color: #000000 } /* Name.Other */
45
+ .codehilite .py { color: #000000 } /* Name.Property */
46
+ .codehilite .nt { color: #204a87; font-weight: bold } /* Name.Tag */
47
+ .codehilite .nv { color: #000000 } /* Name.Variable */
48
+ .codehilite .ow { color: #204a87; font-weight: bold } /* Operator.Word */
49
+ .codehilite .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
50
+ .codehilite .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
51
+ .codehilite .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
52
+ .codehilite .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
53
+ .codehilite .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
54
+ .codehilite .sb { color: #4e9a06 } /* Literal.String.Backtick */
55
+ .codehilite .sc { color: #4e9a06 } /* Literal.String.Char */
56
+ .codehilite .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
57
+ .codehilite .s2 { color: #4e9a06 } /* Literal.String.Double */
58
+ .codehilite .se { color: #4e9a06 } /* Literal.String.Escape */
59
+ .codehilite .sh { color: #4e9a06 } /* Literal.String.Heredoc */
60
+ .codehilite .si { color: #4e9a06 } /* Literal.String.Interpol */
61
+ .codehilite .sx { color: #4e9a06 } /* Literal.String.Other */
62
+ .codehilite .sr { color: #4e9a06 } /* Literal.String.Regex */
63
+ .codehilite .s1 { color: #4e9a06 } /* Literal.String.Single */
64
+ .codehilite .ss { color: #4e9a06 } /* Literal.String.Symbol */
65
+ .codehilite .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
66
+ .codehilite .vc { color: #000000 } /* Name.Variable.Class */
67
+ .codehilite .vg { color: #000000 } /* Name.Variable.Global */
68
+ .codehilite .vi { color: #000000 } /* Name.Variable.Instance */
69
+ .codehilite .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -0,0 +1,59 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #999988; font-style: italic } /* Comment */
3
+ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .codehilite .k { font-weight: bold } /* Keyword */
5
+ .codehilite .o { font-weight: bold } /* Operator */
6
+ .codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
+ .codehilite .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
+ .codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
+ .codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
12
+ .codehilite .gr { color: #aa0000 } /* Generic.Error */
13
+ .codehilite .gh { color: #999999 } /* Generic.Heading */
14
+ .codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15
+ .codehilite .go { color: #888888 } /* Generic.Output */
16
+ .codehilite .gp { color: #555555 } /* Generic.Prompt */
17
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
18
+ .codehilite .gu { color: #aaaaaa } /* Generic.Subheading */
19
+ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */
20
+ .codehilite .kc { font-weight: bold } /* Keyword.Constant */
21
+ .codehilite .kd { font-weight: bold } /* Keyword.Declaration */
22
+ .codehilite .kn { font-weight: bold } /* Keyword.Namespace */
23
+ .codehilite .kp { font-weight: bold } /* Keyword.Pseudo */
24
+ .codehilite .kr { font-weight: bold } /* Keyword.Reserved */
25
+ .codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */
26
+ .codehilite .m { color: #009999 } /* Literal.Number */
27
+ .codehilite .s { color: #bb8844 } /* Literal.String */
28
+ .codehilite .na { color: #008080 } /* Name.Attribute */
29
+ .codehilite .nb { color: #999999 } /* Name.Builtin */
30
+ .codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */
31
+ .codehilite .no { color: #008080 } /* Name.Constant */
32
+ .codehilite .ni { color: #800080 } /* Name.Entity */
33
+ .codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */
34
+ .codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */
35
+ .codehilite .nn { color: #555555 } /* Name.Namespace */
36
+ .codehilite .nt { color: #000080 } /* Name.Tag */
37
+ .codehilite .nv { color: #008080 } /* Name.Variable */
38
+ .codehilite .ow { font-weight: bold } /* Operator.Word */
39
+ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
40
+ .codehilite .mf { color: #009999 } /* Literal.Number.Float */
41
+ .codehilite .mh { color: #009999 } /* Literal.Number.Hex */
42
+ .codehilite .mi { color: #009999 } /* Literal.Number.Integer */
43
+ .codehilite .mo { color: #009999 } /* Literal.Number.Oct */
44
+ .codehilite .sb { color: #bb8844 } /* Literal.String.Backtick */
45
+ .codehilite .sc { color: #bb8844 } /* Literal.String.Char */
46
+ .codehilite .sd { color: #bb8844 } /* Literal.String.Doc */
47
+ .codehilite .s2 { color: #bb8844 } /* Literal.String.Double */
48
+ .codehilite .se { color: #bb8844 } /* Literal.String.Escape */
49
+ .codehilite .sh { color: #bb8844 } /* Literal.String.Heredoc */
50
+ .codehilite .si { color: #bb8844 } /* Literal.String.Interpol */
51
+ .codehilite .sx { color: #bb8844 } /* Literal.String.Other */
52
+ .codehilite .sr { color: #808000 } /* Literal.String.Regex */
53
+ .codehilite .s1 { color: #bb8844 } /* Literal.String.Single */
54
+ .codehilite .ss { color: #bb8844 } /* Literal.String.Symbol */
55
+ .codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */
56
+ .codehilite .vc { color: #008080 } /* Name.Variable.Class */
57
+ .codehilite .vg { color: #008080 } /* Name.Variable.Global */
58
+ .codehilite .vi { color: #008080 } /* Name.Variable.Instance */
59
+ .codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,69 @@
1
+ .codehilite .hll { background-color: #222222 }
2
+ .codehilite .c { color: #000080 } /* Comment */
3
+ .codehilite .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
4
+ .codehilite .g { color: #cccccc } /* Generic */
5
+ .codehilite .k { color: #cdcd00 } /* Keyword */
6
+ .codehilite .l { color: #cccccc } /* Literal */
7
+ .codehilite .n { color: #cccccc } /* Name */
8
+ .codehilite .o { color: #3399cc } /* Operator */
9
+ .codehilite .x { color: #cccccc } /* Other */
10
+ .codehilite .p { color: #cccccc } /* Punctuation */
11
+ .codehilite .cm { color: #000080 } /* Comment.Multiline */
12
+ .codehilite .cp { color: #000080 } /* Comment.Preproc */
13
+ .codehilite .c1 { color: #000080 } /* Comment.Single */
14
+ .codehilite .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
15
+ .codehilite .gd { color: #cd0000 } /* Generic.Deleted */
16
+ .codehilite .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
17
+ .codehilite .gr { color: #FF0000 } /* Generic.Error */
18
+ .codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
19
+ .codehilite .gi { color: #00cd00 } /* Generic.Inserted */
20
+ .codehilite .go { color: #808080 } /* Generic.Output */
21
+ .codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
22
+ .codehilite .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
23
+ .codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
24
+ .codehilite .gt { color: #0040D0 } /* Generic.Traceback */
25
+ .codehilite .kc { color: #cdcd00 } /* Keyword.Constant */
26
+ .codehilite .kd { color: #00cd00 } /* Keyword.Declaration */
27
+ .codehilite .kn { color: #cd00cd } /* Keyword.Namespace */
28
+ .codehilite .kp { color: #cdcd00 } /* Keyword.Pseudo */
29
+ .codehilite .kr { color: #cdcd00 } /* Keyword.Reserved */
30
+ .codehilite .kt { color: #00cd00 } /* Keyword.Type */
31
+ .codehilite .ld { color: #cccccc } /* Literal.Date */
32
+ .codehilite .m { color: #cd00cd } /* Literal.Number */
33
+ .codehilite .s { color: #cd0000 } /* Literal.String */
34
+ .codehilite .na { color: #cccccc } /* Name.Attribute */
35
+ .codehilite .nb { color: #cd00cd } /* Name.Builtin */
36
+ .codehilite .nc { color: #00cdcd } /* Name.Class */
37
+ .codehilite .no { color: #cccccc } /* Name.Constant */
38
+ .codehilite .nd { color: #cccccc } /* Name.Decorator */
39
+ .codehilite .ni { color: #cccccc } /* Name.Entity */
40
+ .codehilite .ne { color: #666699; font-weight: bold } /* Name.Exception */
41
+ .codehilite .nf { color: #cccccc } /* Name.Function */
42
+ .codehilite .nl { color: #cccccc } /* Name.Label */
43
+ .codehilite .nn { color: #cccccc } /* Name.Namespace */
44
+ .codehilite .nx { color: #cccccc } /* Name.Other */
45
+ .codehilite .py { color: #cccccc } /* Name.Property */
46
+ .codehilite .nt { color: #cccccc } /* Name.Tag */
47
+ .codehilite .nv { color: #00cdcd } /* Name.Variable */
48
+ .codehilite .ow { color: #cdcd00 } /* Operator.Word */
49
+ .codehilite .w { color: #cccccc } /* Text.Whitespace */
50
+ .codehilite .mf { color: #cd00cd } /* Literal.Number.Float */
51
+ .codehilite .mh { color: #cd00cd } /* Literal.Number.Hex */
52
+ .codehilite .mi { color: #cd00cd } /* Literal.Number.Integer */
53
+ .codehilite .mo { color: #cd00cd } /* Literal.Number.Oct */
54
+ .codehilite .sb { color: #cd0000 } /* Literal.String.Backtick */
55
+ .codehilite .sc { color: #cd0000 } /* Literal.String.Char */
56
+ .codehilite .sd { color: #cd0000 } /* Literal.String.Doc */
57
+ .codehilite .s2 { color: #cd0000 } /* Literal.String.Double */
58
+ .codehilite .se { color: #cd0000 } /* Literal.String.Escape */
59
+ .codehilite .sh { color: #cd0000 } /* Literal.String.Heredoc */
60
+ .codehilite .si { color: #cd0000 } /* Literal.String.Interpol */
61
+ .codehilite .sx { color: #cd0000 } /* Literal.String.Other */
62
+ .codehilite .sr { color: #cd0000 } /* Literal.String.Regex */
63
+ .codehilite .s1 { color: #cd0000 } /* Literal.String.Single */
64
+ .codehilite .ss { color: #cd0000 } /* Literal.String.Symbol */
65
+ .codehilite .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
66
+ .codehilite .vc { color: #00cdcd } /* Name.Variable.Class */
67
+ .codehilite .vg { color: #00cdcd } /* Name.Variable.Global */
68
+ .codehilite .vi { color: #00cdcd } /* Name.Variable.Instance */
69
+ .codehilite .il { color: #cd00cd } /* Literal.Number.Integer.Long */
@@ -0,0 +1,33 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #008000 } /* Comment */
3
+ .codehilite .err { border: 1px solid #FF0000 } /* Error */
4
+ .codehilite .k { color: #0000ff } /* Keyword */
5
+ .codehilite .cm { color: #008000 } /* Comment.Multiline */
6
+ .codehilite .cp { color: #0000ff } /* Comment.Preproc */
7
+ .codehilite .c1 { color: #008000 } /* Comment.Single */
8
+ .codehilite .cs { color: #008000 } /* Comment.Special */
9
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
10
+ .codehilite .gh { font-weight: bold } /* Generic.Heading */
11
+ .codehilite .gp { font-weight: bold } /* Generic.Prompt */
12
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
13
+ .codehilite .gu { font-weight: bold } /* Generic.Subheading */
14
+ .codehilite .kc { color: #0000ff } /* Keyword.Constant */
15
+ .codehilite .kd { color: #0000ff } /* Keyword.Declaration */
16
+ .codehilite .kn { color: #0000ff } /* Keyword.Namespace */
17
+ .codehilite .kp { color: #0000ff } /* Keyword.Pseudo */
18
+ .codehilite .kr { color: #0000ff } /* Keyword.Reserved */
19
+ .codehilite .kt { color: #2b91af } /* Keyword.Type */
20
+ .codehilite .s { color: #a31515 } /* Literal.String */
21
+ .codehilite .nc { color: #2b91af } /* Name.Class */
22
+ .codehilite .ow { color: #0000ff } /* Operator.Word */
23
+ .codehilite .sb { color: #a31515 } /* Literal.String.Backtick */
24
+ .codehilite .sc { color: #a31515 } /* Literal.String.Char */
25
+ .codehilite .sd { color: #a31515 } /* Literal.String.Doc */
26
+ .codehilite .s2 { color: #a31515 } /* Literal.String.Double */
27
+ .codehilite .se { color: #a31515 } /* Literal.String.Escape */
28
+ .codehilite .sh { color: #a31515 } /* Literal.String.Heredoc */
29
+ .codehilite .si { color: #a31515 } /* Literal.String.Interpol */
30
+ .codehilite .sx { color: #a31515 } /* Literal.String.Other */
31
+ .codehilite .sr { color: #a31515 } /* Literal.String.Regex */
32
+ .codehilite .s1 { color: #a31515 } /* Literal.String.Single */
33
+ .codehilite .ss { color: #a31515 } /* Literal.String.Symbol */
@@ -0,0 +1 @@
1
+ .codehilite code,.codehilite pre{color:#fdce93;background-color:#3f3f3f}.codehilite .hll{background-color:#222}.codehilite .c{color:#7f9f7f}.codehilite .err{color:#e37170;background-color:#3d3535}.codehilite .g{color:#7f9f7f}.codehilite .k{color:#f0dfaf}.codehilite .l{color:#ccc}.codehilite .n{color:#dcdccc}.codehilite .o{color:#f0efd0}.codehilite .x{color:#ccc}.codehilite .p{color:#41706f}.codehilite .cm{color:#7f9f7f}.codehilite .cp{color:#7f9f7f}.codehilite .c1{color:#7f9f7f}.codehilite .cs{color:#cd0000;font-weight:bold}.codehilite .gd{color:#cd0000}.codehilite .ge{color:#ccc;font-style:italic}.codehilite .gr{color:red}.codehilite .gh{color:#dcdccc;font-weight:bold}.codehilite .gi{color:#00cd00}.codehilite .go{color:gray}.codehilite .gp{color:#dcdccc;font-weight:bold}.codehilite .gs{color:#ccc;font-weight:bold}.codehilite .gu{color:purple;font-weight:bold}.codehilite .gt{color:#0040D0}.codehilite .kc{color:#dca3a3}.codehilite .kd{color:#ffff86}.codehilite .kn{color:#dfaf8f;font-weight:bold}.codehilite .kp{color:#cdcf99}.codehilite .kr{color:#cdcd00}.codehilite .kt{color:#00cd00}.codehilite .ld{color:#cc9393}.codehilite .m{color:#8cd0d3}.codehilite .s{color:#cc9393}.codehilite .na{color:#9ac39f}.codehilite .nb{color:#efef8f}.codehilite .nc{color:#efef8f}.codehilite .no{color:#ccc}.codehilite .nd{color:#ccc}.codehilite .ni{color:#c28182}.codehilite .ne{color:#c3bf9f;font-weight:bold}.codehilite .nf{color:#efef8f}.codehilite .nl{color:#ccc}.codehilite .nn{color:#8fbede}.codehilite .nx{color:#ccc}.codehilite .py{color:#ccc}.codehilite .nt{color:#9ac39f}.codehilite .nv{color:#dcdccc}.codehilite .ow{color:#f0efd0}.codehilite .w{color:#ccc}.codehilite .mf{color:#8cd0d3}.codehilite .mh{color:#8cd0d3}.codehilite .mi{color:#8cd0d3}.codehilite .mo{color:#8cd0d3}.codehilite .sb{color:#cc9393}.codehilite .sc{color:#cc9393}.codehilite .sd{color:#cc9393}.codehilite .s2{color:#cc9393}.codehilite .se{color:#cc9393}.codehilite .sh{color:#cc9393}.codehilite .si{color:#cc9393}.codehilite .sx{color:#cc9393}.codehilite .sr{color:#cc9393}.codehilite .s1{color:#cc9393}.codehilite .ss{color:#cc9393}.codehilite .bp{color:#efef8f}.codehilite .vc{color:#efef8f}.codehilite .vg{color:#dcdccc}.codehilite .vi{color:#ffffc7}.codehilite .il{color:#8cd0d3}
@@ -0,0 +1,3 @@
1
+ module Hashup
2
+ VERSION = "0.0.5"
3
+ end
@@ -0,0 +1,11 @@
1
+ require_relative 'spec_helper'
2
+ require 'fileutils'
3
+
4
+ describe Hashup::Generator, "setup site" do
5
+ it "creates the static sites layout structure" do
6
+ generator = Hashup::Generator.new
7
+ generator.setup "test_project"
8
+ (Dir.exists? "test_project").should == true
9
+ FileUtils.rm_rf 'test_project'
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ require_relative 'spec_helper'
2
+
3
+ describe Hashup::Site, "index template" do
4
+ it "creates a slim template for site index" do
5
+ Dir.chdir("lib/hashup/templates")
6
+ site = Hashup::Site.new
7
+ site.configs.should_not == nil
8
+ end
9
+
10
+
11
+ end
12
+
@@ -0,0 +1,9 @@
1
+ require 'rspec'
2
+ require_relative '../lib/hashup'
3
+
4
+ RSpec.configure do |config|
5
+ config.color_enabled = true
6
+ config.formatter = 'documentation'
7
+ end
8
+
9
+
metadata ADDED
@@ -0,0 +1,310 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hashup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.5
5
+ platform: ruby
6
+ authors:
7
+ - krazy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: markascend
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pygments
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: tilt
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: slim
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: yet another static sites generator
112
+ email:
113
+ - lixiangstar@gmail.com
114
+ executables:
115
+ - hashup
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - .gitignore
120
+ - Gemfile
121
+ - LICENSE.txt
122
+ - README.md
123
+ - Rakefile
124
+ - bin/hashup
125
+ - hashup.gemspec
126
+ - lib/hashup.rb
127
+ - lib/hashup/configuration.rb
128
+ - lib/hashup/generator.rb
129
+ - lib/hashup/post.rb
130
+ - lib/hashup/site.rb
131
+ - lib/hashup/templates/config.yml
132
+ - lib/hashup/templates/contents/_pages/about.ma
133
+ - lib/hashup/templates/contents/_posts/markascend.ma
134
+ - lib/hashup/templates/contents/data.yml
135
+ - lib/hashup/templates/themes/_layout/_footer.slim
136
+ - lib/hashup/templates/themes/_layout/_header.slim
137
+ - lib/hashup/templates/themes/_layout/_layout.slim
138
+ - lib/hashup/templates/themes/_layout/_nav.slim
139
+ - lib/hashup/templates/themes/assets/flat-ui/_config.sass
140
+ - lib/hashup/templates/themes/assets/flat-ui/_icon-font-24.sass
141
+ - lib/hashup/templates/themes/assets/flat-ui/_icon-font.sass
142
+ - lib/hashup/templates/themes/assets/flat-ui/_mixins.sass
143
+ - lib/hashup/templates/themes/assets/flat-ui/_spaces.sass
144
+ - lib/hashup/templates/themes/assets/flat-ui/flat-ui.sass
145
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_btn.sass
146
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_checkbox-and-radio.sass
147
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_demo.sass
148
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_footer.sass
149
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_input.sass
150
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_login.sass
151
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_navbar.sass
152
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_pager.sass
153
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_pagination.sass
154
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_palette.sass
155
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_progress.sass
156
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_select.sass
157
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_share.sass
158
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_tagsinput.sass
159
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_tile.sass
160
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_todo.sass
161
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_toggle.sass
162
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_tooltip.sass
163
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_type.sass
164
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_ui-slider.sass
165
+ - lib/hashup/templates/themes/assets/flat-ui/modules/_video.sass
166
+ - lib/hashup/templates/themes/index.slim
167
+ - lib/hashup/templates/themes/post.slim
168
+ - lib/hashup/templates/themes/static/css/bootstrap.css
169
+ - lib/hashup/templates/themes/static/css/custom.css
170
+ - lib/hashup/templates/themes/static/css/flat-ui.css
171
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.dev.svg
172
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.eot
173
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.svg
174
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.ttf
175
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.woff
176
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.dev.svg
177
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.eot
178
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.svg
179
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.ttf
180
+ - lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.woff
181
+ - lib/hashup/templates/themes/static/images/checkbox-2x.png
182
+ - lib/hashup/templates/themes/static/images/checkbox.png
183
+ - lib/hashup/templates/themes/static/images/demo/browser-2x.png
184
+ - lib/hashup/templates/themes/static/images/demo/browser-author.jpg
185
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-1.jpg
186
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-2.jpg
187
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-3.jpg
188
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-4.jpg
189
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-5.jpg
190
+ - lib/hashup/templates/themes/static/images/demo/browser-pic-6.jpg
191
+ - lib/hashup/templates/themes/static/images/demo/browser.png
192
+ - lib/hashup/templates/themes/static/images/demo/html-icon.png
193
+ - lib/hashup/templates/themes/static/images/demo/logo-mask-2x.png
194
+ - lib/hashup/templates/themes/static/images/demo/logo-mask.png
195
+ - lib/hashup/templates/themes/static/images/demo/video.jpg
196
+ - lib/hashup/templates/themes/static/images/favicon.ico
197
+ - lib/hashup/templates/themes/static/images/footer/logo.png
198
+ - lib/hashup/templates/themes/static/images/illustrations/bag.png
199
+ - lib/hashup/templates/themes/static/images/illustrations/book.png
200
+ - lib/hashup/templates/themes/static/images/illustrations/calendar.png
201
+ - lib/hashup/templates/themes/static/images/illustrations/clipboard.png
202
+ - lib/hashup/templates/themes/static/images/illustrations/colors.png
203
+ - lib/hashup/templates/themes/static/images/illustrations/compass.png
204
+ - lib/hashup/templates/themes/static/images/illustrations/gift.png
205
+ - lib/hashup/templates/themes/static/images/illustrations/infinity.png
206
+ - lib/hashup/templates/themes/static/images/illustrations/mail.png
207
+ - lib/hashup/templates/themes/static/images/illustrations/map.png
208
+ - lib/hashup/templates/themes/static/images/illustrations/paper.png
209
+ - lib/hashup/templates/themes/static/images/illustrations/retina.png
210
+ - lib/hashup/templates/themes/static/images/illustrations/share.png
211
+ - lib/hashup/templates/themes/static/images/illustrations/time.png
212
+ - lib/hashup/templates/themes/static/images/login/icon.png
213
+ - lib/hashup/templates/themes/static/images/login/imac-2x.png
214
+ - lib/hashup/templates/themes/static/images/login/imac.png
215
+ - lib/hashup/templates/themes/static/images/pager/next.png
216
+ - lib/hashup/templates/themes/static/images/pager/previous.png
217
+ - lib/hashup/templates/themes/static/images/radio-2x.png
218
+ - lib/hashup/templates/themes/static/images/radio.png
219
+ - lib/hashup/templates/themes/static/images/select/toggle.png
220
+ - lib/hashup/templates/themes/static/images/tile/ribbon-2x.png
221
+ - lib/hashup/templates/themes/static/images/tile/ribbon.png
222
+ - lib/hashup/templates/themes/static/images/todo/done-2x.png
223
+ - lib/hashup/templates/themes/static/images/todo/done.png
224
+ - lib/hashup/templates/themes/static/images/todo/search-2x.png
225
+ - lib/hashup/templates/themes/static/images/todo/search.png
226
+ - lib/hashup/templates/themes/static/images/todo/todo-2x.png
227
+ - lib/hashup/templates/themes/static/images/todo/todo.png
228
+ - lib/hashup/templates/themes/static/images/toggle/block-off.png
229
+ - lib/hashup/templates/themes/static/images/toggle/block-on.png
230
+ - lib/hashup/templates/themes/static/images/toggle/icon-off-2x.png
231
+ - lib/hashup/templates/themes/static/images/toggle/icon-off.png
232
+ - lib/hashup/templates/themes/static/images/toggle/icon-on-2x.png
233
+ - lib/hashup/templates/themes/static/images/toggle/icon-on.png
234
+ - lib/hashup/templates/themes/static/images/video/fullscreen-2x.png
235
+ - lib/hashup/templates/themes/static/images/video/fullscreen.png
236
+ - lib/hashup/templates/themes/static/images/video/pause-2x.png
237
+ - lib/hashup/templates/themes/static/images/video/pause.png
238
+ - lib/hashup/templates/themes/static/images/video/play-2x.png
239
+ - lib/hashup/templates/themes/static/images/video/play.png
240
+ - lib/hashup/templates/themes/static/images/video/poster.jpg
241
+ - lib/hashup/templates/themes/static/images/video/volume-full-2x.png
242
+ - lib/hashup/templates/themes/static/images/video/volume-full.png
243
+ - lib/hashup/templates/themes/static/images/video/volume-off-2x.png
244
+ - lib/hashup/templates/themes/static/images/video/volume-off.png
245
+ - lib/hashup/templates/themes/static/js/application.js
246
+ - lib/hashup/templates/themes/static/js/bootstrap-tooltip.js
247
+ - lib/hashup/templates/themes/static/js/custom_checkbox_and_radio.js
248
+ - lib/hashup/templates/themes/static/js/custom_radio.js
249
+ - lib/hashup/templates/themes/static/js/html5shiv.js
250
+ - lib/hashup/templates/themes/static/js/icon-font-ie7.js
251
+ - lib/hashup/templates/themes/static/js/jquery-1.8.2.min.js
252
+ - lib/hashup/templates/themes/static/js/jquery-ui-1.10.0.custom.min.js
253
+ - lib/hashup/templates/themes/static/js/jquery.dropkick-1.0.0.js
254
+ - lib/hashup/templates/themes/static/js/jquery.placeholder.js
255
+ - lib/hashup/templates/themes/static/js/jquery.tagsinput.js
256
+ - lib/hashup/templates/themes/static/js/lte-ie7-24.js
257
+ - lib/hashup/templates/themes/static/pygments-css/README.rst
258
+ - lib/hashup/templates/themes/static/pygments-css/autumn.css
259
+ - lib/hashup/templates/themes/static/pygments-css/borland.css
260
+ - lib/hashup/templates/themes/static/pygments-css/bw.css
261
+ - lib/hashup/templates/themes/static/pygments-css/colorful.css
262
+ - lib/hashup/templates/themes/static/pygments-css/default.css
263
+ - lib/hashup/templates/themes/static/pygments-css/emacs.css
264
+ - lib/hashup/templates/themes/static/pygments-css/friendly.css
265
+ - lib/hashup/templates/themes/static/pygments-css/fruity.css
266
+ - lib/hashup/templates/themes/static/pygments-css/github.css
267
+ - lib/hashup/templates/themes/static/pygments-css/manni.css
268
+ - lib/hashup/templates/themes/static/pygments-css/monokai.css
269
+ - lib/hashup/templates/themes/static/pygments-css/murphy.css
270
+ - lib/hashup/templates/themes/static/pygments-css/native.css
271
+ - lib/hashup/templates/themes/static/pygments-css/pastie.css
272
+ - lib/hashup/templates/themes/static/pygments-css/perldoc.css
273
+ - lib/hashup/templates/themes/static/pygments-css/tango.css
274
+ - lib/hashup/templates/themes/static/pygments-css/trac.css
275
+ - lib/hashup/templates/themes/static/pygments-css/vim.css
276
+ - lib/hashup/templates/themes/static/pygments-css/vs.css
277
+ - lib/hashup/templates/themes/static/pygments-css/zenburn.css
278
+ - lib/hashup/templates/themes/stylesheets/style.css
279
+ - lib/hashup/version.rb
280
+ - spec/generator_spec.rb
281
+ - spec/hashup_spec.rb
282
+ - spec/spec_helper.rb
283
+ homepage: http://github.io/krazylee
284
+ licenses:
285
+ - MIT
286
+ metadata: {}
287
+ post_install_message:
288
+ rdoc_options: []
289
+ require_paths:
290
+ - lib
291
+ required_ruby_version: !ruby/object:Gem::Requirement
292
+ requirements:
293
+ - - '>='
294
+ - !ruby/object:Gem::Version
295
+ version: '0'
296
+ required_rubygems_version: !ruby/object:Gem::Requirement
297
+ requirements:
298
+ - - '>='
299
+ - !ruby/object:Gem::Version
300
+ version: '0'
301
+ requirements: []
302
+ rubyforge_project:
303
+ rubygems_version: 2.0.3
304
+ signing_key:
305
+ specification_version: 4
306
+ summary: a generator
307
+ test_files:
308
+ - spec/generator_spec.rb
309
+ - spec/hashup_spec.rb
310
+ - spec/spec_helper.rb