-
Notifications
You must be signed in to change notification settings - Fork 358
/
Gemfile
132 lines (105 loc) · 3.71 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby ENV["CUSTOM_RUBY_VERSION"] || ">=3.2"
gem "rails", "~> 7.2.1"
group :development do
gem "listen"
# Visual Studio Additions
gem "ruby-debug-ide"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
# gem install debase -v '0.2.5.beta2' -- --with-cflags=-Wno-error=incompatible-function-pointer-types
# https://blog.arkency.com/how-to-get-burned-by-16-years-old-hack-in-2024/
gem "debase", ">= 0.2.5.beta2", platforms: %i[mri mingw x64_mingw]
gem "pry-rails"
gem "web-console"
# A fully configurable and extendable Git hook manager
gem "overcommit", require: false
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 3.37.1", "< 4.0"
gem "minitest"
gem "minitest-rails", ">= 6.1.0"
gem "minitest-reporters"
gem "selenium-webdriver"
gem "webdrivers", "~> 5.3", require: false
end
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri windows], require: "debug/prelude"
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
gem "erb_lint", "~> 0.7.0"
gem "standardrb", "~> 1.0"
end
gem "rack-cors"
# OSX: ../src/utils.h:33:10: fatal error: 'climits' file not found
# From:
# # 1. Install v8 ourselves
# $ brew install v8-315
# # 2. Install libv8 using the v8 binary we just installed
# $ gem install libv8 -v '3.16.14.19' -- --with-system-v8
# # 3. Install therubyracer using the v8 binary we just installed
# $ gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8@315
# # 4. Install the remaining dependencies
# $ bundle install
# gem 'therubyracer'
#
gem "high_voltage"
gem "kramdown", require: false
gem "lockbox"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use SCSS for stylesheets
gem "sass-rails", "~> 6.0", ">= 6.0.0"
gem "terser", "~> 1.2"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "bootstrap", "5.2.3"
gem "json", "~> 2.8" # Legacy carry-over
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem "apipie-rails"
gem "config"
gem "devise", ">= 4.9.0"
gem "foreman"
gem "lograge"
gem "mail_form", ">= 1.9.0"
gem "oj"
gem "puma"
gem "simple_token_authentication"
gem "kaminari", "~> 1.2"
gem "invisible_captcha", "~> 2.3"
gem "devise-i18n"
gem "i18n-tasks", "~> 1.0.14" # , group: :development
gem "rails-i18n", "~> 7.0.10"
gem "translation"
# For File Uploads
gem "aws-sdk-s3", require: false
gem "azure-storage-blob", "~> 2.0", require: false
gem "google-cloud-storage", "~> 1.52", require: false
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
# Database backends
gem "mysql2"
gem "pg"
gem "sqlite3", force_ruby_platform: true
group :production, :development do
gem "rack-attack"
end
gem "rollbar"
gem "version", git: "https://github.com/pglombardo/version.git", branch: "master"
gem "administrate", "~> 0.20.1"
gem "rqrcode", "~> 2.2"
gem "turnout2024", require: "turnout"
gem "solid_queue", "~> 1.0"
gem "mission_control-jobs", "~> 0.5.0"