This repository was 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
Expand file tree
/
Copy pathGemfile
More file actions
74 lines (59 loc) · 1.43 KB
/
Gemfile
File metadata and controls
74 lines (59 loc) · 1.43 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
source 'https://rubygems.org'
ruby '~> 2.4.1'
gem 'rails', '~> 5.0.3'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'jbuilder', '~> 2.6'
# Front-end
gem 'sass-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'turbolinks'
# Auth
gem 'devise', '~> 4.2'
gem 'pundit', '~> 1.1'
# I18n
gem 'rails-i18n', '~> 5.0'
gem 'devise-i18n', '~> 1.1'
gem 'kaminari-i18n', '~> 0.4'
# Views
gem 'bootstrap', '~> 4.0.0.alpha6'
gem 'devise-bootstrap-views', '~> 1.0.0.alpha1'
gem 'nested_form_fields', '~> 0.8'
gem 'bootstrap-datepicker-rails', '~> 1.6'
# Image processing
gem 'carrierwave', '~> 1.0'
gem 'mini_magick', '~> 4.6'
# Utilities
gem 'kaminari', '~> 0.17'
gem 'email_validator', '~> 1.6'
gem 'phony_rails', '~> 0.14'
gem 'enumerize', '~> 2.0'
gem 'httparty', '~> 0.14'
gem 'validates_overlap', '~> 0.8'
gem 'geokit-rails', '~> 2.2'
gem 'ffaker', '~> 2.5'
# Push notifications
gem 'houston', '~> 2.2'
gem 'gcm', '~> 0.1'
# Payments
gem 'alfabank', github: 'mendab1e/alfabank', branch: 'bindings'
# Monitoring
gem 'rollbar'
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background.
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'traceroute'
end
group :production do
# AWS adapter for CarrierWave
gem 'fog-aws', '~> 1.3'
# Use Redis for caching and background jobs
gem 'redis-rails', '~> 5.0'
end