hoe-manns 1.0.0

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 (67) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/.autotest +25 -0
  4. data/.gemnasium.yml +5 -0
  5. data/.idea/hoe-manns.iml +91 -0
  6. data/.idea/misc.xml +14 -0
  7. data/.idea/modules.xml +8 -0
  8. data/.idea/vcs.xml +6 -0
  9. data/.idea/workspace.xml +795 -0
  10. data/.index +173 -0
  11. data/.rspec +2 -0
  12. data/.rubocop.yml +39 -0
  13. data/.scrutinizer.yml +17 -0
  14. data/.travis.yml +28 -0
  15. data/CODE_OF_CONDUCT.md +17 -0
  16. data/CONTRIBUTING.md +33 -0
  17. data/Gemfile +37 -0
  18. data/Gemfile.lock +186 -0
  19. data/History.rdoc +7 -0
  20. data/LICENSE.rdoc +24 -0
  21. data/Manifest.txt +62 -0
  22. data/README.rdoc +114 -0
  23. data/Rakefile +104 -0
  24. data/VERSION +1 -0
  25. data/config.reek +111 -0
  26. data/etc/hoe-manns.cfg +1 -0
  27. data/lib/hoe/manns.rb +128 -0
  28. data/manual/layouts/default.erb +87 -0
  29. data/manual/lib/api-filter.rb +96 -0
  30. data/manual/lib/editorial-filter.rb +59 -0
  31. data/manual/lib/examples-filter.rb +230 -0
  32. data/manual/lib/links-filter.rb +111 -0
  33. data/manual/resources/css/manual.css +764 -0
  34. data/manual/resources/css/reset.css +112 -0
  35. data/manual/resources/fonts/GraublauWeb.otf +0 -0
  36. data/manual/resources/fonts/GraublauWebBold.otf +0 -0
  37. data/manual/resources/fonts/Inconsolata.otf +0 -0
  38. data/manual/resources/images/arrow_225_small.png +0 -0
  39. data/manual/resources/images/arrow_315_small.png +0 -0
  40. data/manual/resources/images/arrow_skip.png +0 -0
  41. data/manual/resources/images/cc-by.png +0 -0
  42. data/manual/resources/images/dialog-error.png +0 -0
  43. data/manual/resources/images/dialog-information.png +0 -0
  44. data/manual/resources/images/dialog-warning.png +0 -0
  45. data/manual/resources/images/emblem-important.png +0 -0
  46. data/manual/resources/images/help.png +0 -0
  47. data/manual/resources/images/information.png +0 -0
  48. data/manual/resources/images/magnifier.png +0 -0
  49. data/manual/resources/images/magnifier_left.png +0 -0
  50. data/manual/resources/images/page_white_code.png +0 -0
  51. data/manual/resources/images/page_white_copy.png +0 -0
  52. data/manual/resources/images/printer.png +0 -0
  53. data/manual/resources/images/question.png +0 -0
  54. data/manual/resources/images/scripts_code.png +0 -0
  55. data/manual/resources/images/wrap.png +0 -0
  56. data/manual/resources/images/wrapping.png +0 -0
  57. data/manual/resources/js/jquery-1.4.4.min.js +167 -0
  58. data/manual/resources/js/manual.js +30 -0
  59. data/manual/resources/js/sh.js +580 -0
  60. data/manual/resources/swf/clipboard.swf +0 -0
  61. data/manual/src/apidocs.page +17 -0
  62. data/manual/src/index.page +70 -0
  63. data/test/manns_spec.rb +54 -0
  64. data/test/spec_helper.rb +16 -0
  65. data.tar.gz.sig +0 -0
  66. metadata +542 -0
  67. metadata.gz.sig +0 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 96ef65f723bfb50b82992bfa963ae1aa77dbd380
