-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
93 lines (66 loc) · 2.23 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
source 'https://rubygems.org'
ruby '~> 3.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0'
# Manage webpack via this gem
gem "jsbundling-rails"
# webpacks puts it into asset pipeline
gem 'sprockets-rails', :require => 'sprockets/railtie'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.0'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0'
gem 'coffee-script-source', '1.8.0'
# Bump up for security
gem "rack"
# For configuring CORS headers
gem 'rack-cors'
# Use Redis for caching
gem 'redis'
# Require git for heroku
gem 'git', '~> 1.13.0'
# Markdown conversion
gem 'kramdown'
# Speed up rails booting
gem "bootsnap"
# Allow requiring "all" in a directory easily
gem 'require_all'
# Bulk importing
gem 'activerecord-import'
# Faster JSON parsing and emitting
# https://buttercms.com/blog/json-serialization-in-rails-a-complete-guide
gem 'oj'
# For running things in parallel
gem 'parallel'
gem 'json-schema'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# To fix issue: https://github.com/rails/rails/issues/26658
gem 'rb-readline'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo' # platforms: [:mingw, :mswin, :mswin64, :x64_mingw, :jruby]
gem 'tzinfo-data' # platforms: [:mingw, :mswin, :mswin64, :x64_mingw, :jruby]
# Used for syntax highlighting. (TODO: do we still use this?)
gem 'coderay'
gem 'listen', '~> 3.0' # NOTE: for TCP functionality, use '~> 2.10' for now
# Console output says to add this to avoid polling for changes
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Automatically scan text for URLs and create link tags
gem 'rinku'
# Mitigate XSS and other bad stuff
# Removed since we don't use anymore, but we might bring it back.
# gem 'sanitize', '~> 5.2'
gem 'capybara'
gem 'selenium-webdriver'