* taking off local of bundle install

This commit is contained in:
Seth Call 2013-09-02 16:41:16 +00:00
parent 19a43c30e9
commit 843ae44690
3 changed files with 4 additions and 4 deletions

View File

@ -93,7 +93,7 @@ end
gem 'rack-test'
# gem 'rb-fsevent', '0.9.1', :require => false
# gem 'growl', '1.0.3'
gem 'poltergeist', '1.3.0' # can't go to 1.4.0 until this is fixed https://github.com/jonleighton/poltergeist/issues/385
gem 'poltergeist' #, '1.3.0' # can't go to 1.4.0 until this is fixed https://github.com/jonleighton/poltergeist/issues/385
end
group :production do

4
build
View File

@ -13,8 +13,8 @@ rm -rf vendor/bundle
rm -rf tmp/capybara
rm Gemfile.lock # if we don't want versions to float, pin it in the Gemfile, not count on Gemfile.lock
# put all dependencies into vendor/bundle
bundle install --path vendor/bundle --local
#bundle update
bundle install --path vendor/bundle
bundle update
# clean assets, because they may be lingering from last build
bundle exec rake assets:clean

View File

@ -40,7 +40,7 @@ Spork.prefork do
require 'capybara-screenshot/rspec'
require 'capybara/poltergeist'
Capybara.register_driver :poltergeist do |app|
Capybara::Poltergeist::Driver.new(app, { debug: false, phantomjs_logger: File.open('log/phantomjs.out', 'w') })
#Capybara::Poltergeist::Driver.new(app, { debug: false, phantomjs_logger: File.open('log/phantomjs.out', 'w') })
end
Capybara.javascript_driver = :poltergeist