forked from pglombardo/PasswordPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
122 lines (99 loc) · 3.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
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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby ENV['CUSTOM_RUBY_VERSION'] || '>=3.1.4'
gem 'rails', '~> 7.1.1'
group :development do
gem 'listen'
# Visual Studio Additions
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'ruby-debug-ide'
gem 'pry-rails'
# Access an interactive console on exception pages or by
# calling 'console' anywhere in the code.
gem 'web-console', '>= 4.2.0'
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 'debase', '>= 0.2.5.beta2', platforms: %i[mri mingw x64_mingw]
gem 'debug', platforms: %i[mri mingw x64_mingw]
end
gem 'rack-attack'
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', '>= 1.4.4', require: false
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
gem 'terser', '~> 1.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'bootstrap', '5.2.3'
gem 'json', '~> 2.7' # Legacy carry-over
gem 'will_paginate', '~> 4.0.0'
gem 'will_paginate-bootstrap-style'
# 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 'rollbar'
gem 'simple_token_authentication'
gem 'devise-i18n'
gem 'i18n-tasks', '~> 1.0.13' # , group: :development
gem 'rails-i18n', '~> 7.0.8'
gem 'route_translator', '>= 13.0.0'
gem 'translation'
# For File Uploads
gem 'aws-sdk-s3', require: false
gem 'azure-storage-blob', '~> 2.0', require: false
gem 'google-cloud-storage', '~> 1.45', 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 do
gem 'rack-throttle', '0.7.0'
gem 'rack-timeout'
end
gem 'version', git: 'https://github.com/pglombardo/version.git', branch: 'master'
gem 'derailed_benchmarks', group: :development
gem 'stackprof', group: :development