-
Notifications
You must be signed in to change notification settings - Fork 21
/
Gemfile
160 lines (116 loc) · 3.82 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.0.8.4"
gem "nokogiri", '~> 1.16.5', require: false
# Use postgresql as the database for Active Record
gem "pg", "~> 1.3.5"
gem 'sqlite3', '~> 1.4'
# Use the Puma app server [https://github.com/puma/puma]
gem "puma", ">= 5.6.4"
gem 'pandas', require: false
# Use Uglifier as compressor for JavaScript assets
gem 'engtagger'
gem 'uglifier', '>= 1.3.0'
# Markdown parser
gem 'redcarpet', require: false
gem 'activerecord-import', require: false
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder", "~> 2.11"
gem 'addressable', require: false
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Detect language from text
# Image processing
gem 'image_processing', require: false
# Admin panel
gem 'activeadmin', '~> 3.2.3'
gem 'activeadmin-searchable_select', '>= 1.8.0'
gem 'paper_trail', '>= 12.1.0'
gem 'rails-html-sanitizer', '>= 1.4.2'
gem 'pdf-reader', require: false
gem "typhoeus", require: false
gem "docx", "~> 0.8.0", require: false
# authentication
gem 'devise', '4.9.4'
gem 'cancancan'
gem 'csv', require: false
# metadata for audio file
gem 'streamio-ffmpeg', '~> 3.0', require: false
gem 'wahwah', require: false
gem 'dalli'
gem 'diffy'
# For Slug generation
gem 'babosa', require: false
gem 'unicode-name', require: false
# exception tracking
gem "stackprof"
gem "sentry-ruby", '~> 5.19.0'
gem 'sentry-rails', '~> 5.19'
gem 'sentry-sidekiq', '~> 5.19'
group :development do
# Gems we used for optimizing fonts. Might need them in future.
# gem 'convert_font'
# gem 'svg_optimizer'
# gem 'htmlentities'
gem 'benchmark-ips', require: false
gem 'dotenv'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-performance'
gem 'rubocop-rspec'
gem 'solargraph'
gem 'solargraph-rails'
gem 'mechanize', require: false
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'annotate'
gem 'pry-rails'
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler", ">= 2.3.3"
# preview email on development
gem "letter_opener"
end
gem 'carrierwave', '~> 2.2.6'
gem 'fog-aws'
gem 'rest-client'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'sidekiq-status'
gem 'sinatra', require: false
gem 'tzinfo-data'
# Switch between users
gem 'pagy', '>= 4.3.0'
gem 'pretender'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails", ">= 3.4.1"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails", ">= 0.9.0"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails", ">= 0.7.3"
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails", ">= 0.2.7"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails", ">= 0.2.2"
gem 'sassc-rails', '2.1.2'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem "rack-cors"
gem "ruby-lokalise-api", "~> 4.5.1", require: false
gem "kredis", "~> 1.3"
gem "oj", "~> 3.14"
gem "aws-sdk-s3", "~> 1.130"
gem "rubyzip", "~> 2.3", require: false
gem "cld3", "~> 3.6", require: false
gem "diff-lcs", "~> 1.5", require: false
# NOTE:
gem 'strscan', '~> 3.0.9'
gem "tailwindcss-rails", "~> 2.7"
gem "escompress", "~> 1.0"
gem "inline_svg", "~> 1.10"