-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
113 lines (81 loc) · 2.49 KB
/
Gemfile
File metadata and controls
113 lines (81 loc) · 2.49 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'actionpack-page_caching'
gem 'will_paginate'
gem 'roo', "~> 2.10.0"
gem 'spreadsheet'
gem 'google-apis-sheets_v4'
gem 'addressable'
gem 'pundit'
gem 'carrierwave'
gem 'mini_magick'
gem 'cookies_eu'
gem 'Dhalang', github: 'conradsp/Dhalang', branch: 'master'
# Used to sync maturity data from github.
gem 'kramdown'
gem 'kramdown-parser-gfm'
gem 'recaptcha'
# Used for sync license information from github repo.
gem 'licensee'
gem 'rubysl-open3'
gem "net-http"
gem "net-smtp"
gem "net-imap"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1.5'
gem 'pg'
# Use Puma as the app server
gem 'puma'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'rswag-api'
gem 'rswag-ui'
gem 'graphql'
gem 'rack-cors'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'combine_pdf'
gem 'pdfkit'
gem 'ros-apartment', require: 'apartment'
gem 'amoeba'
gem 'faraday_middleware'
gem 'faker'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'rswag-specs'
gem 'rubocop'
gem 'rubocop-graphql'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'graphiql-rails'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen'
# 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'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Auth/login/etc
gem 'devise'
gem 'jwt'
gem 'simple_token_authentication', '~> 1.0'
# Use Mailgun API to send confirmation emails
gem 'mailgun-ruby'
# Uploading images through GraphQL using v2 multi part request spec.
# https://github.com/jetruby/apollo_upload_server-ruby
gem 'apollo_upload_server', '2.1'