aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-12-07 23:15:09 -0500
committerTeddy Wing2015-12-07 23:15:09 -0500
commit4e5534b3e29dad49632ae8d2c4f661057fddbe55 (patch)
tree7672da793d5f1b3cfcac16d68a81f81d83447654
parent0388693b4cd572cba83e1cabceab45b00e6fa352 (diff)
downloadRuby-Web-Sessions-Exercise-4e5534b3e29dad49632ae8d2c4f661057fddbe55.tar.bz2
Gemfile: Install 'capybara'
For integration testing.
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock17
2 files changed, 19 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 5ea8918..bdb7087 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,3 +2,5 @@ source 'https://rubygems.org'
gem 'sinatra'
gem 'rerun'
+
+gem 'capybara'
diff --git a/Gemfile.lock b/Gemfile.lock
index f74cd7d..ae43b5e 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,13 +1,27 @@
GEM
remote: https://rubygems.org/
specs:
+ capybara (2.5.0)
+ mime-types (>= 1.16)
+ nokogiri (>= 1.3.3)
+ rack (>= 1.0.0)
+ rack-test (>= 0.5.4)
+ xpath (~> 2.0)
ffi (1.9.10)
listen (3.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
+ mime-types (3.0)
+ mime-types-data (~> 3.2015)
+ mime-types-data (3.2015.1120)
+ mini_portile2 (2.0.0)
+ nokogiri (1.6.7)
+ mini_portile2 (~> 2.0.0.rc2)
rack (1.6.4)
rack-protection (1.5.3)
rack
+ rack-test (0.6.3)
+ rack (>= 1.0)
rb-fsevent (0.9.6)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
@@ -18,10 +32,13 @@ GEM
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
tilt (2.0.1)
+ xpath (2.0.0)
+ nokogiri (~> 1.3)
PLATFORMS
ruby
DEPENDENCIES
+ capybara
rerun
sinatra