canvas-lms/gems
Cody Cutrer db8b9c1622 bundle update rubocop
Change-Id: Ia58322dd62b2a21e6fecb37003b96c137d565973
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/338581
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Jacob Burroughs <jburroughs@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
Build-Review: Cody Cutrer <cody@instructure.com>
2024-01-30 19:01:54 +00:00
..
activesupport-suspend_callbacks bundle update factory_bot 2024-01-24 16:18:47 +00:00
acts_as_list bundle update factory_bot 2024-01-24 16:18:47 +00:00
adheres_to_policy bundle update factory_bot 2024-01-24 16:18:47 +00:00
attachment_fu bundle update rubocop-performance, rubocop-rails 2023-12-18 20:28:02 +00:00
autoextend bundle update factory_bot 2024-01-24 16:18:47 +00:00
bookmarked_collection bundle update factory_bot 2024-01-24 16:18:47 +00:00
broadcast_policy bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_breach_mitigation bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_cache bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_cassandra bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_color bundle update --bundler 2024-01-17 19:14:06 +00:00
canvas_crummy bundle update --bundler 2024-01-17 19:14:06 +00:00
canvas_dynamodb bundle update aws-sdk 2024-01-17 19:14:52 +00:00
canvas_errors bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_ext bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_http Remove more settings 2024-01-29 16:21:38 +00:00
canvas_kaltura bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_mimetype_fu bundle update --bundler 2024-01-17 19:14:06 +00:00
canvas_panda_pub bundle update json-jwt 2024-01-24 16:19:46 +00:00
canvas_partman bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_quiz_statistics bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_sanitize bundle update debug 2024-01-24 16:18:29 +00:00
canvas_security bundle update json-jwt 2024-01-24 16:19:46 +00:00
canvas_slug bundle update --bundler 2024-01-17 19:14:06 +00:00
canvas_sort bundle update --bundler 2024-01-17 19:14:06 +00:00
canvas_stringex bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_text_helper bundle update concurrent-ruby 2024-01-17 19:15:12 +00:00
canvas_time bundle update factory_bot 2024-01-24 16:18:47 +00:00
canvas_unzip bundle update factory_bot 2024-01-24 16:18:47 +00:00
config_file bundle update factory_bot 2024-01-24 16:18:47 +00:00
csv_diff bundle update sqlite3 2024-01-17 19:20:34 +00:00
diigo bundle update --bundler 2024-01-17 19:14:06 +00:00
dr_diff bundle update debug 2024-01-24 16:18:29 +00:00
dynamic_settings bundle update factory_bot 2024-01-24 16:18:47 +00:00
event_stream bundle update factory_bot 2024-01-24 16:18:47 +00:00
google_drive bundle update debug 2024-01-24 16:18:29 +00:00
html_text_helper bundle update factory_bot 2024-01-24 16:18:47 +00:00
i18n_extraction bundle update factory_bot 2024-01-24 16:18:47 +00:00
i18n_tasks bundle update factory_bot 2024-01-24 16:18:47 +00:00
incoming_mail_processor bundle update net-* 2024-01-24 16:30:33 +00:00
json_token bundle update --bundler 2024-01-17 19:14:06 +00:00
legacy_multipart bundle update mime-types 2024-01-17 19:18:27 +00:00
live_events bundle update factory_bot 2024-01-24 16:18:47 +00:00
lti-advantage bundle update json-jwt 2024-01-24 16:19:46 +00:00
lti_outbound bundle update factory_bot 2024-01-24 16:18:47 +00:00
paginated_collection bundle update sqlite3 2024-01-17 19:20:34 +00:00
plugins don't load entire outcome scope into memory at once 2024-01-29 22:23:41 +00:00
request_context bundle update json-jwt 2024-01-24 16:19:46 +00:00
rubocop-canvas bundle update rubocop 2024-01-30 19:01:54 +00:00
stringify_ids bundle update --bundler 2024-01-17 19:14:06 +00:00
tatl_tael Remove babel-plugin-themeable-styles 2024-01-30 15:01:11 +00:00
turnitin_api bundle update factory_bot 2024-01-24 16:18:47 +00:00
twitter bundle update factory_bot 2024-01-24 16:18:47 +00:00
utf8_cleaner bundle update --bundler 2024-01-17 19:14:06 +00:00
workflow bundle update factory_bot 2024-01-24 16:18:47 +00:00
README.md Remove auditor cassandra support 2023-04-03 15:40:22 +00:00
test_all_gems.sh remove broken vendored gems html reports 2021-06-15 16:53:17 +00:00

README.md

Gems

This folder is a place to extract modular functionality from canvas. Canvas's Gemfile arrangement is enabled to read gems from this path locally without installing from a remote source. This is valuable for a few reasons:

  • it prevents circular dependencies (bundler won't allow it)
  • modularized code cannot bind to specific domain concepts on canvas models
  • gems can have their specs run independently, without needing to load all of canvas, saving iteration time
  • it allows for eventual build optimization via only running specs for the transitive closure of parents depending on a gem where a change is.

There are some tradeoffs:

  • spreads canvas over more subdirectories, giving some mental overhad to traversing the entire codebase.
  • modular tests necessarily don't test integration with canvas concepts, so solid integration tests in the app are still a requirement.
  • total SERIALIZED build time goes up because each gem loads it's specs in a new process rather than all running within an already booted canvas process.

[TODO] eventually write more on whether we feel like those tradeoffs are good ones, and what the best practices are to leverage this pattern for max-gain/min-pain.

Testing

To test all the gems:

cd gems
./test_all_gems.sh

To test an individual gem

Run ./test.sh inside the gem's folder. This is basically the same as:

cd gems/google_drive
bundle
rspec