add quiet_assets and factory_girls gems

This commit is contained in:
Lars Henrik Mai 2015-07-20 21:17:20 +02:00
parent 5bda50a753
commit bfbb74d13d
2 changed files with 17 additions and 2 deletions

10
Gemfile
View file

@ -35,8 +35,10 @@ gem 'elasticsearch-dsl'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
group :development do
gem 'spring'
gem 'quiet_assets'
end
group :development, :test do
gem 'pry'
@ -44,6 +46,10 @@ group :development, :test do
gem 'launchy'
end
group :test do
gem 'factory_girl_rails'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'