Browse Source

Updated rails-stripped gemfile with additional gems, both tests run. Fixed the OSError with servicestack-xsp-*, but all 3 tests get cannot to host errors still.

tfb 12 years ago
parent
commit
ca66146d0b
3 changed files with 5 additions and 3 deletions
  1. 2 0
      rails-stripped/Gemfile-jruby
  2. 1 1
      rails-stripped/Gemfile-ruby
  3. 2 2
      servicestack/setup_xsp.py

+ 2 - 0
rails-stripped/Gemfile-jruby

@@ -6,3 +6,5 @@ gem 'jruby-rack', '1.2.0.SNAPSHOT'
 gem 'warbler', '1.3.6'
 gem 'jruby-jars', '1.7.4'
 gem 'activerecord-jdbcmysql-adapter', '1.2.6'
+gem "rubyzip", "~> 1.0.0"
+gem "zip-zip", "~> 0.1"

+ 1 - 1
rails-stripped/Gemfile-ruby

@@ -2,5 +2,5 @@ source 'https://rubygems.org'
 
 gem 'rails', '3.2.13'
 gem 'mysql2', '0.3.11'
-gem 'passenger', '3.9.5.rc3'
+gem 'passenger', '4.0.19'
 gem "unicorn", "4.6.2"

+ 2 - 2
servicestack/setup_xsp.py

@@ -11,7 +11,7 @@ def start(args):
 
   try:
     subprocess.check_call("rm -rf bin obj", shell=True, cwd="servicestack/src")
-    subprocess.check_call("xbuild /p:Configuration=Release", shell=True, cwd="servicestack/src/Web.config")
+    subprocess.check_call("xbuild /p:Configuration=Release", shell=True, cwd="servicestack/src")
     subprocess.Popen("MONO_OPTIONS=--gc=sgen xsp4 --nonstop", shell=True, cwd="servicestack/src")
     return 0
   except subprocess.CalledProcessError:
@@ -30,4 +30,4 @@ def stop():
         os.kill(pid, 9)
       except OSError:
         pass
-  return 0
+  return 0