Skip to content

Commit

Permalink
add bundler gemfile. use bundle exec bin/parkplace to get shit started
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Jul 8, 2011
1 parent c3a037a commit ffc577c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
Gemfile.lock
11 changes: 11 additions & 0 deletions Gemfile
@@ -0,0 +1,11 @@
source 'http://rubygems.org'

gem 'camping', '~> 1.5.180'
gem 'rack', '~> 1.0.1'
gem 'activesupport', '~> 2.2.0'
gem 'activerecord', '~> 2.2.0'
gem 'mongrel'

group :sqlite do
gem 'sqlite3'
end
5 changes: 0 additions & 5 deletions bin/parkplace
Expand Up @@ -3,16 +3,11 @@ $:.unshift "./lib"
require 'optparse'
$PARKPLACE_ACCESSORIES = true
require 'rubygems'
gem 'mongrel'
gem 'activesupport', '~> 2.2.0'
gem 'activerecord', '~> 2.2.0'
require 'parkplace'

DEFAULT_PASSWORD = 'pass@word1'
DEFAULT_SECRET = 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV'

#

options = ParkPlace.options
options.host = "127.0.0.1"
options.port = 3002
Expand Down
2 changes: 2 additions & 0 deletions lib/parkplace.rb
@@ -1,11 +1,13 @@
require 'rubygems'
require 'metaid'
require 'camping'
require 'camping/session'
require 'digest/sha1'
require 'base64'
require 'time'
require 'md5'

require 'active_record'
require 'active_record/acts/nested_set'
ActiveRecord::Base.send :include, ActiveRecord::Acts::NestedSet

Expand Down

0 comments on commit ffc577c

Please sign in to comment.