This repository was archived by the owner on May 18, 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
112 lines (87 loc) · 1.9 KB
/
Gemfile
File metadata and controls
112 lines (87 loc) · 1.9 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
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
source 'https://rubygems.org'
gem 'rails', '4.2.10'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bcrypt', '~> 3.1.7'
gem 'eye', '0.7'
gem 'puma', '3.11.0'
### ----- ADDONS DEPENDENCIES ----- ###
gem 'pg', '0.17.1'
#gem 'mysql2'
#gem 'mongoid', '~> 4.0.0'
gem 'devise'
gem 'slim-rails'
gem 'slim'
gem 'kaminari'
gem 'rack-cors', :require => 'rack/cors'
gem 'rails-timeago'
gem 'select2-rails'
gem 'sidekiq'
gem 'sidekiq-failures'
gem 'figaro'
gem 'redis'
gem 'redis-store'
gem 'redis-activesupport'
gem 'webpacker', '~> 3.0'
gem 'rubocop'
gem 'trailblazer', '>= 2.0.3'
gem 'trailblazer-rails' # if you are in rails.
gem 'trailblazer-cells'
gem 'cells-rails'
gem 'cells-slim'
gem 'activerecord'
gem 'dry-validation'
gem 'roar'
gem 'reform'
gem 'reform-rails'
gem 'multi_json'
gem 'nokogiri'
gem 'dalli'
gem 'identity_cache'
### ----- END ----- ###
group :workaround do
gem 'rainbow', github:"sickill/rainbow"
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'rails-erd'
gem 'erd'
gem 'better_errors'
gem 'railroady'
gem 'rails-footnotes', '~> 4.0'
gem 'derailed_benchmarks'
gem 'quiet_assets'
gem 'bullet'
gem 'bundler-audit'
gem 'letter_opener'
end
group :development, :test do
gem 'byebug'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'pry-remote'
gem 'annotate'
gem 'faker'
gem 'rspec'
gem 'capybara'
end
group :production, :staging do
gem 'unicorn'
gem 'unicorn-worker-killer'
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'capistrano3-unicorn'
gem 'capistrano-sidekiq'
gem 'compass-rails'
gem 'compass'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]