Use Bundler for managing dependencies needed to run the tests
This commit is contained in:
parent
f51b745e89
commit
1c28425583
3
.gitignore
vendored
3
.gitignore
vendored
@ -13,3 +13,6 @@ results
|
|||||||
test_apps
|
test_apps
|
||||||
*.tmproj
|
*.tmproj
|
||||||
*.log
|
*.log
|
||||||
|
*.pid
|
||||||
|
bin
|
||||||
|
vendor/gems
|
||||||
|
18
Gemfile
Normal file
18
Gemfile
Normal 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"
|
@ -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')
|
require File.join(File.dirname(__FILE__), 'boot')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user