forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
116 lines (85 loc) · 2.72 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
113
114
115
116
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo| "https://github.com/#{repo}.git" }
###
# RUBY & RAILS
# Ruby version
ruby "2.7.1"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.0.3", ">= 6.0.3.2"
###
###
# AUTHENTICATION TOOLS
gem "bcrypt", "~> 3.1", ">= 3.1.15"
gem "rack-cors", require: "rack/cors"
###
###
# REST OF THE DEPENDENCIES
# Audit changes
gem "audited", "~> 4.9"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# Load env variables in dev & test modes
gem "dotenv-rails", "~> 2.7", groups: %i[development test]
# For http requests
gem "httparty"
gem "interactor-rails", "~> 2.0"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
gem "json_schema_tools", "~> 0.6"
gem "json-schema"
# Deal with sensitive data (encoding/decoding)
gem "jwt"
# Work with RDF data in various formats
gem "linkeddata", "~> 3.1"
# Use mailgun servers for sending mails
gem "mailgun_rails"
# Allow redirections in URI.open
gem "open_uri_redirections", "~> 0.2"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
# Use Puma as the app server
gem "puma", "~> 4.1"
# Manage authorization
gem "pundit"
# Centralize access to tasks
gem "rake"
# Get react support on rails
gem "react-rails"
# A Ruby client library for Redis
gem "redis"
# Use rubocop to ensure our code is clean
gem "rubocop", require: false
gem "rubyzip", "~> 2.3", require: "zip"
# Simplify seeding
gem "seed-fu"
# Validate the use of strong passwords
gem "strong_password", "~> 0.0.8"
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem "turbolinks", "~> 5"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker", "~> 4.0"
gem "mimemagic", github: "mimemagicrb/mimemagic", ref: "01f92d86d15d85cfd0f20dabd025dcbd36a8a60f"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "capybara"
gem "database_cleaner"
gem "debase"
gem "factory_bot_rails"
gem "faker"
gem "rspec-rails", "~> 4.0.1"
gem "ruby-debug-ide"
gem "shoulda-matchers"
gem "vcr", "~> 6.0"
gem "webmock", "~> 3.13"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "listen", "~> 3.2"
# Let's take advantage of rerun gem for hot-reload in development
gem "rerun"
# 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.0.0"
gem "web-console", ">= 3.3.0"
end