-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGemfile
More file actions
125 lines (94 loc) · 2.29 KB
/
Gemfile
File metadata and controls
125 lines (94 loc) · 2.29 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
114
115
116
117
118
119
120
121
122
123
124
125
# frozen_string_literal: true
source "https://rubygems.org"
gem "csv"
gem "observer"
# Dotenv for .env file variables
gem "dotenv-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 8.1.3"
# Use Puma as the app server
gem "puma"
# Boot large ruby/rails apps faster
gem "bootsnap"
gem "listen"
# Sass
gem "sassc-rails"
# Not sure why
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
# Bulma
gem "bulma-rails", "~> 0.9"
gem "font-awesome-sass", "~> 5.15"
# Add nested forms support
gem "vanilla_nested"
# Charts
gem "chartkick"
# Friendly ids
# Will replace endpoints like /users/:id with /users/:username
gem "friendly_id"
# Paginate stuff
gem "will_paginate"
gem "will_paginate-bulma"
# Paperclip for easy file attachment
# Using the kt fork as, paperclip is deprecated
gem "kt-paperclip"
# Use devise for users and admins
gem "devise"
gem "omniauth-rails_csrf_protection"
gem "omniauth-zeuswpi"
# Use cancancan for authorization
gem "cancancan"
# Default avatar for users
gem "identicon", "0.0.5"
# Run stuff in the background
gem "daemons"
gem "delayed_job"
gem "delayed_job_active_record"
# Ruby debugger
gem "byebug"
gem "httparty"
# windows support (linux timezone directory is used in the project)
gem "tzinfo-data", platforms: %i[windows]
# Sentry
gem "sentry-rails"
gem "sentry-ruby"
gem "stackprof"
# Production dependencies
group :production do
gem "mysql2"
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"
# Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.
gem "annotate"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
# Linting
gem "rubocop"
gem "rubocop-factory_bot"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "rubocop-rspec_rails"
# For ./bin/dev
gem "foreman"
end
# Development/Test shared dependencies
group :development, :test do
gem "factory_bot"
gem "factory_bot_rails"
gem "faker"
gem "rails-controller-testing"
gem "tqdm"
end
# Documentation dependencies
group :doc do
gem "sdoc"
end