summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/handlers/header
diff options
context:
space:
mode:
authorSeba Gamboa <[email protected]>2015-09-24 12:19:17 -0300
committerSeba Gamboa <[email protected]>2015-09-24 12:19:17 -0300
commit7b633663385725c6665118dc5fc014c26e7ffc04 (patch)
tree71f66691e166c8479674c3b56d110447524781dc /lib/yard/mruby/handlers/header
parente10b832959620db0e2461391f80aa4c434d2790f (diff)
downloadyard-mruby-7b633663385725c6665118dc5fc014c26e7ffc04.tar.gz
yard-mruby-7b633663385725c6665118dc5fc014c26e7ffc04.zip
Working on headers #2
Diffstat (limited to 'lib/yard/mruby/handlers/header')
-rw-r--r--lib/yard/mruby/handlers/header/base.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/yard/mruby/handlers/header/base.rb b/lib/yard/mruby/handlers/header/base.rb
new file mode 100644
index 0000000..d3e5491
--- /dev/null
+++ b/lib/yard/mruby/handlers/header/base.rb
@@ -0,0 +1,8 @@
+module YARD::MRuby::Handlers
+ module Header
+ class Base < YARD::Handlers::Base
+ end
+ end
+
+ YARD::Handlers::Processor.register_handler_namespace :header, Header
+end