about summary refs log tree commit diff stats
path: root/code/application.rb
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-06-13 02:20:46 +0200
committerhut <hut@lavabit.com>2009-06-13 02:20:46 +0200
commit2887ca25fb58362d5d644ecda5f0bc51c80ec404 (patch)
treeb066f5542d97b1a4a9134d0910692b873fe32363 /code/application.rb
parent325ec37f65172b5b640d998eba300d86d1ddbfa5 (diff)
downloadranger-2887ca25fb58362d5d644ecda5f0bc51c80ec404.tar.gz
rewrite of the way files are executed, easier config
Diffstat (limited to 'code/application.rb')
-rw-r--r--code/application.rb9
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
+