├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── src ├── @orb.yml ├── commands │ ├── assets-precompile.yml │ ├── bundle-install.yml │ └── yarn-install.yml ├── examples │ ├── rspec.yml │ └── rubocop.yml └── jobs │ ├── assets.yml │ ├── js-deps.yml │ ├── rb-deps.yml │ └── rspec.yml └── test └── app ├── .browserslistrc ├── .gitignore ├── .rspec ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── helpers │ └── application_helper.rb ├── javascript │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ └── packs │ │ └── application.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ └── concerns │ │ └── .keep └── views │ └── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── rails_helper.rb └── spec_helper.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | orb.yml 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/README.md -------------------------------------------------------------------------------- /src/@orb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/@orb.yml -------------------------------------------------------------------------------- /src/commands/assets-precompile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/commands/assets-precompile.yml -------------------------------------------------------------------------------- /src/commands/bundle-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/commands/bundle-install.yml -------------------------------------------------------------------------------- /src/commands/yarn-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/commands/yarn-install.yml -------------------------------------------------------------------------------- /src/examples/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/examples/rspec.yml -------------------------------------------------------------------------------- /src/examples/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/examples/rubocop.yml -------------------------------------------------------------------------------- /src/jobs/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/jobs/assets.yml -------------------------------------------------------------------------------- /src/jobs/js-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/jobs/js-deps.yml -------------------------------------------------------------------------------- /src/jobs/rb-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/jobs/rb-deps.yml -------------------------------------------------------------------------------- /src/jobs/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/src/jobs/rspec.yml -------------------------------------------------------------------------------- /test/app/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /test/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/.gitignore -------------------------------------------------------------------------------- /test/app/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /test/app/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.0 2 | -------------------------------------------------------------------------------- /test/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/Gemfile -------------------------------------------------------------------------------- /test/app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/Gemfile.lock -------------------------------------------------------------------------------- /test/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/README.md -------------------------------------------------------------------------------- /test/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/Rakefile -------------------------------------------------------------------------------- /test/app/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/app/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/app/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/app/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /test/app/app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/javascript/channels/index.js -------------------------------------------------------------------------------- /test/app/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/javascript/packs/application.js -------------------------------------------------------------------------------- /test/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/app/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/app/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/models/application_record.rb -------------------------------------------------------------------------------- /test/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/app/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/babel.config.js -------------------------------------------------------------------------------- /test/app/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/bundle -------------------------------------------------------------------------------- /test/app/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/rails -------------------------------------------------------------------------------- /test/app/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/rake -------------------------------------------------------------------------------- /test/app/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/setup -------------------------------------------------------------------------------- /test/app/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/spring -------------------------------------------------------------------------------- /test/app/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/webpack -------------------------------------------------------------------------------- /test/app/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/webpack-dev-server -------------------------------------------------------------------------------- /test/app/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/bin/yarn -------------------------------------------------------------------------------- /test/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config.ru -------------------------------------------------------------------------------- /test/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/application.rb -------------------------------------------------------------------------------- /test/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/boot.rb -------------------------------------------------------------------------------- /test/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/cable.yml -------------------------------------------------------------------------------- /test/app/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/credentials.yml.enc -------------------------------------------------------------------------------- /test/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/database.yml -------------------------------------------------------------------------------- /test/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/environment.rb -------------------------------------------------------------------------------- /test/app/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/environments/development.rb -------------------------------------------------------------------------------- /test/app/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/environments/production.rb -------------------------------------------------------------------------------- /test/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/environments/test.rb -------------------------------------------------------------------------------- /test/app/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/app/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/app/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/app/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/app/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/app/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/app/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/app/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/app/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/locales/en.yml -------------------------------------------------------------------------------- /test/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/puma.rb -------------------------------------------------------------------------------- /test/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/routes.rb -------------------------------------------------------------------------------- /test/app/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/spring.rb -------------------------------------------------------------------------------- /test/app/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/storage.yml -------------------------------------------------------------------------------- /test/app/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/webpack/development.js -------------------------------------------------------------------------------- /test/app/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/webpack/environment.js -------------------------------------------------------------------------------- /test/app/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/webpack/production.js -------------------------------------------------------------------------------- /test/app/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/webpack/test.js -------------------------------------------------------------------------------- /test/app/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/config/webpacker.yml -------------------------------------------------------------------------------- /test/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/db/schema.rb -------------------------------------------------------------------------------- /test/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/db/seeds.rb -------------------------------------------------------------------------------- /test/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/package.json -------------------------------------------------------------------------------- /test/app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/postcss.config.js -------------------------------------------------------------------------------- /test/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/public/404.html -------------------------------------------------------------------------------- /test/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/public/422.html -------------------------------------------------------------------------------- /test/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/public/500.html -------------------------------------------------------------------------------- /test/app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/public/robots.txt -------------------------------------------------------------------------------- /test/app/spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/spec/rails_helper.rb -------------------------------------------------------------------------------- /test/app/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/app/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/app/test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/test/test_helper.rb -------------------------------------------------------------------------------- /test/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medpeer-dev/rails-orbs/HEAD/test/app/yarn.lock --------------------------------------------------------------------------------