Skip to content
Snippets Groups Projects
Gemfile 2.52 KiB
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
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
gem 'jbuilder', '~> 2.0' # leave or not?
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
gem 'bcrypt', '~> 3.1.7'
# memcached
gem 'dalli'

# web server
gem 'puma'
gem 'whenever', require: false
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed

Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
# files
gem 'paperclip'

Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
# enable login via rest
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
gem 'rack-cors', require: 'rack/cors'
Felipe Bombardelli's avatar
Felipe Bombardelli committed

# Dspace REST API Integration
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
# pretty logs
gem 'rainbow'
# depoyment
  # static analysis tool for security vulnerabilities
  gem 'brakeman', require: false
  gem 'dawnscanner', require: false

Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
  # 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'

  # JavaScript runtime
gem 'streamio-ffmpeg', '~> 1.0.0'
# sidekiq
gem 'sidekiq'
gem 'sinatra', require: false
gem 'slim'
Bruno Nocera Zanette's avatar
Bruno Nocera Zanette committed
# CUrl
gem 'curb', '~> 0.8.8'

# libArchive (Zip, Rar, ...)
# 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'
Giovanne Marcelo's avatar
Giovanne Marcelo committed
gem 'gitlab'
# authorization
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
gem 'pundit'

# elasticsearch integration
gem 'searchkick'
# enable/disable features by enviroments
# mass insert in ActiveRecord
gem 'activerecord-import'
# social connect
# get mime type
gem 'mimemagic'
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed

# html screenshot
gem 'screencap'
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
# using while rails 5 isn't released
gem 'rails-api'