-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
77 lines (58 loc) · 1.35 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.4'
# Rails
gem 'rails', '~> 5.2.8', '>= 5.2.8.1'
# Database
gem 'pg', '>= 0.18', '< 2.0'
# Server
gem 'puma', '~> 5.6'
# HTTP Client
gem 'faraday'
# Json API Builder
# gem 'jbuilder', '~> 2.5'
# Redis for Action Cable
# gem 'redis', '~> 4.0'
# Secure Password
# gem 'bcrypt', '~> 3.1.7'
# Image Processing
# gem 'mini_magick', '~> 4.8'
# Deployment
# gem 'capistrano-rails', group: :development
# Performance
gem 'bootsnap', '>= 1.1.0', require: false
# Cross-Origin Resource Sharing (CORS)
gem 'rack-cors'
# Test and Development Gems
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'figaro'
gem 'pry'
gem 'rspec-rails'
end
# Development Gems
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pry-rails'
gem 'rubocop-graphql'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Test Gems
group :test do
gem 'shoulda-matchers'
gem 'simplecov'
gem 'vcr'
gem 'webmock'
end
# Timezone data for Windows
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Factory Bot for testing
gem 'factory_bot_rails'
# Fake data generator
gem 'faker'
# GraphQL and GraphiQL
gem 'graphiql-rails', group: :development
gem 'graphql', '~> 2.0'