-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
98 lines (84 loc) · 2.27 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '5.2.4.3'
gem 'bootsnap'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'jquery-rails'
gem 'jquery-ui-rails', '6.0.0'
gem 'uglifier', '~> 4.1.0'
gem 'alphabetical_paginate'
gem 'cancancan', '~> 2.2'
gem 'devise', '>= 4.7.1'
gem 'devise_ldap_authenticatable'
gem 'will_paginate', '~> 3.0'
# gem 'execjs'
gem 'haml-rails'
gem 'acts-as-taggable-on', '>=6.5.0'
gem 'awesome_nested_set' # , :git => 'git://github.com/collectiveidea/awesome_nested_set'
gem 'chartkick', '>= 3.4.0'
gem 'groupdate'
gem 'jcrop-rails-v2'
gem 'odf-report'
gem 'paperclip', '~> 5.2.1'
gem 'public_activity'
gem 'rails3-jquery-autocomplete' # , git: 'https://github.com/francisd/rails3-jquery-autocomplete'
gem 'simple_form'
gem 'the_sortable_tree', '>= 2.4.0'
# gem 'pdf-reader'
gem 'pg'
gem 'pg_search'
## gem 'tiny_tds', '~> 0.7.0', require: false # MS SQL
gem 'tzinfo-data'
gem 'exception_notification'
gem 'whenever' # cron jobs (crontab -l, crontab -e)
gem 'loofah', '>= 2.5.0'
gem 'nokogiri', '>= 1.10.8'
gem 'rack', '>= 2.2.3'
gem 'rails_performance' # monitor the performance
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug'
gem 'capistrano', '~>3.10.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'haml_lint', require: false
# gem "rails-erd"
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'capistrano-rails-db'
gem 'capistrano3-puma'
gem 'sshkit-sudo'
# gem 'log-analyzer', require: false
# gem 'rack-mini-profiler', require: ['enable_rails_patches']
end
group :production, :staging do
gem 'puma', '>= 4.3.5'
gem 'rails_12factor', require: false
end
group :test do
gem 'capybara'
gem 'codeclimate-test-reporter', '~> 1.0.0'
gem 'codecov', require: false
# gem 'database_cleaner'
gem 'database_cleaner-active_record'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'webrat'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-faker'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubycritic'
gem 'selenium-webdriver'
end