forked from vtambourine/it61-rails
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathGemfile
155 lines (124 loc) · 3.45 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
# frozen_string_literal: true
ruby '3.2.2'
source 'https://rubygems.org'
gem 'rails', '~> 6.1'
gem 'rails-i18n', '~> 6.0'
# Databases
gem 'hiredis'
gem 'pg'
gem 'redis'
# Queue
gem 'sidekiq', '>= 5.2.7'
# Integrations
gem 'http'
gem 'net-smtp'
gem 'net-pop'
gem 'net-imap'
gem 'multipart-post'
gem 'mailchimp-api', require: 'mailchimp'
gem 'mailgun-ruby'
# Normalization and locales
gem 'postrank-uri'
gem 'unicode'
# Authentication and authorization
gem 'cancancan'
gem 'devise', '>= 4.7.1'
gem 'omniauth', '>= 1.9.0'
gem 'omniauth-facebook', '>= 5.0.0'
gem 'omniauth-github', github: 'omniauth/omniauth-github'
gem 'omniauth-google-oauth2', '>= 0.8.0'
gem 'omniauth-twitter', '>= 1.4.0'
gem 'omniauth-vkontakte', '>= 1.5.1'
# Request handling
gem 'friendly_id', '>= 5.3.0'
gem 'has_scope', '>= 0.7.2'
# Decoration
gem 'active_model_serializers', '>= 0.10.10'
gem 'activemodel-serializers-xml', '>= 1.0.2'
gem 'draper', '>= 3.1.0'
gem 'fast_jsonapi', '>= 1.5'
gem 'oj'
gem 'ox'
# Compile and serve assets
gem 'autoprefixer-rails'
gem 'font-awesome-sass'
gem 'sassc-rails', '>= 2.1.2'
gem 'uglifier'
gem 'webpacker'
# View template compilers and helpers
gem 'jbuilder', '~> 2.9', '>= 2.9.1'
gem 'redcarpet'
gem 'slim-rails', '>= 3.2.0'
# gem 'active_link_to'
gem 'high_voltage'
gem 'meta-tags', '>= 2.13.0'
gem 'simple_form', '>= 5.0.2'
# Reporting
gem 'jwt'
# Documentation
gem 'sdoc', group: :doc
# gem 'apipie-rails', git: 'https://github.com/Apipie/apipie-rails.git', ref: 'f697ec2a887cd73c00c846eceb2ce63a050ccb20'
# Application server
gem 'puma-rails', '>= 0.0.2'
# Sexy rails console
gem 'awesome_print'
gem 'pry-rails'
# Image and AWS S3 management
gem 'ruby-vips'
gem 'asset_sync', '>= 2.9.0'
gem 'carrierwave', '>= 2.0.2'
gem 'carrierwave-vips', '>= 1.2.0'
gem 'fog-aws', '< 3'
# Monitoring
gem 'newrelic_rpm'
gem 'rollbar'
gem 'silencer'
# paginator
gem 'kaminari', '>= 1.2.1'
# tags
gem 'acts-as-taggable-on', '>= 6.5.0'
# Utils
gem 'icalendar'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen'
gem 'web-console', '>= 4.2.1'
# 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 'spring-watcher-listen', '~> 2.0.0'
gem 'annotate', '>= 3.0.3', require: false
gem 'capistrano', require: false
gem 'letter_opener'
end
group :development, :test do
gem 'bootsnap'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
# gem 'travis'
# Data generator
gem 'ffaker'
# Model factories
gem 'factory_bot_rails', '>= 5.1.1'
gem 'rspec-rails', '>= 3.9.0'
gem 'rubocop', require: false
gem 'rubocop-faker', require: false
gem 'rubocop-i18n', require: false
gem 'rubocop-md', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', '>= 2.4.2', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'codecov', require: false
gem 'database_cleaner', require: false
gem 'shoulda-matchers', '>= 4.2.0', require: false
gem 'simplecov', require: false
gem 'test-prof', require: false
gem 'webmock', require: false
end
# Heroku compatibility
gem 'rails_12factor', group: :production
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]