about summary refs log tree commit diff stats
path: root/code/application.rb
blob: f2397d30d97886a0d0b4321f8b7188547b874260 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Application
	## to be extended by data/apps.rb
	extend self
	def self.method_missing(*_) end
	def check(rc)
		assert rc, RunContext
	end
end