hoe-manns 1.0.1 → 1.0.2

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 (58) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.codeclimate.yml +8 -0
  4. data/.coveralls.yml +2 -0
  5. data/.index +7 -15
  6. data/CONTRIBUTING.md +2 -2
  7. data/Gemfile +0 -2
  8. data/Gemfile.lock +2 -11
  9. data/History.rdoc +7 -1
  10. data/Manifest.txt +3 -40
  11. data/README.rdoc +8 -12
  12. data/Rakefile +13 -15
  13. data/VERSION +1 -1
  14. data/data/hoe-manns/rubygems.png +0 -0
  15. data/lib/hoe/manns.rb +12 -2
  16. data.tar.gz.sig +0 -0
  17. metadata +6 -72
  18. metadata.gz.sig +0 -0
  19. data/.idea/hoe-manns.iml +0 -93
  20. data/.idea/misc.xml +0 -14
  21. data/.idea/modules.xml +0 -8
  22. data/.idea/vcs.xml +0 -6
  23. data/.idea/workspace.xml +0 -948
  24. data/manual/layouts/default.erb +0 -87
  25. data/manual/lib/api-filter.rb +0 -96
  26. data/manual/lib/editorial-filter.rb +0 -59
  27. data/manual/lib/examples-filter.rb +0 -230
  28. data/manual/lib/links-filter.rb +0 -111
  29. data/manual/resources/css/manual.css +0 -764
  30. data/manual/resources/css/reset.css +0 -112
  31. data/manual/resources/fonts/GraublauWeb.otf +0 -0
  32. data/manual/resources/fonts/GraublauWebBold.otf +0 -0
  33. data/manual/resources/fonts/Inconsolata.otf +0 -0
  34. data/manual/resources/images/arrow_225_small.png +0 -0
  35. data/manual/resources/images/arrow_315_small.png +0 -0
  36. data/manual/resources/images/arrow_skip.png +0 -0
  37. data/manual/resources/images/cc-by.png +0 -0
  38. data/manual/resources/images/dialog-error.png +0 -0
  39. data/manual/resources/images/dialog-information.png +0 -0
  40. data/manual/resources/images/dialog-warning.png +0 -0
  41. data/manual/resources/images/emblem-important.png +0 -0
  42. data/manual/resources/images/help.png +0 -0
  43. data/manual/resources/images/information.png +0 -0
  44. data/manual/resources/images/magnifier.png +0 -0
  45. data/manual/resources/images/magnifier_left.png +0 -0
  46. data/manual/resources/images/page_white_code.png +0 -0
  47. data/manual/resources/images/page_white_copy.png +0 -0
  48. data/manual/resources/images/printer.png +0 -0
  49. data/manual/resources/images/question.png +0 -0
  50. data/manual/resources/images/scripts_code.png +0 -0
  51. data/manual/resources/images/wrap.png +0 -0
  52. data/manual/resources/images/wrapping.png +0 -0
  53. data/manual/resources/js/jquery-1.4.4.min.js +0 -167
  54. data/manual/resources/js/manual.js +0 -30
  55. data/manual/resources/js/sh.js +0 -580
  56. data/manual/resources/swf/clipboard.swf +0 -0
  57. data/manual/src/apidocs.page +0 -17
  58. data/manual/src/index.page +0 -71
@@ -1,71 +0,0 @@
1
- ---
2
- title: Introduction
3
- layout: default
4
- tagline: A small collection of rake tasks for hoe
5
- index: 1
6
- filters:
7
- - erb
8
- - links
9
- - examples
10
- - textile
11
- ---
12
-
13
- h2. <%= page.config['title'] %>
14
-
15
- <div id="auto-toc"></div>
16
-
17
- This is a manual for hoe-manns. In this collection i excluded some code which i using all around my projects. But
18
- what exactly happens?
19
-
20
- * update_gemfile_lock does a simple "bundler update" which recreates the Gemfile.lock
21
- * remove_pre_gemspec removes the gemfile what could be present from earlier tests
22
- * update_workspace checks the stuff in. So you can make rake release on a clean base
23
- * update_index runs a "index --using VERSION Index.yml". If you are using indexer (Metadata creator) from Rubyworks
24
- you can use that task for running an update. You have to update the version number in the VERSION file manually!
25
- Actually i haven't any idea, how to do that automatically.
26
- * clean_pkg cleans up your pkg directory
27
- * update_manuals copies the manual folder to your docpath. The task asks you for your project name. The docpath will be set in USER/.hoe-manns/hoe-manns.cfg. Let me say you have a project "dummy" and you place your docs in /your/path/docs the manuals will be shown under /your/path/docs/dummy/. There you have your index.html and the resources.
28
- * run_before_release runs the Rake tasks: "git-manifest", "bundler:gemfile", "update_gemfile_lock", "update_index",
29
- "remove_pre_gemspec" and "update_workspace" before the release.
30
- * run_after_release runs the Rake tasks "send_email" and "version:bump" after release.
31
-
32
-
33
- h3. Authors
34
-
35
- * Sascha Manns
36
-
37
-
38
- h3. License
39
-
40
- Copyright © 2015, Sascha Manns <samannsml@directbox.com>
41
- All rights reserved.
42
-
43
- Redistribution and use in source and binary forms, with or without modification, are
44
- permitted provided that the following conditions are met:
45
-
46
- * Redistributions of source code must retain the above copyright notice, this list of
47
- conditions and the following disclaimer.
48
- * Redistributions in binary form must reproduce the above copyright notice, this list of
49
- conditions and the following disclaimer in the documentation and/or other materials
50
- provided with the distribution.
51
- * Neither the name of the authors nor contributors may be used to endorse or promote products
52
- derived from this software without specific prior written permission.
53
-
54
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
55
- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
56
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
57
- COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
58
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
59
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
61
- TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
62
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63
-
64
- <div id="cc-license">
65
- <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">
66
- !http://i.creativecommons.org/l/by/3.0/88x31.png(Creative Commons License)!
67
- </a><br/>
68
- The content of this manual, including images, video, and any example source code is
69
- licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative
70
- Commons Attribution 3.0 License</a>.
71
- </div>