This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/lib/orbit_app/dsl.rb

16 lines
304 B
Ruby
Raw Normal View History

2012-09-13 10:31:44 +00:00
module OrbitApp
module DSL
def backend_side_bar(name,&block)
BackendSideBar.new(name,&block)
end
def plugin_summary(name,&block)
# Plugin::PluginSummary.new(name,&block)
end
def module_summary(name,&block)
Module::ModuleSummary.new(name,&block)
end
end
end