forked from indentlabs/notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
157 lines (128 loc) · 2.89 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
source 'https://rubygems.org'
ruby "~> 2.6"
# Server
gem 'rails'
gem 'puma', '~> 4.3'
gem 'puma-heroku'
# gem 'bootsnap', require: false
gem 'sprockets', '~> 3.7.2'
# Storage
gem 'aws-sdk', '~> 3.0'
gem 'aws-sdk-s3'
gem 'filesize'
# Image processing
gem 'paperclip'
gem 'rmagick'
gem 'image_processing'
gem 'active_storage_validations'
# Authentication
gem 'devise'
gem 'authority'
# Billing
gem 'stripe'
gem 'stripe_event'
gem 'paypal_client' # todo do we need this gem after all?
gem 'paypal-checkout-sdk'
# Design
gem 'material_icons'
gem 'font-awesome-rails'
gem 'sass-rails'
# Quality of Life
gem 'cocoon'
gem 'dateslices'
gem 'paranoia'
# Javascript
gem 'coffee-rails'
gem 'rails-jquery-autocomplete'
gem 'animate-rails'
gem 'webpacker'
gem 'react-rails'
# Form enhancements
gem 'redcarpet' #markdown formatting
gem 'acts_as_list' #sortables
gem 'tribute' # @mentions
# SEO
gem 'meta-tags'
# Smarts
# gem 'serendipitous', :path => "../serendipitous-gem"
gem 'serendipitous', git: 'https://github.com/indentlabs/serendipitous-gem.git'
# Editor
gem 'medium-editor-rails'
# Graphs & Charts
gem 'chartkick'
gem 'd3-rails'
# Analytics
gem 'mixpanel-ruby'
gem 'slack-notifier'
gem 'barnes'
# Apps
#gem 'easy_translate'
#gem 'levenshtein-ffi'
# Feature rollout
gem 'flipper'
gem 'flipper-redis'
# Forum
gem 'thredded', git: 'https://github.com/indentlabs/thredded.git', branch: 'feature/report-posts'
gem 'rails-ujs'
# Workers
gem 'sidekiq'
gem 'redis'
# Exports
gem 'csv'
# Admin
gem 'rails_admin', '~> 2.0'
# Tech debt & hacks
gem 'binding_of_caller' # see has_changelog.rb
group :test, :development do
gem 'pry'
gem 'sqlite3'
end
group :production do
gem 'rails_12factor'
gem 'uglifier', '>= 1.3.0'
gem 'newrelic_rpm'
end
group :test, :production do
gem 'mini_racer'
gem 'pg', '~> 1.2'
end
group :test do
gem 'better_errors'
gem 'capybara'
gem 'codeclimate-test-reporter', require: false
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'guard'
gem 'guard-minitest'
gem 'guard-rubocop'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'tzinfo-data' # addresses a bug when working on Windows
gem 'rails-perftest'
gem 'rspec-prof'
gem 'rspec-rails'
gem 'webmock'
gem 'rubocop', require: false
gem 'ruby-prof', '1.3.0'
gem 'shoulda-matchers', '~> 4.3'
gem 'rails-controller-testing'
end
group :development do
gem 'web-console'
gem 'bullet'
gem 'rack-mini-profiler'
gem 'memory_profiler'
gem 'flamegraph'
gem 'stackprof'
gem 'bundler-audit'
end
group :worker do
# These gems are only used in workers (and just so happen to slow down app startup
# by quite a bit), so we exclude them from all groups other than RAILS_GROUPS=worker.
# Document understanding
gem 'htmlentities'
gem 'birch', git: 'https://github.com/billthompson/birch.git', branch: 'birch-ruby22'
gem 'engtagger'
gem 'ibm_watson'
end