canvas-lms/gems
Cody Cutrer ce5bb18812 rubocop: Style/OpenStructUse in gems
Change-Id: I1a2cdcf5e760a484d9b681abbc5806838fc4ac4b
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/356133
Reviewed-by: Aaron Ogata <aogata@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
2024-09-04 21:59:40 +00:00
..
activesupport-suspend_callbacks bundle update rspec 2024-09-04 20:56:12 +00:00
acts_as_list bundle update rspec 2024-09-04 20:56:12 +00:00
adheres_to_policy bundle update rspec 2024-09-04 20:56:12 +00:00
attachment_fu bundle update rubocop 2024-09-04 20:59:15 +00:00
autoextend bundle update rspec 2024-09-04 20:56:12 +00:00
bookmarked_collection bundle update thor 2024-09-04 20:56:41 +00:00
broadcast_policy bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_breach_mitigation bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_cache bundle update thor 2024-09-04 20:56:41 +00:00
canvas_cassandra bundle update thor 2024-09-04 20:56:41 +00:00
canvas_color Revert "Revert "bundle update --bundler"" 2024-05-29 16:33:13 +00:00
canvas_crummy bundle update docile 2024-08-01 16:47:20 +00:00
canvas_dynamodb bundle update aws-sdk 2024-09-04 20:57:05 +00:00
canvas_errors bundle update thor 2024-09-04 20:56:41 +00:00
canvas_ext bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_http bundle update mime-types-data 2024-09-04 20:57:28 +00:00
canvas_kaltura bundle update mime-types-data 2024-09-04 20:57:28 +00:00
canvas_mimetype_fu bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_panda_pub bundle update mime-types-data 2024-09-04 20:57:28 +00:00
canvas_partman bundle update thor 2024-09-04 20:56:41 +00:00
canvas_quiz_statistics bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_sanitize rubocop: Style/OpenStructUse in gems 2024-09-04 21:59:40 +00:00
canvas_security rubocop: Style/OpenStructUse in gems 2024-09-04 21:59:40 +00:00
canvas_slug bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_sort bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_stringex bundle update rubocop 2024-09-04 20:59:15 +00:00
canvas_text_helper bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_time bundle update rspec 2024-09-04 20:56:12 +00:00
canvas_unzip bundle update rspec 2024-09-04 20:56:12 +00:00
config_file bundle update thor 2024-09-04 20:56:41 +00:00
csv_diff bundle update rspec 2024-09-04 20:56:12 +00:00
diigo bundle update rspec 2024-09-04 20:56:12 +00:00
dr_diff bundle update rspec 2024-09-04 20:56:12 +00:00
dynamic_settings bundle update logger 2024-09-04 20:57:16 +00:00
event_stream bundle update thor 2024-09-04 20:56:41 +00:00
google_drive bundle update google-cloud-env 2024-09-04 20:59:01 +00:00
html_text_helper bundle update rspec 2024-09-04 20:56:12 +00:00
i18n_extraction bundle update rspec 2024-09-04 20:56:12 +00:00
i18n_tasks bundle update rubocop 2024-09-04 20:59:15 +00:00
incoming_mail_processor bundle update net-imap 2024-09-04 20:58:08 +00:00
json_token bundle update rspec 2024-09-04 20:56:12 +00:00
legacy_multipart bundle update mime-types-data 2024-09-04 20:57:28 +00:00
live_events rubocop: Style/OpenStructUse in gems 2024-09-04 21:59:40 +00:00
lti-advantage bundle update logger 2024-09-04 20:57:16 +00:00
lti_outbound bundle update rspec 2024-09-04 20:56:12 +00:00
paginated_collection bundle update rspec 2024-09-04 20:56:12 +00:00
plugins rubocop: Style/OpenStructUse in gems 2024-09-04 21:59:40 +00:00
request_context bundle update logger 2024-09-04 20:57:16 +00:00
rubocop-canvas bundle update rubocop 2024-09-04 20:59:15 +00:00
stringify_ids bundle update rspec 2024-09-04 20:56:12 +00:00
tatl_tael bundle update rspec 2024-09-04 20:56:12 +00:00
turnitin_api bundle update logger 2024-09-04 20:57:16 +00:00
twitter bundle update rspec 2024-09-04 20:56:12 +00:00
utf8_cleaner bundle update rspec 2024-09-04 20:56:12 +00:00
workflow bundle update minitest 2024-08-23 14:09:45 +00:00
README.md Remove auditor cassandra support 2023-04-03 15:40:22 +00:00
gemfile_prefix.rb add Rails 7.1 lockfiles for embedded gems 2024-02-14 22:30:10 +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