diff options
author | hut <hut@lavabit.com> | 2009-06-13 02:20:46 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-13 02:20:46 +0200 |
commit | 2887ca25fb58362d5d644ecda5f0bc51c80ec404 (patch) | |
tree | b066f5542d97b1a4a9134d0910692b873fe32363 /code/application.rb | |
parent | 325ec37f65172b5b640d998eba300d86d1ddbfa5 (diff) | |
download | ranger-2887ca25fb58362d5d644ecda5f0bc51c80ec404.tar.gz |
rewrite of the way files are executed, easier config
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 + |