-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
109 lines (84 loc) · 2.84 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.3.4'
# Reduces boot times through caching; required in config/boot.rb
# Without this, no commands work, so we need it everywhere.
gem 'bootsnap', '>= 1.4.2', require: false
# This group contains all dependencies that are needed to run the Rails backend.
# They are needed for the backend independent of the environment.
group :development, :test, :production do
# For authentication
gem 'devise', '~>4.9.4'
gem 'devise_token_auth', '~>1.2.4'
gem 'omniauth-apple'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'rack-cors', '~> 2.0.2', require: 'rack/cors'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.2'
# Core cubing related functionality.
gem 'twisty_puzzles', '>= 0.0.44'
# Database access. TODO: figure out whether this is still needed now that this project uses rails.
gem 'activerecord', '~> 7.2.2'
# Postgresql support.
gem 'pg', '~> 1.5.8'
gem 'ruby-filemagic'
gem 'active_model_serializers'
end
group :development, :test do
gem 'rspec-rails', '~> 7.1.0'
gem 'colorize'
gem 'parallel'
gem 'ruby-progressbar'
gem 'rubyzip'
gem 'wombat', '~> 3.0.0'
gem 'xdg'
end
group :development, :client, :test do
gem 'rake'
end
group :development, :production do
# Use Puma as the app server
gem 'puma', '~> 6.5'
# Pry is needed to inspect the production state via rails console.
gem 'pry'
gem 'google-api-client'
gem 'googleauth'
gem 'csv', '~> 3.3.2'
end
group :production do
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 5.3'
end
group :development do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.10'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
gem 'simplecov', require: false
end
group :rubocop do
gem 'rubocop', '~> 1.69.2', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', '~> 2.28.0', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', '~> 3.3.0', require: false
gem 'rubocop-rspec_rails', require: false
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 3.39'
gem 'selenium-webdriver', '~> 4.27.0'
gem 'rantly'
gem 'rspec'
gem 'rspec-prof'
end