2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-03-07 11:20:19 -06:00
|
|
|
source 'https://rubygems.org'
|
2014-08-21 20:38:31 -05:00
|
|
|
# if there is a super emergency and rubygems is playing up, try
|
|
|
|
#source 'http://production.cf.rubygems.org'
|
2017-04-25 16:55:18 -05:00
|
|
|
|
2018-02-25 17:29:25 -06:00
|
|
|
gem 'bootsnap', require: false, platform: :mri
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2015-04-24 15:24:07 -05:00
|
|
|
def rails_master?
|
|
|
|
ENV["RAILS_MASTER"] == '1'
|
2013-07-20 19:56:48 -05:00
|
|
|
end
|
|
|
|
|
2014-02-17 10:44:28 -06:00
|
|
|
if rails_master?
|
2014-11-12 15:51:06 -06:00
|
|
|
gem 'arel', git: 'https://github.com/rails/arel.git'
|
2014-02-17 10:44:28 -06:00
|
|
|
gem 'rails', git: 'https://github.com/rails/rails.git'
|
2013-07-20 19:56:48 -05:00
|
|
|
else
|
2019-12-05 20:00:16 -06:00
|
|
|
# NOTE: Until rubygems gives us optional dependencies we are stuck with this needing to be explicit
|
|
|
|
# this allows us to include the bits of rails we use without pieces we do not.
|
|
|
|
#
|
|
|
|
# To issue a rails update bump the version number here
|
2020-05-07 19:44:51 -05:00
|
|
|
gem 'actionmailer', '6.0.3'
|
|
|
|
gem 'actionpack', '6.0.3'
|
|
|
|
gem 'actionview', '6.0.3'
|
|
|
|
gem 'activemodel', '6.0.3'
|
|
|
|
gem 'activerecord', '6.0.3'
|
|
|
|
gem 'activesupport', '6.0.3'
|
|
|
|
gem 'railties', '6.0.3'
|
2017-08-22 21:58:25 -05:00
|
|
|
gem 'sprockets-rails'
|
2013-07-20 19:56:48 -05:00
|
|
|
end
|
2014-10-14 22:05:38 -05:00
|
|
|
|
2020-03-23 23:21:50 -05:00
|
|
|
gem 'json'
|
|
|
|
|
2019-12-09 19:31:16 -06:00
|
|
|
# TODO: At the moment Discourse does not work with Sprockets 4, we would need to correct internals
|
|
|
|
# This is a desired upgrade we should get to.
|
|
|
|
gem 'sprockets', '3.7.2'
|
|
|
|
|
2019-10-06 23:33:37 -05:00
|
|
|
# this will eventually be added to rails,
|
|
|
|
# allows us to precompile all our templates in the unicorn master
|
|
|
|
gem 'actionview_precompiler', require: false
|
|
|
|
|
2019-02-06 00:33:36 -06:00
|
|
|
gem 'seed-fu'
|
|
|
|
|
2019-02-03 23:10:13 -06:00
|
|
|
gem 'mail', require: false
|
2017-06-13 06:27:05 -05:00
|
|
|
gem 'mini_mime'
|
2017-11-29 02:24:27 -06:00
|
|
|
gem 'mini_suffix'
|
2014-08-24 02:43:08 -05:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'redis'
|
2019-12-11 20:35:43 -06:00
|
|
|
|
|
|
|
# This is explicitly used by Sidekiq and is an optional dependency.
|
|
|
|
# We tell Sidekiq to use the namespace "sidekiq" which triggers this
|
|
|
|
# gem to be used. There is no explicit dependency in sidekiq cause
|
|
|
|
# redis namespace support is optional
|
|
|
|
# We already namespace stuff in DiscourseRedis, so we should consider
|
|
|
|
# just using a single implementation in core vs having 2 namespace implementations
|
2015-12-31 22:40:12 -06:00
|
|
|
gem 'redis-namespace'
|
2013-07-20 19:56:48 -05:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
# NOTE: AM serializer gets a lot slower with recent updates
|
|
|
|
# we used an old branch which is the fastest one out there
|
|
|
|
# are long term goal here is to fork this gem so we have a
|
|
|
|
# better maintained living fork
|
2015-04-23 15:20:53 -05:00
|
|
|
gem 'active_model_serializers', '~> 0.8.3'
|
2013-11-28 16:20:56 -06:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'onebox'
|
2014-01-27 14:09:09 -06:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'http_accept_language', require: false
|
2016-02-06 13:49:39 -06:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
# Ember related gems need to be pinned cause they control client side
|
|
|
|
# behavior, we will push these versions up when upgrading ember
|
2016-04-17 21:47:52 -05:00
|
|
|
gem 'ember-rails', '0.18.5'
|
2020-02-05 07:51:00 -06:00
|
|
|
gem 'discourse-ember-source', '~> 3.12.2'
|
2019-01-10 04:06:01 -06:00
|
|
|
gem 'ember-handlebars-template', '0.8.0'
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2013-06-06 16:50:49 -05:00
|
|
|
gem 'barber'
|
2013-04-25 20:45:35 -05:00
|
|
|
|
2019-02-04 00:46:38 -06:00
|
|
|
gem 'message_bus'
|
2015-10-12 01:26:20 -05:00
|
|
|
|
2017-11-08 22:40:34 -06:00
|
|
|
gem 'rails_multisite'
|
2013-02-09 11:04:52 -06:00
|
|
|
|
2018-02-25 17:25:58 -06:00
|
|
|
gem 'fast_xs', platform: :mri
|
2013-12-05 00:40:16 -06:00
|
|
|
|
2018-02-25 17:25:58 -06:00
|
|
|
# may move to xorcist post: https://github.com/fny/xorcist/issues/4
|
|
|
|
gem 'fast_xor', platform: :mri
|
2015-02-10 21:30:12 -06:00
|
|
|
|
2018-01-04 02:53:53 -06:00
|
|
|
gem 'fastimage'
|
2017-08-07 03:32:35 -05:00
|
|
|
|
2017-10-03 02:00:42 -05:00
|
|
|
gem 'aws-sdk-s3', require: false
|
2019-02-13 14:26:40 -06:00
|
|
|
gem 'aws-sdk-sns', require: false
|
2015-05-25 02:57:06 -05:00
|
|
|
gem 'excon', require: false
|
2013-11-21 10:33:09 -06:00
|
|
|
gem 'unf', require: false
|
2013-02-28 13:31:39 -06:00
|
|
|
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'email_reply_trimmer'
|
2015-12-10 01:58:52 -06:00
|
|
|
|
2018-07-08 21:30:18 -05:00
|
|
|
# Forked until https://github.com/toy/image_optim/pull/162 is merged
|
2019-08-08 00:03:35 -05:00
|
|
|
# https://github.com/discourse/image_optim
|
2017-04-20 01:40:16 -05:00
|
|
|
gem 'discourse_image_optim', require: 'image_optim'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'multi_json'
|
|
|
|
gem 'mustache'
|
2016-06-07 01:51:39 -05:00
|
|
|
gem 'nokogiri'
|
2019-07-30 14:05:08 -05:00
|
|
|
gem 'css_parser', require: false
|
2017-06-08 17:02:30 -05:00
|
|
|
|
2013-05-09 20:50:58 -05:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-facebook'
|
|
|
|
gem 'omniauth-twitter'
|
2016-02-24 19:21:59 -06:00
|
|
|
gem 'omniauth-instagram'
|
2017-08-07 03:43:54 -05:00
|
|
|
gem 'omniauth-github'
|
2014-09-02 21:53:22 -05:00
|
|
|
|
2013-08-18 00:35:07 -05:00
|
|
|
gem 'omniauth-oauth2', require: false
|
2016-01-11 01:17:13 -06:00
|
|
|
|
2019-06-03 13:17:00 -05:00
|
|
|
gem 'omniauth-google-oauth2'
|
2019-04-29 00:47:05 -05:00
|
|
|
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'oj'
|
2018-06-19 01:13:14 -05:00
|
|
|
gem 'pg'
|
|
|
|
gem 'mini_sql'
|
2014-05-16 13:16:33 -05:00
|
|
|
gem 'pry-rails', require: false
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'r2', require: false
|
2013-02-05 13:16:51 -06:00
|
|
|
gem 'rake'
|
2013-07-20 19:56:48 -05:00
|
|
|
|
2017-03-02 20:14:35 -06:00
|
|
|
gem 'thor', require: false
|
2019-06-14 01:42:53 -05:00
|
|
|
gem 'diffy', require: false
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'rinku'
|
2014-02-23 17:00:25 -06:00
|
|
|
gem 'sidekiq'
|
2018-07-31 16:12:55 -05:00
|
|
|
gem 'mini_scheduler'
|
2014-04-17 00:57:17 -05:00
|
|
|
|
2016-05-20 02:06:44 -05:00
|
|
|
gem 'execjs', require: false
|
2016-05-19 07:25:08 -05:00
|
|
|
gem 'mini_racer'
|
2019-12-05 20:00:16 -06:00
|
|
|
|
|
|
|
# TODO: determine why highline is being held back and upgrade to latest
|
2018-06-27 15:50:00 -05:00
|
|
|
gem 'highline', '~> 1.7.0', require: false
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2020-05-22 22:25:56 -05:00
|
|
|
# TODO: Upgrading breaks Sidekiq Web
|
|
|
|
# This is a bit of a hornets nest cause in an ideal world we much prefer
|
|
|
|
# if Sidekiq reused session and CSRF mitigation with Discourse on the
|
|
|
|
# _forum_session cookie instead of a rack.session cookie
|
2020-05-18 17:43:45 -05:00
|
|
|
gem 'rack', '2.2.2'
|
2020-01-13 01:07:16 -06:00
|
|
|
|
2013-10-28 19:00:31 -05:00
|
|
|
gem 'rack-protection' # security
|
2019-10-01 21:08:41 -05:00
|
|
|
gem 'cbor', require: false
|
|
|
|
gem 'cose', require: false
|
2019-12-16 18:33:51 -06:00
|
|
|
gem 'addressable'
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2017-08-07 03:32:35 -05:00
|
|
|
# Gems used only for assets and not required in production environments by default.
|
|
|
|
# Allow everywhere for now cause we are allowing asset debugging in production
|
2013-02-05 13:16:51 -06:00
|
|
|
group :assets do
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'uglifier'
|
2014-08-08 07:54:31 -05:00
|
|
|
gem 'rtlit', require: false # for css rtling
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-13 04:32:18 -06:00
|
|
|
group :test do
|
2017-04-14 23:11:02 -05:00
|
|
|
gem 'webmock', require: false
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'fakeweb', require: false
|
2013-05-13 03:04:03 -05:00
|
|
|
gem 'minitest', require: false
|
2019-04-01 00:00:11 -05:00
|
|
|
gem 'simplecov', require: false
|
2019-04-19 03:52:31 -05:00
|
|
|
gem "test-prof"
|
2013-02-13 04:32:18 -06:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
group :test, :development do
|
2016-10-18 22:30:43 -05:00
|
|
|
gem 'rspec'
|
|
|
|
gem 'mock_redis'
|
2017-04-13 09:26:07 -05:00
|
|
|
gem 'listen', require: false
|
2013-05-13 03:04:03 -05:00
|
|
|
gem 'certified', require: false
|
2018-05-28 02:09:02 -05:00
|
|
|
gem 'fabrication', require: false
|
2020-04-21 11:32:42 -05:00
|
|
|
gem 'mocha', require: false
|
2019-12-10 19:43:07 -06:00
|
|
|
|
2013-05-13 23:00:12 -05:00
|
|
|
gem 'rb-fsevent', require: RUBY_PLATFORM =~ /darwin/i ? 'rb-fsevent' : false
|
2019-12-05 20:00:16 -06:00
|
|
|
|
|
|
|
# TODO determine if we can update this to 0.10, API changes happened
|
|
|
|
# we would like to upgrade it if possible
|
2013-05-13 23:00:12 -05:00
|
|
|
gem 'rb-inotify', '~> 0.9', require: RUBY_PLATFORM =~ /linux/i ? 'rb-inotify' : false
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2020-05-04 00:20:30 -05:00
|
|
|
gem 'rspec-rails'
|
2019-12-05 20:00:16 -06:00
|
|
|
|
|
|
|
gem 'shoulda-matchers', require: false
|
2016-10-18 22:30:43 -05:00
|
|
|
gem 'rspec-html-matchers'
|
2020-02-17 18:03:57 -06:00
|
|
|
gem 'byebug', require: ENV['RM_INFO'].nil?, platform: :mri
|
2019-11-18 09:39:41 -06:00
|
|
|
gem "rubocop-discourse", require: false
|
2019-04-01 03:27:49 -05:00
|
|
|
gem 'parallel_tests'
|
2020-04-27 17:40:07 -05:00
|
|
|
|
|
|
|
gem 'rswag-specs'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-04-01 17:28:26 -05:00
|
|
|
group :development do
|
2020-02-17 18:03:57 -06:00
|
|
|
gem 'ruby-prof', require: false, platform: :mri
|
2016-07-04 20:10:42 -05:00
|
|
|
gem 'bullet', require: !!ENV['BULLET']
|
2020-02-17 18:03:57 -06:00
|
|
|
gem 'better_errors', platform: :mri
|
2013-03-24 19:21:18 -05:00
|
|
|
gem 'binding_of_caller'
|
2019-07-02 04:29:52 -05:00
|
|
|
gem 'yaml-lint'
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'annotate'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-04-01 17:28:26 -05:00
|
|
|
# this is an optional gem, it provides a high performance replacement
|
|
|
|
# to String#blank? a method that is called quite frequently in current
|
|
|
|
# ActiveRecord, this may change in the future
|
2018-02-25 17:25:58 -06:00
|
|
|
gem 'fast_blank', platform: :mri
|
2013-04-01 17:24:59 -05:00
|
|
|
|
2013-04-23 20:59:59 -05:00
|
|
|
# this provides a very efficient lru cache
|
|
|
|
gem 'lru_redux'
|
|
|
|
|
2014-06-05 19:34:21 -05:00
|
|
|
gem 'htmlentities', require: false
|
|
|
|
|
2013-02-14 22:29:49 -06:00
|
|
|
# IMPORTANT: mini profiler monkey patches, so it better be required last
|
2014-12-27 07:03:48 -06:00
|
|
|
# If you want to amend mini profiler to do the monkey patches in the railties
|
2014-03-01 17:27:44 -06:00
|
|
|
# we are open to it. by deferring require to the initializer we can configure discourse installs without it
|
2013-08-30 01:44:03 -05:00
|
|
|
|
2013-12-05 00:40:16 -06:00
|
|
|
gem 'flamegraph', require: false
|
2020-03-17 06:09:45 -05:00
|
|
|
gem 'rack-mini-profiler', require: ['enable_rails_patches']
|
2013-04-11 01:24:08 -05:00
|
|
|
|
2018-02-25 17:25:58 -06:00
|
|
|
gem 'unicorn', require: false, platform: :mri
|
2013-08-29 00:26:27 -05:00
|
|
|
gem 'puma', require: false
|
2014-01-02 19:29:47 -06:00
|
|
|
gem 'rbtrace', require: false, platform: :mri
|
2016-12-19 22:01:36 -06:00
|
|
|
gem 'gc_tracer', require: false, platform: :mri
|
2013-04-22 04:16:58 -05:00
|
|
|
|
2013-12-31 13:37:43 -06:00
|
|
|
# required for feed importing and embedding
|
2014-04-14 23:45:00 -05:00
|
|
|
gem 'ruby-readability', require: false
|
2014-12-28 20:30:54 -06:00
|
|
|
|
2016-12-28 23:32:23 -06:00
|
|
|
gem 'stackprof', require: false, platform: :mri
|
|
|
|
gem 'memory_profiler', require: false, platform: :mri
|
2014-05-05 11:50:46 -05:00
|
|
|
|
2017-07-31 14:28:48 -05:00
|
|
|
gem 'cppjieba_rb', require: false
|
2014-06-24 02:10:56 -05:00
|
|
|
|
2017-10-27 09:54:50 -05:00
|
|
|
gem 'lograge', require: false
|
2017-10-31 19:37:11 -05:00
|
|
|
gem 'logstash-event', require: false
|
2017-11-13 22:50:26 -06:00
|
|
|
gem 'logstash-logger', require: false
|
2014-06-29 19:38:29 -05:00
|
|
|
gem 'logster'
|
2017-04-12 09:52:52 -05:00
|
|
|
|
2019-12-11 08:22:39 -06:00
|
|
|
# NOTE: later versions of sassc are causing a segfault, possibly dependent on processer architecture
|
|
|
|
# and until resolved should be locked at 2.0.1
|
|
|
|
gem 'sassc', '2.0.1', require: false
|
2019-03-21 18:23:29 -05:00
|
|
|
gem "sassc-rails"
|
2017-04-24 15:32:27 -05:00
|
|
|
|
2019-12-16 18:33:51 -06:00
|
|
|
gem 'rotp', require: false
|
2017-12-21 19:18:12 -06:00
|
|
|
gem 'rqrcode'
|
|
|
|
|
2019-07-18 07:34:48 -05:00
|
|
|
gem 'rubyzip', require: false
|
|
|
|
|
2018-03-08 23:14:21 -06:00
|
|
|
gem 'sshkey', require: false
|
|
|
|
|
2018-07-31 05:02:18 -05:00
|
|
|
gem 'rchardet', require: false
|
2019-09-04 02:18:32 -05:00
|
|
|
gem 'lz4-ruby', require: false, platform: :mri
|
2018-07-27 12:41:53 -05:00
|
|
|
|
2017-04-24 15:32:27 -05:00
|
|
|
if ENV["IMPORT"] == "1"
|
|
|
|
gem 'mysql2'
|
|
|
|
gem 'redcarpet'
|
2019-12-05 20:00:16 -06:00
|
|
|
|
|
|
|
# NOTE: in import mode the version of sqlite can matter a lot, so we stick it to a specific one
|
2019-02-28 14:59:36 -06:00
|
|
|
gem 'sqlite3', '~> 1.3', '>= 1.3.13'
|
2018-10-19 09:03:22 -05:00
|
|
|
gem 'ruby-bbcode-to-md', git: 'https://github.com/nlalonde/ruby-bbcode-to-md'
|
2018-03-01 02:43:32 -06:00
|
|
|
gem 'reverse_markdown'
|
2018-06-04 09:57:12 -05:00
|
|
|
gem 'tiny_tds'
|
2019-12-05 20:00:16 -06:00
|
|
|
gem 'csv'
|
2017-04-24 15:32:27 -05:00
|
|
|
end
|
2018-05-04 17:31:48 -05:00
|
|
|
|
2018-05-07 02:45:20 -05:00
|
|
|
gem 'webpush', require: false
|
2018-09-04 16:57:20 -05:00
|
|
|
gem 'colored2', require: false
|
2018-10-09 09:21:41 -05:00
|
|
|
gem 'maxminddb'
|