hookapp 2.0.7 → 2.0.8

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 (66) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHORS.md +4 -0
  3. data/CHANGELOG.md +5 -0
  4. data/LICENSE +21 -0
  5. data/README.md +31 -21
  6. data/bin/hook +57 -67
  7. data/hook.rdoc +15 -10
  8. data/html/App.html +107 -0
  9. data/html/GLI/Commands/Doc.html +91 -0
  10. data/html/GLI/Commands/MarkdownDocumentListener.html +521 -0
  11. data/html/GLI/Commands.html +91 -0
  12. data/html/GLI.html +91 -0
  13. data/html/Hook.html +100 -0
  14. data/html/HookApp.html +1002 -0
  15. data/html/Hooker.html +141 -0
  16. data/html/README_rdoc.html +354 -0
  17. data/html/String.html +335 -0
  18. data/html/created.rid +9 -0
  19. data/html/css/fonts.css +167 -0
  20. data/html/css/rdoc.css +639 -0
  21. data/html/fonts/Lato-Light.ttf +0 -0
  22. data/html/fonts/Lato-LightItalic.ttf +0 -0
  23. data/html/fonts/Lato-Regular.ttf +0 -0
  24. data/html/fonts/Lato-RegularItalic.ttf +0 -0
  25. data/html/fonts/SourceCodePro-Bold.ttf +0 -0
  26. data/html/fonts/SourceCodePro-Regular.ttf +0 -0
  27. data/html/images/add.png +0 -0
  28. data/html/images/arrow_up.png +0 -0
  29. data/html/images/brick.png +0 -0
  30. data/html/images/brick_link.png +0 -0
  31. data/html/images/bug.png +0 -0
  32. data/html/images/bullet_black.png +0 -0
  33. data/html/images/bullet_toggle_minus.png +0 -0
  34. data/html/images/bullet_toggle_plus.png +0 -0
  35. data/html/images/date.png +0 -0
  36. data/html/images/delete.png +0 -0
  37. data/html/images/find.png +0 -0
  38. data/html/images/loadingAnimation.gif +0 -0
  39. data/html/images/macFFBgHack.png +0 -0
  40. data/html/images/package.png +0 -0
  41. data/html/images/page_green.png +0 -0
  42. data/html/images/page_white_text.png +0 -0
  43. data/html/images/page_white_width.png +0 -0
  44. data/html/images/plugin.png +0 -0
  45. data/html/images/ruby.png +0 -0
  46. data/html/images/tag_blue.png +0 -0
  47. data/html/images/tag_green.png +0 -0
  48. data/html/images/transparent.png +0 -0
  49. data/html/images/wrench.png +0 -0
  50. data/html/images/wrench_orange.png +0 -0
  51. data/html/images/zoom.png +0 -0
  52. data/html/index.html +317 -0
  53. data/html/js/darkfish.js +84 -0
  54. data/html/js/navigation.js +105 -0
  55. data/html/js/navigation.js.gz +0 -0
  56. data/html/js/search.js +110 -0
  57. data/html/js/search_index.js +1 -0
  58. data/html/js/search_index.js.gz +0 -0
  59. data/html/js/searcher.js +229 -0
  60. data/html/js/searcher.js.gz +0 -0
  61. data/html/table_of_contents.html +365 -0
  62. data/lib/hook/hookapp.rb +9 -10
  63. data/lib/hook/markdown_document_listener.rb +12 -2
  64. data/lib/hook/version.rb +1 -1
  65. data/test/hook_scripts_test.rb +1 -1
  66. metadata +58 -2
data/lib/hook/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hook
4
- VERSION = '2.0.7'
4
+ VERSION = '2.0.8'
5
5
  end
@@ -1,7 +1,7 @@
1
1
  require 'hook-helpers'
2
2
  require 'test_helper'
3
3
 
4
- class EncodeTest < Test::Unit::TestCase
4
+ class ScriptsTest < Test::Unit::TestCase
5
5
  include HookHelpers
6
6
 
7
7
  def setup
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hookapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-25 00:00:00.000000000 Z
11
+ date: 2021-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aruba
@@ -76,9 +76,11 @@ extra_rdoc_files:
76
76
  - hook.rdoc
77
77
  files:
78
78
  - ".gitignore"
79
+ - AUTHORS.md
79
80
  - CHANGELOG.md
80
81
  - Gemfile
81
82
  - Gemfile.lock
83
+ - LICENSE
82
84
  - LICENSE.md
83
85
  - OVERVIEW.md
84
86
  - README.md
@@ -91,6 +93,60 @@ files:
91
93
  - features/support/env.rb
92
94
  - hook.rdoc
93
95
  - hookapp.gemspec
96
+ - html/App.html
97
+ - html/GLI.html
98
+ - html/GLI/Commands.html
99
+ - html/GLI/Commands/Doc.html
100
+ - html/GLI/Commands/MarkdownDocumentListener.html
101
+ - html/Hook.html
102
+ - html/HookApp.html
103
+ - html/Hooker.html
104
+ - html/README_rdoc.html
105
+ - html/String.html
106
+ - html/created.rid
107
+ - html/css/fonts.css
108
+ - html/css/rdoc.css
109
+ - html/fonts/Lato-Light.ttf
110
+ - html/fonts/Lato-LightItalic.ttf
111
+ - html/fonts/Lato-Regular.ttf
112
+ - html/fonts/Lato-RegularItalic.ttf
113
+ - html/fonts/SourceCodePro-Bold.ttf
114
+ - html/fonts/SourceCodePro-Regular.ttf
115
+ - html/images/add.png
116
+ - html/images/arrow_up.png
117
+ - html/images/brick.png
118
+ - html/images/brick_link.png
119
+ - html/images/bug.png
120
+ - html/images/bullet_black.png
121
+ - html/images/bullet_toggle_minus.png
122
+ - html/images/bullet_toggle_plus.png
123
+ - html/images/date.png
124
+ - html/images/delete.png
125
+ - html/images/find.png
126
+ - html/images/loadingAnimation.gif
127
+ - html/images/macFFBgHack.png
128
+ - html/images/package.png
129
+ - html/images/page_green.png
130
+ - html/images/page_white_text.png
131
+ - html/images/page_white_width.png
132
+ - html/images/plugin.png
133
+ - html/images/ruby.png
134
+ - html/images/tag_blue.png
135
+ - html/images/tag_green.png
136
+ - html/images/transparent.png
137
+ - html/images/wrench.png
138
+ - html/images/wrench_orange.png
139
+ - html/images/zoom.png
140
+ - html/index.html
141
+ - html/js/darkfish.js
142
+ - html/js/navigation.js
143
+ - html/js/navigation.js.gz
144
+ - html/js/search.js
145
+ - html/js/search_index.js
146
+ - html/js/search_index.js.gz
147
+ - html/js/searcher.js
148
+ - html/js/searcher.js.gz
149
+ - html/table_of_contents.html
94
150
  - lib/completion/hook_completion.bash
95
151
  - lib/completion/hook_completion.fish
96
152
  - lib/completion/hook_completion.zsh