This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
120 lines (97 loc) · 2.2 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
source 'https://rubygems.org'
ruby '2.5.1'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Core Binaries / Engines
gem 'rails'
gem 'pg'
gem 'oj'
gem 'active_record_union'
gem 'jsonapi-resources'
gem 'high_voltage'
gem 'puma'
gem 'bootsnap', require: false
# Gimme The Cache
# https://www.youtube.com/watch?v=OADJl-CVDo0
gem 'redis-rails'
gem 'redis-rack-cache'
# Assets
gem 'bootstrap'
source 'https://rails-assets.org' do
gem 'rails-assets-tether'
gem 'rails-assets-seiyria-bootstrap-slider'
end
gem 'sprockets', '>= 4.0.beta'
gem 'sassc-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'simple_form'
gem 'selectize-rails'
gem 'font-awesome-rails'
# Charts
gem 'chartkick'
gem 'highcharts-rails'
gem 'groupdate'
gem 'descriptive_statistics'
# Auth[en|or]
gem 'devise'
gem 'omniauth-facebook'
gem 'pundit'
gem 'jsonapi-authorization'
# Backgrounding
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'sidekiq-unique-jobs'
gem 'sidekiq-statistic'
# History
gem 'paper_trail'
gem 'paper_trail-globalid'
# PDF Handling
gem 'google_drive', require: false
# Currency handling
gem 'money-rails'
# Convenience Methods
gem 'rounding'
# ActiveAdmin and Friends
gem 'activeadmin'
gem 'cocoon' #needed for associations
gem 'active_admin_versioning'
gem 'activeadmin_addons'
# Console and Error handling
gem 'jazz_fingers'
gem 'pry-rails'
gem 'pry-byebug'
# Analytics
gem 'lograge'
gem 'newrelic_rpm'
gem 'rollbar'
gem 'pghero'
gem 'pg_query'
gem 'okcomputer'
# PERF (only active on MTOWER)
gem 'rack-mini-profiler', require: false
gem 'memory_profiler', require: false
gem 'flamegraph', require: false
gem 'stackprof', require: false
gem 'dotenv-rails', require: false
group :development, :test do
gem 'letter_opener_web', require: false
gem 'faker', require: false
gem 'bullet'
gem 'active_record_query_trace', require: false
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
# Better Testing
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'fuubar'
gem "simplecov"
gem 'codeclimate-test-reporter', require: nil
end