forked from PushOCCRP/Push-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·150 lines (113 loc) · 3.42 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
# frozen_string_literal: true
ruby "2.6.6"
source "https://rubygems.org"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~>5"
# Use SCSS for stylesheets
gem "sass-rails"
# Use Uglifier as compressor for JavaScript assets
# gem "uglifier"
# Use CoffeeScript for .coffee assets and views
# gem "coffee-rails"
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# 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"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc"
# Filemagic to check content type of images or whatever we need
gem "ruby-filemagic"
# Postgres, for databases
gem "pg"
# Rake, because it's what Ruby and Rails uses for all automation.
gem "rake"
# Elasticsearch integration
gem "dalli"
# Figaro is used to insure that environment variables exist on boot instead of silently failing later
gem "figaro"
# Not sure
gem "htmlentities"
# For making HTTP calls
gem "httparty"
# Memcache is used for caching our requests and such
gem "memcachier"
# Binding for ImageMagick for manipulating images, resizing etc.
gem "mini_magick"
<<<<<<< HEAD
#gem 'thin'
gem 'pg'
gem 'rake'
=======
# Nokogiri is an XML/HTML parser used for cleaning up the html
gem "nokogiri"
# The server we use
gem "puma"
# Not sure
gem "rails_12factor"
# Not Sure
gem "addressable"
# Authentication gem to handle users
gem "devise"
# Unsure
gem "rails-settings-cached", git: "https://github.com/huacnlee/rails-settings-cached", branch: "0.x"
# Unsure
gem "fcm"
# Unsure.
gem "rufus-scheduler"
# Rubocop is used as a linter
gem "rubocop", "~> 0.78.0", require: false
# Use Rails's default rubocop rulse
gem "rubocop-rails_config"
>>>>>>> 0930adbdfb041837e23849e58e3e4182238a5b74
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# We're using modern Webpacker to handle our Javascript assets now
gem "webpacker", "~> 5"
# Sprockets for asset management
gem "sprockets-rails"
# JWT is used by SNWorks for authentication
gem "jwt"
# This is for a work around in SEOWorks to determine image size if it's not returned
# If the bug for this is fixed, this can be removed
gem "rmagick"
# This allows us to schedule jobs to keep the caches hot specifically
gem "clockwork"
# Sidekiq is great for running background jobs
gem "sidekiq"
# Redis is good for caching, we're already using it for Sidekiq and Uniqush
gem "redis"
# Add error handling and monitoring
gem "sentry-raven"
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem "web-console"
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
<<<<<<< HEAD
gem 'spring'
gem 'mysql2'
end
gem 'redis'
gem 'le'
gem 'rails_12factor'
gem 'httparty'
gem 'figaro'
gem 'nokogiri'
gem 'puma'
gem 'dalli'
gem 'memcachier'
gem "mini_magick"
gem 'htmlentities'
=======
gem "spring"
>>>>>>> 0930adbdfb041837e23849e58e3e4182238a5b74
# Allow connections for the webpack-dev-server
gem "rack-cors", require: "rack/cors"
end