From 0d2ddbd9b6be6d5a384d655f02cef73fa8d3e00b Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Mon, 12 Oct 2015 11:24:30 +0800 Subject: [PATCH] add rspec to Gemfile --- Gemfile | 5 +++++ Gemfile.lock | 28 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/Gemfile b/Gemfile index 9489f21d..4732f0a8 100644 --- a/Gemfile +++ b/Gemfile @@ -37,6 +37,11 @@ group :assets do gem 'uglifier', '>= 1.0.3' end +group :test do + gem 'rspec-rails' + gem 'factory_girl_rails' +end + group :production do #this is used on heroku #gem 'rmagick' end diff --git a/Gemfile.lock b/Gemfile.lock index 98a5e233..5b431d4e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -59,10 +59,16 @@ GEM responders thread_safe (~> 0.1) warden (~> 1.2.3) + diff-lcs (1.2.5) dotenv (2.0.0) erubis (2.7.0) execjs (2.2.1) ezcrypto (0.7.2) + factory_girl (4.5.0) + activesupport (>= 3.0.0) + factory_girl_rails (4.5.0) + factory_girl (~> 4.5.0) + railties (>= 3.0.0) formtastic (3.0.0) actionpack (>= 3.2.13) formula (1.0.1) @@ -129,6 +135,23 @@ GEM redis (3.1.0) responders (1.1.1) railties (>= 3.2, < 4.2) + rspec-core (3.3.1) + rspec-support (~> 3.3.0) + rspec-expectations (3.3.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.3.0) + rspec-mocks (3.3.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.3.0) + rspec-rails (3.3.2) + actionpack (>= 3.0, < 4.3) + activesupport (>= 3.0, < 4.3) + railties (>= 3.0, < 4.3) + rspec-core (~> 3.3.0) + rspec-expectations (~> 3.3.0) + rspec-mocks (~> 3.3.0) + rspec-support (~> 3.3.0) + rspec-support (3.3.0) sass (3.4.5) sass-rails (3.2.6) railties (~> 3.2.0) @@ -167,6 +190,7 @@ DEPENDENCIES coffee-rails (~> 3.2.1) devise dotenv + factory_girl_rails formtastic formula jbuilder (= 0.8.2) @@ -178,6 +202,10 @@ DEPENDENCIES rails (= 3.2.17) rails3-jquery-autocomplete redis + rspec-rails sass-rails uglifier (>= 1.0.3) uservoice-ruby + +BUNDLED WITH + 1.10.6