-
Notifications
You must be signed in to change notification settings - Fork 40
/
Gemfile
55 lines (43 loc) · 1020 Bytes
/
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
source 'https://rubygems.org'
git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
gem 'rails', '~> 7'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3', '~> 1.4'
gem 'sassc-rails'
gem 'coffee-rails'
gem 'bootstrap', "~> 5"
gem 'uglifier'
gem 'jquery-rails'
gem 'haml-rails'
gem 'gravatar_image_tag', git: 'https://github.com/chaosdorf/gravatar_image_tag'
gem 'kt-paperclip'
gem 'simple_form'
gem 'favicon_maker'
gem 'mini_magick'
gem 'puma'
gem 'autoprefixer-rails'
gem 'rails-controller-testing'
gem 'bootsnap'
gem 'git_rev'
gem "codeclimate-test-reporter", group: :test, require: nil
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# To use debugger
# gem 'debugger'
#
#
gem 'sentry-ruby'
gem 'sentry-rails'
group :development do
gem 'faker'
gem 'ruby-prof'
gem 'spring'
gem 'minitest'
end
group :production do
gem 'SyslogLogger'
gem 'pg'
end