2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-01-07 06:02:29 -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
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "bootsnap", require: false, platform: :mri
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2023-11-28 03:36:23 -06:00
|
|
|
gem "actionmailer"
|
|
|
|
gem "actionpack"
|
|
|
|
gem "actionview"
|
|
|
|
gem "activemodel"
|
|
|
|
gem "activerecord"
|
|
|
|
gem "activesupport"
|
|
|
|
gem "railties"
|
|
|
|
gem "sprockets-rails"
|
2014-10-14 22:05:38 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "json"
|
2020-03-23 23:21:50 -05:00
|
|
|
|
2022-04-20 16:17:29 -05:00
|
|
|
# TODO: At the moment Discourse does not work with Sprockets 4, we would need to correct internals
|
2023-01-13 04:52:05 -06:00
|
|
|
# We intend to drop sprockets rather than upgrade to 4.x
|
|
|
|
gem "sprockets", git: "https://github.com/rails/sprockets", branch: "3.x"
|
2019-12-09 19:31:16 -06:00
|
|
|
|
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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "actionview_precompiler", require: false
|
2019-10-06 23:33:37 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "discourse-seed-fu"
|
2019-02-06 00:33:36 -06:00
|
|
|
|
2023-03-24 14:10:28 -05:00
|
|
|
gem "mail"
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "mini_mime"
|
|
|
|
gem "mini_suffix"
|
2014-08-24 02:43:08 -05:00
|
|
|
|
2023-01-07 06:02:29 -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
|
2023-01-07 06:02:29 -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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "active_model_serializers", "~> 0.8.3"
|
2013-11-28 16:20:56 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "http_accept_language", require: false
|
2016-02-06 13:49:39 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "discourse-fonts", require: "discourse_fonts"
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2023-06-29 19:14:16 -05:00
|
|
|
gem "message_bus"
|
2015-10-12 01:26:20 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rails_multisite"
|
2013-02-09 11:04:52 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "fast_xs", platform: :ruby
|
2013-12-05 00:40:16 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "fastimage"
|
2017-08-07 03:32:35 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "aws-sdk-s3", require: false
|
|
|
|
gem "aws-sdk-sns", require: false
|
|
|
|
gem "excon", require: false
|
|
|
|
gem "unf", require: false
|
2013-02-28 13:31:39 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "email_reply_trimmer"
|
2015-12-10 01:58:52 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "image_optim"
|
|
|
|
gem "multi_json"
|
|
|
|
gem "mustache"
|
|
|
|
gem "nokogiri"
|
|
|
|
gem "loofah"
|
|
|
|
gem "css_parser", require: false
|
2017-06-08 17:02:30 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "omniauth"
|
|
|
|
gem "omniauth-facebook"
|
|
|
|
gem "omniauth-twitter"
|
|
|
|
gem "omniauth-github"
|
2014-09-02 21:53:22 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "omniauth-oauth2", require: false
|
2016-01-11 01:17:13 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "omniauth-google-oauth2"
|
2019-04-29 00:47:05 -05:00
|
|
|
|
2023-06-29 18:39:55 -05:00
|
|
|
gem "oj"
|
2021-09-01 22:01:54 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "pg"
|
|
|
|
gem "mini_sql"
|
|
|
|
gem "pry-rails", require: false
|
|
|
|
gem "pry-byebug", require: false
|
2023-02-16 09:15:56 -06:00
|
|
|
gem "rtlcss", require: false
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rake"
|
2013-07-20 19:56:48 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "thor", require: false
|
|
|
|
gem "diffy", require: false
|
|
|
|
gem "rinku"
|
|
|
|
gem "sidekiq"
|
|
|
|
gem "mini_scheduler"
|
2014-04-17 00:57:17 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "execjs", require: false
|
|
|
|
gem "mini_racer"
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "highline", require: false
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rack"
|
2020-01-13 01:07:16 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rack-protection" # security
|
|
|
|
gem "cbor", require: false
|
|
|
|
gem "cose", require: false
|
|
|
|
gem "addressable"
|
|
|
|
gem "json_schemer"
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2022-10-12 08:22:22 -05:00
|
|
|
gem "net-smtp", require: false
|
|
|
|
gem "net-imap", require: false
|
|
|
|
gem "net-pop", require: false
|
|
|
|
gem "digest", require: false
|
2022-02-02 23:25:29 -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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "uglifier"
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-13 04:32:18 -06:00
|
|
|
group :test do
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "capybara", require: false
|
|
|
|
gem "webmock", require: false
|
|
|
|
gem "fakeweb", require: false
|
|
|
|
gem "minitest", require: false
|
|
|
|
gem "simplecov", require: false
|
2023-10-30 14:52:08 -05:00
|
|
|
gem "selenium-webdriver", "~> 4.14", require: false
|
2023-12-07 16:46:20 -06:00
|
|
|
gem "selenium-devtools", require: false
|
2019-04-19 03:52:31 -05:00
|
|
|
gem "test-prof"
|
2023-06-19 20:49:22 -05:00
|
|
|
gem "rails-dom-testing", require: false
|
2023-08-22 20:18:33 -05:00
|
|
|
gem "minio_runner", require: false
|
2013-02-13 04:32:18 -06:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
group :test, :development do
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rspec"
|
|
|
|
gem "listen", require: false
|
|
|
|
gem "certified", require: false
|
|
|
|
gem "fabrication", require: false
|
|
|
|
gem "mocha", require: false
|
2019-12-10 19:43:07 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rb-fsevent", require: RUBY_PLATFORM =~ /darwin/i ? "rb-fsevent" : false
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rspec-rails"
|
2019-12-05 20:00:16 -06:00
|
|
|
|
2023-07-27 03:25:41 -05:00
|
|
|
gem "shoulda-matchers", require: false, github: "thoughtbot/shoulda-matchers"
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rspec-html-matchers"
|
|
|
|
gem "byebug", require: ENV["RM_INFO"].nil?, platform: :mri
|
|
|
|
gem "rubocop-discourse", require: false
|
|
|
|
gem "parallel_tests"
|
2020-04-27 17:40:07 -05:00
|
|
|
|
2023-12-06 18:16:47 -06:00
|
|
|
gem "rswag-specs"
|
2021-07-06 03:47:16 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "annotate"
|
2023-01-07 05:11:08 -06:00
|
|
|
|
|
|
|
gem "syntax_tree"
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "syntax_tree-disable_ternary"
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-04-01 17:28:26 -05:00
|
|
|
group :development do
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "ruby-prof", require: false, platform: :mri
|
|
|
|
gem "bullet", require: !!ENV["BULLET"]
|
|
|
|
gem "better_errors", platform: :mri, require: !!ENV["BETTER_ERRORS"]
|
|
|
|
gem "binding_of_caller"
|
|
|
|
gem "yaml-lint"
|
DEV: Chat service object initial implementation (#19814)
This is a combined work of Martin Brennan, Loïc Guitaut, and Joffrey Jaffeux.
---
This commit implements a base service object when working in chat. The documentation is available at https://discourse.github.io/discourse/chat/backend/Chat/Service.html
Generating documentation has been made as part of this commit with a bigger goal in mind of generally making it easier to dive into the chat project.
Working with services generally involves 3 parts:
- The service object itself, which is a series of steps where few of them are specialized (model, transaction, policy)
```ruby
class UpdateAge
include Chat::Service::Base
model :user, :fetch_user
policy :can_see_user
contract
step :update_age
class Contract
attribute :age, :integer
end
def fetch_user(user_id:, **)
User.find_by(id: user_id)
end
def can_see_user(guardian:, **)
guardian.can_see_user(user)
end
def update_age(age:, **)
user.update!(age: age)
end
end
```
- The `with_service` controller helper, handling success and failure of the service within a service and making easy to return proper response to it from the controller
```ruby
def update
with_service(UpdateAge) do
on_success { render_serialized(result.user, BasicUserSerializer, root: "user") }
end
end
```
- Rspec matchers and steps inspector, improving the dev experience while creating specs for a service
```ruby
RSpec.describe(UpdateAge) do
subject(:result) do
described_class.call(guardian: guardian, user_id: user.id, age: age)
end
fab!(:user) { Fabricate(:user) }
fab!(:current_user) { Fabricate(:admin) }
let(:guardian) { Guardian.new(current_user) }
let(:age) { 1 }
it { expect(user.reload.age).to eq(age) }
end
```
Note in case of unexpected failure in your spec, the output will give all the relevant information:
```
1) UpdateAge when no channel_id is given is expected to fail to find a model named 'user'
Failure/Error: it { is_expected.to fail_to_find_a_model(:user) }
Expected model 'foo' (key: 'result.model.user') was not found in the result object.
[1/4] [model] 'user' ❌
[2/4] [policy] 'can_see_user'
[3/4] [contract] 'default'
[4/4] [step] 'update_age'
/Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/update_age.rb:32:in `fetch_user': missing keyword: :user_id (ArgumentError)
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:202:in `instance_exec'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:202:in `call'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:219:in `call'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:417:in `block in run!'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:417:in `each'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:417:in `run!'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:411:in `run'
from <internal:kernel>:90:in `tap'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/app/services/base.rb:302:in `call'
from /Users/joffreyjaffeux/Code/pr-discourse/plugins/chat/spec/services/update_age_spec.rb:15:in `block (3 levels) in <main>'
```
2023-02-13 06:09:57 -06:00
|
|
|
gem "yard"
|
2021-07-20 01:55:59 -05:00
|
|
|
end
|
|
|
|
|
2021-11-01 07:28:24 -05:00
|
|
|
if ENV["ALLOW_DEV_POPULATE"] == "1"
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "discourse_dev_assets"
|
|
|
|
gem "faker", "~> 2.16"
|
2021-11-01 07:28:24 -05:00
|
|
|
else
|
2022-03-21 09:28:52 -05:00
|
|
|
group :development, :test do
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "discourse_dev_assets"
|
|
|
|
gem "faker", "~> 2.16"
|
2021-11-01 07:28:24 -05:00
|
|
|
end
|
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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "fast_blank", platform: :ruby
|
2013-04-01 17:24:59 -05:00
|
|
|
|
2013-04-23 20:59:59 -05:00
|
|
|
# this provides a very efficient lru cache
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "lru_redux"
|
2013-04-23 20:59:59 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "htmlentities", require: false
|
2014-06-05 19:34:21 -05:00
|
|
|
|
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
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rack-mini-profiler", require: ["enable_rails_patches"]
|
2013-04-11 01:24:08 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "unicorn", require: false, platform: :ruby
|
|
|
|
gem "puma", require: false
|
|
|
|
gem "rbtrace", require: false, platform: :mri
|
|
|
|
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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "ruby-readability", require: false
|
2014-12-28 20:30:54 -06:00
|
|
|
|
2021-09-19 22:51:47 -05:00
|
|
|
# rss gem is a bundled gem from Ruby 3 onwards
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rss", require: false
|
2021-09-19 22:51:47 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "stackprof", require: false, platform: :mri
|
|
|
|
gem "memory_profiler", require: false, platform: :mri
|
2014-05-05 11:50:46 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "cppjieba_rb", require: false
|
2014-06-24 02:10:56 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "lograge", require: false
|
|
|
|
gem "logstash-event", require: false
|
|
|
|
gem "logstash-logger", require: false
|
|
|
|
gem "logster"
|
2017-04-12 09:52:52 -05:00
|
|
|
|
2023-09-26 10:25:07 -05:00
|
|
|
# A fork of sassc with dart-sass support
|
2023-12-08 09:34:03 -06:00
|
|
|
gem "sassc-embedded"
|
2017-04-24 15:32:27 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rotp", require: false
|
2020-07-14 02:05:01 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rqrcode"
|
2017-12-21 19:18:12 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rubyzip", require: false
|
2019-07-18 07:34:48 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "sshkey", require: false
|
2018-03-08 23:14:21 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rchardet", require: false
|
|
|
|
gem "lz4-ruby", require: false, platform: :ruby
|
2018-07-27 12:41:53 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "sanitize"
|
2021-05-26 04:41:35 -05:00
|
|
|
|
2017-04-24 15:32:27 -05:00
|
|
|
if ENV["IMPORT"] == "1"
|
2023-01-07 06:02:29 -06:00
|
|
|
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
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "sqlite3", "~> 1.3", ">= 1.3.13"
|
|
|
|
gem "ruby-bbcode-to-md", git: "https://github.com/nlalonde/ruby-bbcode-to-md"
|
|
|
|
gem "reverse_markdown"
|
|
|
|
gem "tiny_tds"
|
|
|
|
gem "csv"
|
2022-11-28 13:30:19 -06:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "parallel", require: false
|
2017-04-24 15:32:27 -05:00
|
|
|
end
|
2018-05-04 17:31:48 -05:00
|
|
|
|
2023-12-10 15:01:36 -06:00
|
|
|
group :generic_import, optional: true do
|
2023-08-07 05:39:58 -05:00
|
|
|
gem "sqlite3"
|
|
|
|
gem "redcarpet"
|
|
|
|
end
|
|
|
|
|
2023-01-12 09:12:19 -06:00
|
|
|
gem "web-push"
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "colored2", require: false
|
|
|
|
gem "maxminddb"
|
2020-05-22 23:56:13 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "rails_failover", require: false
|
2022-03-21 09:28:52 -05:00
|
|
|
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "faraday"
|
|
|
|
gem "faraday-retry"
|
2022-10-05 07:19:04 -05:00
|
|
|
|
2022-03-21 09:28:52 -05:00
|
|
|
# workaround for faraday-net_http, see
|
|
|
|
# https://github.com/ruby/net-imap/issues/16#issuecomment-803086765
|
2023-01-07 06:02:29 -06:00
|
|
|
gem "net-http"
|
2022-12-21 15:20:07 -06:00
|
|
|
|
2022-12-27 12:28:13 -06:00
|
|
|
# Workaround until Ruby ships with cgi version 0.3.6 or higher.
|
2022-12-22 16:52:20 -06:00
|
|
|
gem "cgi", ">= 0.3.6", require: false
|
2023-02-21 10:52:04 -06:00
|
|
|
|
|
|
|
gem "tzinfo-data"
|