From 7dcdafc14e91e3c380bb88234ef0249efb8ace20 Mon Sep 17 00:00:00 2001 From: Johnson Denen Date: Wed, 9 Sep 2015 16:55:46 -0400 Subject: [PATCH] Add Gemfile and update .gitignore --- .gitignore | 2 ++ Gemfile | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 Gemfile diff --git a/.gitignore b/.gitignore index 28f4849..5915161 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.gem *.rbc +*.org /.config /coverage/ /InstalledFiles @@ -33,3 +34,4 @@ build/ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: .rvmrc +/Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..f19482b --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +gem "cucumber", "~> 2.0" +gem "rspec", "~> 3.0"