You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gem'mail',require: ['mail','mail/utilities','mail/parsers']# parsers is used by `valid_email` and may be causing https://github.com/mikel/mail/issues/912#issuecomment-170121429
68
+
gem'premailer-rails'
69
+
gem'valid_email'
70
+
71
+
# File Handling & Data Processing
72
+
gem'mime-types',require: 'mime/types/columnar'
73
+
74
+
# JavaScript
75
+
gem'jquery-rails'
53
76
gem'render_async'
54
77
78
+
# JSON
79
+
gem'oj'
80
+
81
+
# Views
82
+
gem'bluecloth'
83
+
gem'local_time'
84
+
gem'maildown'
85
+
gem'wicked'
86
+
87
+
# Pagination
88
+
gem'will_paginate'
89
+
90
+
# Performance & Monitoring
91
+
gem'bootsnap',require: false
92
+
gem'flamegraph'
93
+
gem'matrix'
94
+
gem'prawn'
95
+
gem'rack-mini-profiler'
96
+
gem'rails-autoscale-web'
97
+
gem'rbtrace'
98
+
gem'sentry-raven'
99
+
gem'scout_apm'
100
+
gem'skylight'
101
+
gem'stackprof'
102
+
103
+
# SEO & Sitemaps
104
+
gem'sitemap_generator'
105
+
106
+
# Storage
107
+
gem'aws-sdk-s3'
108
+
109
+
# Tests
110
+
gem'minitest'
111
+
112
+
# Utilities
113
+
gem'rake'
114
+
gem'rrrretry'
115
+
55
116
group:developmentdo
56
117
gem'foreman'
57
118
gem'listen'
58
-
gem'web-console'
59
119
gem'memory_profiler'
120
+
gem'web-console'
60
121
end
61
122
62
123
group:testdo
63
124
gem'capybara'
64
-
# Not essential but helpful for save_and_open_page
65
-
gem'launchy'
125
+
gem'launchy'# Not essential but helpful for save_and_open_page
66
126
gem'mocha',require: false
67
127
gem'rails-controller-testing'
68
128
gem'simplecov',require: false
129
+
gem'test-prof'
69
130
gem'vcr'
70
131
gem'webmock'
71
-
gem'test-prof'
72
132
end
73
133
74
134
group:development,:testdo
@@ -79,42 +139,3 @@ group :development, :test do
79
139
gem'rubocop',require: false
80
140
gem'rubocop-performance'
81
141
end
82
-
83
-
gem'rack-mini-profiler'
84
-
85
-
gem'sidekiq'
86
-
gem'sinatra'
87
-
88
-
gem'aws-sdk-s3'
89
-
90
-
gem'mail',require: ['mail','mail/utilities','mail/parsers']# parsers is used by `valid_email` and may be causing https://github.com/mikel/mail/issues/912#issuecomment-170121429
0 commit comments