-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
82 lines (69 loc) · 1.65 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 6.0.2'
gem 'pg'
gem 'authlogic', '~> 5.0.2'
gem 'bcrypt'
gem 'jc-validates_timeliness'
gem 'awesome_nested_set'
gem 'will_paginate'
gem 'paper_trail'
gem 'RedCloth'
gem 'cups', github: 'darius-janusauskas/cups'
gem 'simple_form'
# Files Processors
gem 'carrierwave'
gem 'carrierwave_backgrounder', '0.4.2'
gem 'mini_magick'
gem 'rghost' # Could make it happen only with carrierwave
gem 'pdf-reader'
gem 'barby'
gem 'rqrcode'
gem 'chunky_png'
gem 'google_drive', '~> 3.0.7'
# Production-Task Gems
gem 'unicorn'
gem 'unicorn-worker-killer'
gem 'whenever', require: false
gem 'sidekiq'
gem 'redis-namespace'
# Code stats/notifier
gem 'newrelic_rpm'
gem 'bugsnag'
# Old assets group / Styles & js
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-fileupload-rails'
gem 'underscore-rails'
# Helpers (at console)
gem 'interactive_editor'
gem 'awesome_print'
gem 'byebug'
group :development do
gem 'thin'
gem 'listen'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-chruby'
# Support for ed25519 ssh keys
gem 'ed25519'
gem 'bcrypt_pbkdf'
end
group :test do
# Integration test
gem 'capybara', require: false
gem 'capybara-screenshot', require: false
gem 'chromedriver-helper', require: false
gem 'database_cleaner', require: false # For Capybara
gem 'poltergeist', require: false
gem 'selenium-webdriver'
gem 'rails-controller-testing'
end
gem 'mimemagic', '0.3.8'