forked from pglombardo/PasswordPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
113 lines (93 loc) · 3.11 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
source 'https://rubygems.org'
ruby ENV['CUSTOM_RUBY_VERSION'] || '>=2.7.0'
gem 'rails', '~> 7.0.4'
group :development do
gem 'listen'
# Visual Studio Additions
gem 'rubocop'
gem 'ruby-debug-ide'
# 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-reporters'
gem 'minitest-rails', '>= 6.1.0'
gem 'selenium-webdriver', '4.7.1'
gem 'webdrivers', '~> 5.0', 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 mingw x64_mingw ]
gem 'debase', '>= 0.2.5.beta2', platforms: %i[ mri mingw x64_mingw ]
end
gem 'rack-cors'
gem 'rack-attack'
# 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 'lockbox'
gem 'high_voltage'
gem 'kramdown', require: false
# 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 'json', '~> 2.0' # Legacy carry-over
gem 'will_paginate', '~> 3.3.0'
gem 'will_paginate-bootstrap-style'
gem 'bootstrap', '~> 5.2', '>= 5.2.3'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# 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 'foreman'
gem 'puma'
gem 'oj'
gem 'devise', '>= 4.8.1'
gem 'config'
gem 'route_translator', '>= 13.0.0'
gem 'translation'
gem 'mail_form', '>= 1.9.0'
gem 'apipie-rails'
gem 'simple_token_authentication', '~> 1.18', '>= 1.18.0', git: "https://github.com/pglombardo/simple_token_authentication.git", branch: 'rails7-support'
gem 'lograge'
gem 'rollbar'
# For File Uploads
gem "aws-sdk-s3", require: false
gem "azure-storage-blob", "~> 2.0", require: false
gem "google-cloud-storage", "~> 1.11", require: false
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :production do
gem 'pg'
end
group :private do
gem 'sqlite3'
end
group :production, :private do
gem 'rack-timeout'
gem 'rack-throttle'
end