summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/code_objects/headers_root.rb
diff options
context:
space:
mode:
authorSeba Gamboa <[email protected]>2015-09-24 18:30:12 -0300
committerSeba Gamboa <[email protected]>2015-09-24 18:30:12 -0300
commit5a6d8a0131140873fa1cd37bd3d76b0b06d633ae (patch)
tree16e82d4640e8e8e90f3b98fa3104f74cad73bc66 /lib/yard/mruby/code_objects/headers_root.rb
parentc1f2404de71e9a8f73271b05f59a225728212069 (diff)
downloadyard-mruby-5a6d8a0131140873fa1cd37bd3d76b0b06d633ae.tar.gz
yard-mruby-5a6d8a0131140873fa1cd37bd3d76b0b06d633ae.zip
Renamed include to headers
Diffstat (limited to 'lib/yard/mruby/code_objects/headers_root.rb')
-rw-r--r--lib/yard/mruby/code_objects/headers_root.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/yard/mruby/code_objects/headers_root.rb b/lib/yard/mruby/code_objects/headers_root.rb
new file mode 100644
index 0000000..45806ff
--- /dev/null
+++ b/lib/yard/mruby/code_objects/headers_root.rb
@@ -0,0 +1,11 @@
+module YARD::MRuby::CodeObjects
+
+ class HeadersRoot < YARD::CodeObjects::NamespaceObject
+ def headers
+ children
+ end
+ end
+
+ HEADERS_ROOT = HeadersRoot.new(:root, "headers")
+
+end