add rspec to Gemfile
This commit is contained in:
parent
053f035d31
commit
0d2ddbd9b6
2 changed files with 33 additions and 0 deletions
5
Gemfile
5
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
|
||||
|
|
28
Gemfile.lock
28
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
|
||||
|
|
Loading…
Reference in a new issue