4
+ data.tar.gz: d2aa269b906a22f0a4fa2dbfcd84706b27a23b83
5
+ SHA512:
6
+ metadata.gz: c0a63084d9e5bdffb35a65e207c33f8e64ef2c1f24f3d8d418b9798528b82c8a6bf6f9b050a9516dfc5444b702e48c3243f8608c72ae4408c3047dfd78bc7dbe
7
+ data.tar.gz: 657abbdbb75f1ccb94907841100369709d5c7eb568c251c4104dfea6037583aca5a579c20cbc9693c1d2a287e84033e39b708424c08b026da0209dce903bffb5
checksums.yaml.gz.sig ADDED
Binary file
data/.autotest ADDED
@@ -0,0 +1,25 @@
1
+ # -*- ruby -*-
2
+
3
+ require "autotest/restart"
4
+
5
+ # Autotest.add_hook :initialize do |at|
6
+ # at.testlib = "minitest/unit"
7
+ #
8
+ # at.extra_files << "../some/external/dependency.rb"
9
+ #
10
+ # at.libs << ":../some/external"
11
+ #
12
+ # at.add_exception "vendor"
13
+ #
14
+ # at.add_mapping(/dependency.rb/) do |f, _|
15
+ # at.files_matching(/test_.*rb$/)
16
+ # end
17
+ #
18
+ # %w(TestA TestB).each do |klass|
19
+ # at.extra_class_map[klass] = "test/test_misc.rb"
20
+ # end
21
+ # end
22
+
23
+ # Autotest.add_hook :run_command do |at|
24
+ # system "rake build"
25
+ # end
data/.gemnasium.yml ADDED
@@ -0,0 +1,5 @@
1
+ # api_endpoint: http://private-77f5-gemnasium.apiary-mock.com
2
+ api_key: 0f4473f5825f325227eb7a3a9a3425af # You personal (secret) API key. Get it at https://gemnasium.com/settings/api_access
3
+ project_name: hoe-manns # A name to remember your project.
4
+ project_slug: saigkill/hoe-manns # Unique slug for this project. Get it on the "project settings" page.
5
+ project_branch: master # /!\ If you don't use git, remove this line
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="FacetManager">
4
+ <facet type="gem" name="Gem">
5
+ <configuration>
6
+ <option name="GEM_APP_ROOT_PATH" value="" />
7
+ <option name="GEM_APP_TEST_PATH" value="" />
8
+ <option name="GEM_APP_LIB_PATH" value="" />
9
+ </configuration>
10
+ </facet>
11
+ </component>
12
+ <component name="NewModuleRootManager">
13
+ <content url="file://$MODULE_DIR$" />
14
+ <orderEntry type="jdk" jdkName="RVM: ruby-2.2.3" jdkType="RUBY_SDK" />
15
+ <orderEntry type="sourceFolder" forTests="false" />
16
+ <orderEntry type="library" scope="PROVIDED" name="RedCloth (v4.2.9, RVM: ruby-2.2.3) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="RubyInline (v3.12.4, RVM: ruby-2.2.3) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="ZenTest (v4.11.0, RVM: ruby-2.2.3) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="abstract_type (v0.0.7, RVM: ruby-2.2.3) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="adamantium (v0.2.0, RVM: ruby-2.2.3) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="ast (v2.1.0, RVM: ruby-2.2.3) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="astrolabe (v1.3.1, RVM: ruby-2.2.3) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v1.10.6, RVM: ruby-2.2.3) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="concord (v0.1.5, RVM: ruby-2.2.3) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="coveralls (v0.8.2, RVM: ruby-2.2.3) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, RVM: ruby-2.2.3) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="docile (v1.1.5, RVM: ruby-2.2.3) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.24, RVM: ruby-2.2.3) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="equalizer (v0.0.11, RVM: ruby-2.2.3) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="gem-release (v0.7.4, RVM: ruby-2.2.3) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="hashr (v0.0.22, RVM: ruby-2.2.3) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="highline (v1.7.7, RVM: ruby-2.2.3) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="hoe (v3.14.2, RVM: ruby-2.2.3) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="hoe-bundler (v1.2.0, RVM: ruby-2.2.3) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="hoe-deveiate (v0.7.0, RVM: ruby-2.2.3) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="hoe-doofus (v1.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="hoe-gemspec (v1.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="hoe-git (v1.6.0, RVM: ruby-2.2.3) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="hoe-highline (v0.2.1, RVM: ruby-2.2.3) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="hoe-manifest (v0.1.0, RVM: ruby-2.2.3) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="hoe-manns (v1.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
42
+ <orderEntry type="library" scope="PROVIDED" name="hoe-manualgen (v0.3.0, RVM: ruby-2.2.3) [gem]" level="application" />
43
+ <orderEntry type="library" scope="PROVIDED" name="hoe-mercurial (v1.4.1, RVM: ruby-2.2.3) [gem]" level="application" />
44
+ <orderEntry type="library" scope="PROVIDED" name="hoe-reek (v1.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
45
+ <orderEntry type="library" scope="PROVIDED" name="hoe-rubocop (v0.1.1, RVM: ruby-2.2.3) [gem]" level="application" />
46
+ <orderEntry type="library" scope="PROVIDED" name="hoe-rubygems (v1.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
47
+ <orderEntry type="library" scope="PROVIDED" name="hoe-seattlerb (v1.3.4, RVM: ruby-2.2.3) [gem]" level="application" />
48
+ <orderEntry type="library" scope="PROVIDED" name="hoe-travis (v1.2, RVM: ruby-2.2.3) [gem]" level="application" />
49
+ <orderEntry type="library" scope="PROVIDED" name="hoe-version (v1.2.0, RVM: ruby-2.2.3) [gem]" level="application" />
50
+ <orderEntry type="library" scope="PROVIDED" name="hoe-yard (v0.1.2, RVM: ruby-2.2.3) [gem]" level="application" />
51
+ <orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.2, RVM: ruby-2.2.3) [gem]" level="application" />
52
+ <orderEntry type="library" scope="PROVIDED" name="ice_nine (v0.11.1, RVM: ruby-2.2.3) [gem]" level="application" />
53
+ <orderEntry type="library" scope="PROVIDED" name="indexer (v0.3.1, RVM: ruby-2.2.3) [gem]" level="application" />
54
+ <orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, RVM: ruby-2.2.3) [gem]" level="application" />
55
+ <orderEntry type="library" scope="PROVIDED" name="mail (v2.6.3, RVM: ruby-2.2.3) [gem]" level="application" />
56
+ <orderEntry type="library" scope="PROVIDED" name="memoizable (v0.4.2, RVM: ruby-2.2.3) [gem]" level="application" />
57
+ <orderEntry type="library" scope="PROVIDED" name="mime-types (v2.6.2, RVM: ruby-2.2.3) [gem]" level="application" />
58
+ <orderEntry type="library" scope="PROVIDED" name="netrc (v0.10.3, RVM: ruby-2.2.3) [gem]" level="application" />
59
+ <orderEntry type="library" scope="PROVIDED" name="parseconfig (v1.0.6, RVM: ruby-2.2.3) [gem]" level="application" />
60
+ <orderEntry type="library" scope="PROVIDED" name="parser (v2.2.2.6, RVM: ruby-2.2.3) [gem]" level="application" />
61
+ <orderEntry type="library" scope="PROVIDED" name="powerpack (v0.1.1, RVM: ruby-2.2.3) [gem]" level="application" />
62
+ <orderEntry type="library" scope="PROVIDED" name="private_attr (v1.1.0, RVM: ruby-2.2.3) [gem]" level="application" />
63
+ <orderEntry type="library" scope="PROVIDED" name="procto (v0.0.2, RVM: ruby-2.2.3) [gem]" level="application" />
64
+ <orderEntry type="library" scope="PROVIDED" name="rainbow (v2.0.0, RVM: ruby-2.2.3) [gem]" level="application" />
65
+ <orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.2.3) [gem]" level="application" />
66
+ <orderEntry type="library" scope="PROVIDED" name="rcodetools (v0.8.5.0, RVM: ruby-2.2.3) [gem]" level="application" />
67
+ <orderEntry type="library" scope="PROVIDED" name="rdoc (v4.2.0, RVM: ruby-2.2.3) [gem]" level="application" />
68
+ <orderEntry type="library" scope="PROVIDED" name="reek (v3.5.0, RVM: ruby-2.2.3) [gem]" level="application" />
69
+ <orderEntry type="library" scope="PROVIDED" name="rest-client (v1.8.0, RVM: ruby-2.2.3) [gem]" level="application" />
70
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.3.0, RVM: ruby-2.2.3) [gem]" level="application" />
71
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.3.2, RVM: ruby-2.2.3) [gem]" level="application" />
72
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.3.1, RVM: ruby-2.2.3) [gem]" level="application" />
73
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.3.2, RVM: ruby-2.2.3) [gem]" level="application" />
74
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.3.0, RVM: ruby-2.2.3) [gem]" level="application" />
75
+ <orderEntry type="library" scope="PROVIDED" name="rubocop (v0.34.2, RVM: ruby-2.2.3) [gem]" level="application" />
76
+ <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.7.5, RVM: ruby-2.2.3) [gem]" level="application" />
77
+ <orderEntry type="library" scope="PROVIDED" name="safe_yaml (v0.9.7, RVM: ruby-2.2.3) [gem]" level="application" />
78
+ <orderEntry type="library" scope="PROVIDED" name="setup (v5.2.0, RVM: ruby-2.2.3) [gem]" level="application" />
79
+ <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.10.0, RVM: ruby-2.2.3) [gem]" level="application" />
80
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.10.0, RVM: ruby-2.2.3) [gem]" level="application" />
81
+ <orderEntry type="library" scope="PROVIDED" name="term-ansicolor (v1.3.2, RVM: ruby-2.2.3) [gem]" level="application" />
82
+ <orderEntry type="library" scope="PROVIDED" name="thor (v0.19.1, RVM: ruby-2.2.3) [gem]" level="application" />
83
+ <orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, RVM: ruby-2.2.3) [gem]" level="application" />
84
+ <orderEntry type="library" scope="PROVIDED" name="tins (v1.6.0, RVM: ruby-2.2.3) [gem]" level="application" />
85
+ <orderEntry type="library" scope="PROVIDED" name="travis-lint (v1.8.0, RVM: ruby-2.2.3) [gem]" level="application" />
86
+ <orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, RVM: ruby-2.2.3) [gem]" level="application" />
87
+ <orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.1, RVM: ruby-2.2.3) [gem]" level="application" />
88
+ <orderEntry type="library" scope="PROVIDED" name="unparser (v0.2.4, RVM: ruby-2.2.3) [gem]" level="application" />
89
+ <orderEntry type="library" scope="PROVIDED" name="yard (v0.8.7.6, RVM: ruby-2.2.3) [gem]" level="application" />
90
+ </component>
91
+ </module>
data/.idea/misc.xml ADDED
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectLevelVcsManager" settingsEditedManually="false">
4
+ <OptionsSetting value="true" id="Add" />
5
+ <OptionsSetting value="true" id="Remove" />
6
+ <OptionsSetting value="true" id="Checkout" />
7
+ <OptionsSetting value="true" id="Update" />
8
+ <OptionsSetting value="true" id="Status" />
9
+ <OptionsSetting value="true" id="Edit" />
10
+ <ConfirmationsSetting value="0" id="Add" />
11
+ <ConfirmationsSetting value="0" id="Remove" />
12
+ </component>
13
+ <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.2.1" project-jdk-type="RUBY_SDK" />
14
+ </project>
data/.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/hoe-manns.iml" filepath="$PROJECT_DIR$/.idea/hoe-manns.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>