Commit 715101b83cf4db8cc81e727231b2a10a78b99a3f

Authored by Stephen Crosby
1 parent 3dc67f13
Exists in master and in 1 other branch production

add poltergeist

Showing 3 changed files with 10 additions and 0 deletions   Show diff stats
Gemfile
... ... @@ -80,6 +80,7 @@ end
80 80  
81 81 group :test do
82 82 gem 'capybara'
  83 + gem 'poltergeist'
83 84 gem 'launchy'
84 85 gem 'database_cleaner'
85 86 gem 'email_spec'
... ...
Gemfile.lock
... ... @@ -59,6 +59,7 @@ GEM
59 59 rack (>= 1.0.0)
60 60 rack-test (>= 0.5.4)
61 61 xpath (~> 2.0)
  62 + cliver (0.3.2)
62 63 coderay (1.0.9)
63 64 coveralls (0.7.0)
64 65 multi_json (~> 1.3)
... ... @@ -195,6 +196,11 @@ GEM
195 196 orm_adapter (0.4.0)
196 197 pjax_rails (0.3.4)
197 198 jquery-rails
  199 + poltergeist (1.5.1)
  200 + capybara (~> 2.1)
  201 + cliver (~> 0.3.1)
  202 + multi_json (~> 1.0)
  203 + websocket-driver (>= 0.2.0)
198 204 polyglot (0.3.4)
199 205 premailer (1.7.3)
200 206 css_parser (>= 1.1.9)
... ... @@ -313,6 +319,7 @@ GEM
313 319 webmock (1.15.0)
314 320 addressable (>= 2.2.7)
315 321 crack (>= 0.3.2)
  322 + websocket-driver (0.3.3)
316 323 xmpp4r (0.5.5)
317 324 xpath (2.0.0)
318 325 nokogiri (~> 1.3)
... ... @@ -358,6 +365,7 @@ DEPENDENCIES
358 365 mongoid_rails_migrations
359 366 omniauth-github
360 367 pjax_rails
  368 + poltergeist
361 369 pry-rails
362 370 puma
363 371 quiet_assets
... ...
spec/spec_helper.rb
... ... @@ -19,6 +19,7 @@ end
19 19  
20 20 require File.expand_path("../../config/environment", __FILE__)
21 21 require 'rspec/rails'
  22 +require 'email_spec'
22 23 require 'database_cleaner'
23 24 require 'webmock/rspec'
24 25 require 'xmpp4r'
... ...