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'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# autocomplete for search
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
Mauricio Giacomini Girardello
committed
gem 'devise_token_auth'
# select box used in search
gem 'select2-rails'
Mauricio Giacomini Girardello
committed
gem 'mina'
gem 'locastyle'
Mauricio Giacomini Girardello
committed
# docs
# awesome font icons
gem 'font-awesome-rails'
group :development do
# evaluate source code
gem 'rubycritic', 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'
gem 'shoulda-callback-matchers', '~> 1.1.1'
end
# 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 'resumablejs-rails'
gem 'pundit'
# elasticsearch integration
gem 'searchkick'
# mass insert in ActiveRecord
gem 'activerecord-import'
gem 'social-share-button'
gem 'meta-tags'
gem 'omniauth-facebook'
gem 'omniauth-twitter'