bin/stoor in stoor-0.1.0 vs bin/stoor in stoor-0.1.1
- old
+ new
@@ -1,7 +1,10 @@
#!/usr/bin/env ruby
require 'thin'
-ARGV.unshift 'config.ru'
+
+config_ru = File.expand_path(File.join(File.dirname(__FILE__), '..', 'config.ru'))
+
+ARGV.unshift config_ru
ARGV.unshift '-R'
ARGV.unshift 'start'
Thin::Runner.new(ARGV).run!