Skip to content
Snippets Groups Projects
Gemfile 3.28 KiB
Newer Older
source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
gem 'rails', '4.2.5.1'
# 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'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# 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'

# Use Unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# 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

# bootstrap
# select box used in search
gem 'select2-rails'

# Gruff (graphs and charts)
# gem 'gruff'
# Dspace REST API Integration
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
# pretty logs
gem 'rainbow'
# chart js
# depoyment
# management visual framework
# awesome font icons
gem 'font-awesome-rails'
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed
  # 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'

  # 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
# edit in place with ajax

# get mime type
gem 'mimemagic'
Mateus Rambo Strey's avatar
Mateus Rambo Strey committed

# html screenshot
gem 'screencap'