diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-01 20:24:43 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-01 20:24:43 -0500 |
commit | 329bdda6172f119469b36b9930054489e6bd0ded (patch) | |
tree | f22523a82e7c414cda2644bf3d74eb0bab4e2980 /Gemfile | |
parent | 79f898b61d2b7e6f22487ae967170c27d0323db8 (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-- | Gemfile | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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' |