-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
158 lines (114 loc) · 2.94 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.0.8"
gem "bootsnap"
# Use SCSS for stylesheets
gem "sass-rails"
gem "sprockets"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier"
# Use CoffeeScript for .js.coffee assets and views
gem "coffee-rails"
# Use jquery as the JavaScript library
gem "jquery-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# Use devise for authentication
gem "devise"
gem "devise-i18n"
# Rails i18n
gem "rails-i18n"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", require: false, group: :doc
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem "spring", group: :development
# Phone number validation
gem "phony_rails"
# Slim templating engine
gem "slim-rails"
# Use the Bootstrap CSS framework and the FA icon font
gem "bootstrap-sass"
gem "font-awesome-sass", "~> 4.0"
# Gravatar helper
gem "gravatar-ultimate"
# Add Ruby 2.4.0 support
gem "xmlrpc"
# Use simple form for form building
gem "simple_form"
gem "cocoon"
# Use Kaminari for pagination
gem "kaminari"
# Use rolify and pundit for authorization
gem "rolify"
gem "pundit"
# GPG Signing
gem "mail-gpg"
# Asynchronous job execution
gem "delayed_job"
gem "delayed_job_active_record"
gem "daemons"
# SNMP Protocol handling
gem "snmp"
# Database dumping
gem "yaml_db"
# OAuth
gem "doorkeeper", "> 1.0beta"
gem "doorkeeper-i18n"
gem "net-smtp", require: false
gem "matrix"
# CORS
gem "rack-cors"
group :development do
# Use Capistrano for deployment
gem "capistrano"
gem "capistrano-rails"
gem "capistrano-bundler"
gem "capistrano-rbenv"
gem "net-ssh"
gem "pry"
gem "pry-rails"
gem "pry-doc"
# Continuous testing with Guard
gem "guard-rspec"
# Deploy to a puma server
gem "capistrano3-puma", "~> 5"
# Goodies for prettier printing of records in the console
gem "awesome_print"
gem "hirb"
gem "better_errors"
gem "binding_of_caller"
gem "web-console"
end
# Use debugger
# gem 'debugger', group: [:development, :test]
group :test, :development do
# Use SQLite for development
gem "sqlite3"
# RSpec for testing
gem "rspec-rails"
# Use factory bot instead of fixtures
gem "factory_bot_rails"
# Used for creating fake names, emails, etc.
gem "faker"
# Use Spring for RSpec
gem "spring-commands-rspec"
# Simplecov for code coverage statistics
gem "simplecov"
# Do feature testing with capybara
gem "capybara"
gem "capybara-screenshot"
gem "selenium-webdriver"
# File system modification testing
gem "fakefs", require: "fakefs/safe"
gem "byebug"
gem "brakeman"
gem "bundler-audit"
gem "standard"
end
group :production do
# Use postgresql as the database for Active Record in production
gem "pg"
gem "puma"
end