-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (50 loc) · 1.49 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
source 'https://rubygems.org'
ruby '3.1.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.0'
gem 'pg', '~> 1.3.4' #set for heroku
#gem 'mysql2', '>= 0.3.18', '< 0.5'
# Use Puma as the app server
gem 'puma', '~> 4.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem "bootsnap", ">= 1.4.4", require: false
# Use Capistrano for deployment
gem 'devise', '~> 4.8.0'
gem 'aws-sdk-s3'
gem 'image_processing'
gem "bootstrap_form", '~> 4.5'
gem 'redcarpet'
gem 'cancancan'
gem 'ancestry'
gem 'validates_email_format_of'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'webpacker', '~> 5.x'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'capybara'
gem "rspec_junit_formatter"
gem 'selenium-webdriver'
gem 'pry'
gem 'pry-byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
#gem 'guard-rspec', require: false
gem 'listen'
end
group :test do
gem "shoulda-matchers"
gem 'database_cleaner'
# gem 'selenium-webdriver'
gem 'simplecov'
gem 'timecop'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]