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
65
+
gem'premailer-rails'
66
+
gem'valid_email'
67
+
68
+
# File Handling & Data Processing
69
+
gem'mime-types',require: 'mime/types/columnar'
70
+
71
+
# JavaScript
72
+
gem'jquery-rails'
53
73
gem'render_async'
54
74
75
+
# JSON
76
+
gem'oj'
77
+
78
+
# Views
79
+
gem'bluecloth'
80
+
gem'local_time'
81
+
gem'maildown'
82
+
gem'wicked'
83
+
84
+
# Pagination
85
+
gem'will_paginate'
86
+
87
+
# Performance & Monitoring
88
+
gem'bootsnap',require: false
89
+
gem'flamegraph'
90
+
gem'matrix'
91
+
gem'prawn'
92
+
gem'rack-mini-profiler'
93
+
gem'rails-autoscale-web'
94
+
gem'rbtrace'
95
+
gem'sentry-raven'
96
+
gem'scout_apm'
97
+
gem'skylight'
98
+
gem'stackprof'
99
+
100
+
# SEO & Sitemaps
101
+
gem'sitemap_generator'
102
+
103
+
# Storage
104
+
gem'aws-sdk-s3'
105
+
106
+
# Utilities
107
+
gem'rake'
108
+
gem'rrrretry'
109
+
55
110
group:developmentdo
56
111
gem'foreman'
57
112
gem'listen'
58
-
gem'web-console'
59
113
gem'memory_profiler'
114
+
gem'web-console'
115
+
gem'yard','~> 0.9.28'
60
116
end
61
117
62
118
group:testdo
63
119
gem'capybara'
64
-
# Not essential but helpful for save_and_open_page
65
-
gem'launchy'
120
+
gem'launchy'# Not essential but helpful for save_and_open_page
121
+
gem'minitest'
66
122
gem'mocha',require: false
67
123
gem'rails-controller-testing'
68
124
gem'simplecov',require: false
125
+
gem'test-prof'
69
126
gem'vcr'
70
127
gem'webmock'
71
-
gem'test-prof'
72
128
end
73
129
74
130
group:development,:testdo
@@ -79,42 +135,3 @@ group :development, :test do
79
135
gem'rubocop',require: false
80
136
gem'rubocop-performance'
81
137
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