diff options
Diffstat (limited to 'code/application.rb')
-rw-r--r-- | code/application.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/code/application.rb b/code/application.rb new file mode 100644 index 00000000..f2397d30 --- /dev/null +++ b/code/application.rb @@ -0,0 +1,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 + |