-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
84 lines (76 loc) · 1.89 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.2.3'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'aws-sdk-s3'
gem 'barnes'
gem 'bloomerang_api', '~> 1.0'
gem 'bootstrap3-datetimepicker-rails'
gem 'bootstrap-sass'
gem 'chartkick'
gem 'devise'
gem 'discard'
gem 'font-awesome-sass', '~> 5.15.1'
# Techically retired, should use 'google-apis-gmail_v1', but auth is a pain
gem 'google-api-client'
# needed for 'google-apis-gmail_v1', is a depenency of 'google-api-client', so it's installed anyway
# gem 'googleauth'
gem 'haml'
gem 'httparty'
gem 'icalendar'
gem 'image_processing', '~> 1.12.2'
gem 'jquery-datatables-rails'
gem 'jquery-rails'
gem 'mini_magick'
gem 'momentjs-rails'
gem 'money-rails'
gem 'net-smtp'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'pg'
gem 'puma'
gem 'pundit'
gem 'rails', '>= 6.1.6.1'
gem 'rails_admin', '~> 2.2'
gem 'redis', '~> 4.3', '>= 4.3.1'
gem 'rest-client'
gem 'rollbar'
gem 'sass-rails', '>= 6'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'simple_form'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'letter_opener_web'
gem 'rubocop'
gem 'web-console', '>= 3.3.0'
end
group :development, :test do
gem 'airborne'
gem 'better_errors'
gem 'binding_of_caller'
gem 'debug', '~> 1.7', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'foreman'
gem 'selenium-webdriver'
gem 'timecop'
end
group :test do
gem 'capybara'
gem 'rails-controller-testing'
gem 'rspec'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'rspec-retry'
gem 'shoulda-matchers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]