This repository has been archived by the owner on Mar 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
71 lines (59 loc) · 1.58 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
source 'https://rubygems.org'
ruby '~> 2.7.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.0'
# Use sqlite3 as the database for Active Record
gem 'pg', '~> 1.0'
# Use Puma as the app server
gem 'puma', '~> 4.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3'
# Turbolinks makes navigating your web application faster.
gem 'turbolinks', '~> 5.0'
# Build JSON APIs with ease.
gem 'jbuilder', '~> 2.5'
# Front-end
gem 'slim-rails', '~> 3.1'
gem 'bootstrap-sass', '~> 3.3'
gem 'nested_form_fields', '~> 0.8'
gem 'kaminari', '~> 1.0'
# Auth
gem 'devise', '~> 4.2'
gem 'bcrypt', '~> 3.1'
gem 'pundit', '~> 1.1'
# Image processing
gem 'carrierwave', '~> 1.0'
gem 'carrierwave-base64', '~> 2.5'
gem 'mini_magick', '~> 4.3'
# Utilities
gem 'pusher', '~> 0.18'
gem 'vkontakte_api', '~> 1.4'
gem 'merit', '~> 2.4'
gem 'semantic', '~> 1.6'
gem 'ffaker', '~> 2.4'
gem 'houston', '~> 2.2'
# Monitoring
gem 'rollbar', '~> 2.14'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '~> 3.5'
gem 'listen', '~> 3.0.5'
# Pry
gem 'pry-rails', '~> 0.3'
gem 'traceroute', '~> 0.5'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
end
group :test do
gem 'mocha'
end
group :production do
# AWS adapter for CarrierWave
gem 'fog-aws', '~> 1.2'
end