Use Bundler for managing dependencies needed to run the tests

This commit is contained in:
Bryan Helmkamp 2009-11-13 17:41:33 -05:00
parent f51b745e89
commit 1c28425583
3 changed files with 23 additions and 2 deletions

5
.gitignore vendored
View File

@ -12,4 +12,7 @@ log
results
test_apps
*.tmproj
*.log
*.log
*.pid
bin
vendor/gems

18
Gemfile Normal file
View File

@ -0,0 +1,18 @@
clear_sources
source 'http://gemcutter.org'
disable_system_gems
gem "rake", "0.8.7"
gem "rspec", "1.2.9"
gem "diff-lcs", "1.1.2"
gem "rack", "1.0.1"
gem "nokogiri", "1.4.0"
gem "merb-core", "1.0.15"
gem "selenium-client", "1.2.17"
gem "mechanize", "0.9.3"
gem "rails", "2.3.4"
gem "launchy", "0.3.3"
gem "rack-test", "0.5.2"
gem "sinatra", "0.9.4"
gem "mongrel", "1.1.5"

View File

@ -1,4 +1,4 @@
RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
# RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
require File.join(File.dirname(__FILE__), 'boot')