sztupy-shaml 0.1.7 → 0.1.8
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/lib/shaml.rb +1 -1
- metadata +1 -1
data/lib/shaml.rb
CHANGED
@@ -168,7 +168,7 @@ else
|
|
168
168
|
FileUtils.cp_r("libraries",File.join(appname+".Tests","bin"))
|
169
169
|
puts "Compiling using gmcs"
|
170
170
|
system("gmcs -recurse:#{File.join(appname,"*.cs")} `ls libraries/*.dll | sed \"s/libr/-r:libr/\"` -r:System.Web.Routing -r:System.Web -t:library -out:#{File.join(appname,"bin",appname+".dll")}")
|
171
|
-
system("gmcs -recurse:#{File.join(appname+".Tests","*.cs")} `ls libraries/*.dll | sed \"s/libr/-r:libr/\"` -r:System.Web.Routing -r:System.Web -t:library -out:#{File.join(appname+".Tests","bin",appname+".dll")}")
|
171
|
+
system("gmcs -recurse:#{File.join(appname+".Tests","*.cs")} `ls libraries/*.dll | sed \"s/libr/-r:libr/\"` -r:System.Web.Routing -r:System.Web -r:#{File.join(appname,"bin",appname+".dll")} -t:library -out:#{File.join(appname+".Tests","bin",appname+".dll")}")
|
172
172
|
when "server"
|
173
173
|
puts "Starting xsp2"
|
174
174
|
appname = getappname
|