mercury 0.7.4 → 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Mercury.gemspec +1 -1
- data/VERSION +1 -1
- data/bin/mercury +1 -1
- metadata +1 -1
data/Mercury.gemspec
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.5
|
data/bin/mercury
CHANGED
|
@@ -9,7 +9,7 @@ if ARGV.first
|
|
|
9
9
|
# Build Directory and add setup files
|
|
10
10
|
FileUtils.mkdir_p ARGV.first
|
|
11
11
|
FileUtils.mkdir_p File.join(ARGV.first, 'views')
|
|
12
|
-
config_ru = ["require 'mercury'","log = File.new('mercury.log', 'a+')", $stdout.reopen(log), $stderr.reopen(log), "run Mercury"].join("\n")
|
|
12
|
+
config_ru = ["require 'mercury'","log = File.new('mercury.log', 'a+')", "$stdout.reopen(log)", "$stderr.reopen(log)", "run Mercury"].join("\n")
|
|
13
13
|
File.open(File.join(ARGV.first, 'config.ru'),'w').write(config_ru)
|
|
14
14
|
else
|
|
15
15
|
puts "Running Mercury on port:9292"
|