diff --git a/.gitignore b/.gitignore index dfafece..d1113c7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,7 @@ log results test_apps *.tmproj -*.log \ No newline at end of file +*.log +*.pid +bin +vendor/gems diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b880358 --- /dev/null +++ b/Gemfile @@ -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" diff --git a/spec/integration/rails/config/environment.rb b/spec/integration/rails/config/environment.rb index c9b68aa..ed4cad4 100644 --- a/spec/integration/rails/config/environment.rb +++ b/spec/integration/rails/config/environment.rb @@ -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')