summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-01 20:24:43 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-01 20:24:43 -0500
commit11be92e4bac671852fd03922049ca592ae4c9f4e (patch)
treea70875391bbf07448f816800afd6296679fc4c06 /Gemfile
parent2eb242f3e5b1f1ab66d84556cabcad965fe387aa (diff)
changed the gemfile to include rspecy testing and a security name i cant remember the name of
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile16
1 files changed, 15 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index f4e5b09..cc95938 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,8 +5,21 @@ gem 'rails', '4.0.2'
gem 'bootstrap-sass'
+# bcrypt is used for password digesting
+gem 'bcrypt-ruby', '3.1.2'
+
+group :development, :test do
+
# Use sqlite3 as the database for Active Record
-gem 'sqlite3'
+ gem 'sqlite3'
+ gem 'rspec-rails', '2.13.1'
+end
+
+group :test do
+ gem 'selenium-webdriver', '2.35.1'
+ gem 'capybara', '2.1.0'
+end
+
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
@@ -34,6 +47,7 @@ group :doc do
gem 'sdoc', require: false
end
+
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'