Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
The server now starts
Browse files Browse the repository at this point in the history
Log file is initialized.
  • Loading branch information
joeldsa committed Nov 15, 2011
1 parent 5b995bc commit 9424c59
Show file tree
Hide file tree
Showing 7 changed files with 689 additions and 52 deletions.
97 changes: 97 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,97 @@
GEM
remote: http://rubygems.org/
specs:
SystemTimer (1.2.3)
ZenTest (4.6.2)
archive-tar-minitar (0.5.2)
autotest (4.4.6)
ZenTest (>= 4.4.1)
bcrypt-ruby (3.0.1)
builder (3.0.0)
ci_reporter (1.6.5)
builder (>= 2.1.2)
columnize (0.3.4)
daemons (1.1.4)
diff-lcs (1.1.3)
eventmachine (0.12.10)
httpclient (2.2.3)
linecache (0.46)
rbx-require-relative (> 0.0.4)
linecache19 (0.5.12)
ruby_core_source (>= 0.1.4)
machinist (1.0.6)
minitar (0.5.3)
multi_json (1.0.3)
pg (0.11.0)
rack (1.3.5)
rack-protection (1.1.4)
rack
rack-test (0.6.1)
rack (>= 1.0)
rake (0.9.2.2)
rbx-require-relative (0.0.5)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)
ruby-debug (0.10.4)
columnize (>= 0.1)
ruby-debug-base (~> 0.10.4.0)
ruby-debug-base (0.10.4)
linecache (>= 0.3)
ruby-debug-base19 (0.11.25)
columnize (>= 0.3.1)
linecache19 (>= 0.5.11)
ruby_core_source (>= 0.1.4)
ruby-debug19 (0.11.6)
columnize (>= 0.3.1)
linecache19 (>= 0.5.11)
ruby-debug-base19 (>= 0.11.19)
ruby_core_source (0.1.5)
archive-tar-minitar (>= 0.5.2)
sequel (3.29.0)
simplecov (0.5.4)
multi_json (~> 1.0.3)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)
sinatra (1.3.1)
rack (~> 1.3, >= 1.3.4)
rack-protection (~> 1.1, >= 1.1.2)
tilt (~> 1.3, >= 1.3.3)
sqlite3 (1.3.4)
thin (1.3.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tilt (1.3.3)
uuidtools (2.1.2)
yajl-ruby (1.1.0)

PLATFORMS
ruby

DEPENDENCIES
SystemTimer
autotest
bcrypt-ruby
ci_reporter
httpclient
machinist
minitar
pg
rack-test
rake
rspec
ruby-debug
ruby-debug19
sequel
simplecov
sinatra
sqlite3
thin
uuidtools
yajl-ruby
4 changes: 2 additions & 2 deletions bin/acm 100644 → 100755
Expand Up @@ -25,14 +25,14 @@ opts.parse!(ARGV.dup)
config_file ||= ::File.expand_path("../../config/acm.yml", __FILE__)
config = YAML.load_file(config_file)

CollabSpaces::Config.configure(config)
ACM::Config.configure(config)

require "acm_controller"

thin_server = Thin::Server.new("0.0.0.0", config["port"], :signals => false) do
use Rack::CommonLogger
map "/" do
run CollabSpaces::Controller::RackController.new
run ACM::Controller::RackController.new
end
end

Expand Down

0 comments on commit 9424c59

Please sign in to comment.