This repository has been archived by the owner on Aug 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
121 lines (100 loc) · 2.27 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.0.0'
##
# Defaults
gem 'bcrypt', '~> 3.1.7'
# gem 'bootsnap', require: false
# gem 'coffee-rails', '~> 4.1.0'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'pg', '~> 0.18'
gem 'redis', '~> 3.0'
gem 'redis-rails', '~> 5.0'
gem 'sass-rails', '~> 5.0'
gem 'turbolinks', '~> 5.x'
gem 'uglifier', '>= 1.3.0'
#nested_form
gem 'nested_form_fields'
##
# Authentication
gem 'omniauth-identity'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin-oauth2', github: 'decioferreira/omniauth-linkedin-oauth2', branch: 'master'
gem 'omniauth-azure-activedirectory'
gem 'pundit'
gem 'rolify'
##
# Background job processing
gem 'sidekiq', '~> 4.1'
# gem 'clockwork', '~> 2.0' # for recurring background tasks without needing cron
##
# Browser check
gem 'browser'
##
# File uploads
gem 'aws-sdk', '~> 2.1'
gem 'refile', require: 'refile/rails', github: 'refile', branch: 'master'
gem 'sinatra', '~> 2.0'
gem 'refile-mini_magick'
gem 'refile-s3'
##
# Forms
gem 'ckeditor'
gem 'client_side_validations'
##
# Front-end
gem 'foundation-rails', '~> 6.2.0'
gem 'redcarpet', '~> 3.0'
##
# I18n
gem 'mobility'
gem 'activemodel-serializers-xml'
gem 'rails-i18n', '~> 5.0.0'
##
# List sorting
gem 'acts_as_list'
gem 'jquery-ui-rails', '~> 5.0'
gem 'record_tag_helper', '~> 1.0'
##
# Routing
gem 'redirector'
##
# Search
gem 'pg_search'
##
# Tagging
gem 'acts-as-taggable-on', '~> 4.0'
group :development, :test do
gem 'byebug', platform: :mri
gem 'debase', '0.2.2.beta10'
gem 'puma', '~> 3.0'
gem 'ruby-debug-ide'
end
group :production, :staging do
gem 'unicorn'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'pry-rails'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
##
# Profiling
gem 'rack-mini-profiler', require: false
gem 'flamegraph'
gem 'stackprof'
end
group :test do
gem 'guard'
gem 'guard-minitest'
gem 'minitest-rails', '~> 3.0.0'
gem 'minitest-rails-capybara', '~> 3.0.0'
gem 'minitest-reporters'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]