Newer
Older
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# Use postgresql as the database for Active Record
gem 'pg'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
Mauricio Giacomini Girardello
committed
gem 'devise_token_auth'
Mauricio Giacomini Girardello
committed
gem 'mina'
Mauricio Giacomini Girardello
committed
# docs
group :development do
# static analysis tool for security vulnerabilities
gem 'brakeman', require: false
gem 'dawnscanner', require: false
# evaluate source code
gem 'rubycritic', require: false
# ruby lint
gem 'rubocop', require: false
# profiler
gem 'rack-mini-profiler'
gem 'flamegraph'
# reduce queries - https://github.com/flyerhzm/bullet
gem 'bullet'
gem 'better_errors'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'shoulda'
# C extension is required
# For Mac OSX: brew install libarchive && bundle config build.libarchive "--with-opt-dir=/usr/local/opt/libarchive"
# gem 'libarchive', '~> 0.1.2', :require => 'libarchive_ruby'
gem 'pundit'
# elasticsearch integration
gem 'searchkick'
# mass insert in ActiveRecord
gem 'activerecord-import'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
# using while rails 5 isn't released
gem 'rails-api'