This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
179 lines (126 loc) · 3.25 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
source 'https://rubygems.org'
# dotenv should always be loaded before rails
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'rails'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Enable deep clone of active record models
gem 'deep_cloneable'
gem 'warden', git: 'https://github.com/hassox/warden.git', branch: 'master'
# Use Puma as the app server
gem 'puma'
# serializer
gem 'active_model_serializers'
# haml
gem 'haml-rails'
# bootstrap saas
gem 'bootstrap-sass', '~> 3.3.5'
# Automatically set a class on active links
gem 'active_link_to'
# Pagination
gem 'kaminari'
# Decorators
gem 'draper'
# Gestion des comptes utilisateurs
gem 'devise'
gem 'devise-async'
gem 'openid_connect'
gem 'omniauth-github'
# Locales par défaut
gem 'rails-i18n'
gem 'rest-client'
gem 'typhoeus'
gem 'clamav-client', require: 'clamav/client'
gem 'carrierwave'
gem 'carrierwave-i18n'
gem 'copy_carrierwave_file'
gem 'fog'
gem 'fog-openstack'
gem 'pg'
gem 'rbnacl-libsodium'
gem 'bcrypt'
gem 'rgeo-geojson'
gem 'chartkick'
gem 'lograge'
gem 'logstash-event'
gem 'font-awesome-rails'
gem 'hashie'
gem 'mailjet'
gem "premailer-rails"
gem 'smart_listing'
gem 'groupdate'
gem 'bootstrap-wysihtml5-rails', '~> 0.3.3.8'
gem 'spreadsheet_architect'
gem 'axlsx', '~> 3.0.0.pre' # https://github.com/randym/axlsx/issues/501#issuecomment-373640365
gem 'openstack'
gem 'browser'
gem 'simple_form'
gem 'skylight'
gem 'scenic'
gem 'sanitize-url'
gem 'flipflop'
gem 'aasm'
gem 'webpacker', '>= 4.0.x'
gem 'after_party'
gem 'zxcvbn-ruby', require: 'zxcvbn'
# Cron jobs
gem 'delayed_job_active_record'
gem "daemons"
gem 'delayed_cron_job'
gem "delayed_job_web"
gem 'select2-rails'
# PDF Generation
gem 'prawn'
gem 'prawn_rails'
gem 'chunky_png'
gem 'sentry-raven'
gem "administrate"
gem 'rack-mini-profiler'
group :test do
gem 'launchy'
gem 'factory_bot'
gem 'database_cleaner'
gem 'webmock'
gem 'shoulda-matchers', require: false
gem 'timecop'
gem 'guard'
gem 'guard-rspec', require: false
gem 'guard-livereload', require: false
gem 'vcr'
gem 'rails-controller-testing'
# Integration testing
gem 'capybara'
gem 'capybara-selenium'
# Save a dump of the page when an integration test fails
gem 'capybara-screenshot'
# Access emails during integration tests
gem 'capybara-email'
end
group :development do
gem 'brakeman', require: false
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
gem 'rack-handlers'
gem 'xray-rails'
gem 'rubocop', require: false
gem 'rubocop-rspec-focused', require: false
gem 'haml-lint'
gem 'scss_lint', require: false
gem 'letter_opener_web'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'pry-byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec'
gem 'rspec-rails'
# Deploy
gem 'mina', git: 'https://github.com/mina-deploy/mina.git'
gem 'rspec_junit_formatter'
end