diff options
author | Chris Schlaeger <chris@linux.com> | 2014-06-21 23:02:49 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2014-06-21 23:02:49 +0200 |
commit | cc72a9807699b95363d0ae58aa5237d982946470 (patch) | |
tree | e120b723992e473de620f29d6d7ba2fcd235e505 /lib/postrunner.rb | |
download | postrunner-cc72a9807699b95363d0ae58aa5237d982946470.zip |
Adding dump filter
Diffstat (limited to 'lib/postrunner.rb')
-rw-r--r-- | lib/postrunner.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/postrunner.rb b/lib/postrunner.rb new file mode 100644 index 0000000..681c583 --- /dev/null +++ b/lib/postrunner.rb @@ -0,0 +1,11 @@ +$:.unshift(File.join(File.dirname(__FILE__), '..', '..', 'fit4ruby', 'lib')) +$:.unshift(File.dirname(__FILE__)) + +require 'postrunner/version' +require 'postrunner/Main' + +module PostRunner + + Main.new(ARGV) + +end |