-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
130 lines (98 loc) · 2.75 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# frozen_string_literal: true
source "https://rubygems.org"
# Dotenv for .env file variables
gem "dotenv-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1"
# Use Puma as the app server
gem "puma", "~> 5.5.0"
# Boot large ruby/rails apps faster
gem "bootsnap", "~> 1.9"
gem "listen", "~> 3.7"
# Sass
gem "sassc-rails", "~> 2.1"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker", "~> 5.0"
# Not sure why
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
# Bulma
gem "bulma-rails", "~> 0.9.1"
gem "font-awesome-sass", "~> 5.15"
# Add nested forms support
gem "vanilla_nested", "~> 1.6"
# Charts
gem "chartkick", "~> 4.0"
# Friendly ids
# Will replace endpoints like /users/:id with /users/:username
gem "friendly_id", "~> 5.4"
# Paginate stuff
gem "will_paginate", "~> 3.3"
gem "will_paginate-bulma", "~> 1.0"
# Paperclip for easy file attachment
# Using the kt fork as, paperclip is deprecated
gem "kt-paperclip", "~> 7.0"
# Use devise for users and admins
gem "devise", "~> 4.8"
gem "omniauth-rails_csrf_protection"
gem "omniauth-zeuswpi"
# Use cancancan for authorization
gem "cancancan", "~> 3.3"
# Default avatar for users
gem "identicon", "0.0.5"
# Run stuff in the background
gem "daemons", "~> 1.4"
gem "delayed_job", "~> 4.1"
gem "delayed_job_active_record"
# Needed for deployment somehow
gem "bcrypt_pbkdf"
gem "ed25519"
# Ruby debugger
gem "byebug"
gem "httparty", "~> 0.20.0"
# windows support (linux timezone directory is used in the project)
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw]
# Sentry
gem "sentry-rails"
gem "sentry-ruby"
gem "stackprof"
# Production dependencies
group :production do
gem "mysql2", "~> 0.5.3"
end
# Test dependencies
group :test do
gem "rspec-rails"
gem "webmock"
end
# Development dependencies
group :development do
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
# Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.
gem "annotate", "~> 3.1"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring", "~> 3.0"
# Deployment
gem "capistrano"
gem "capistrano-asdf"
gem "capistrano-passenger"
gem "capistrano-rails"
# Linting
gem "rubocop", "~> 1.30"
gem "rubocop-rails", "~> 2.14"
gem "rubocop-rspec", "~> 2.11"
end
# Development/Test shared dependencies
group :development, :test do
gem "factory_bot", "~> 6.2"
gem "factory_bot_rails", "~> 6.2"
gem "faker", "~> 2.19"
gem "rails-controller-testing", "~> 1.0"
gem "tqdm", "~> 0.3.0"
end
# Documentation dependencies
group :doc do
gem "sdoc", "~> 2.2"
end