├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ ├── maintenance.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── deploy.yml │ └── tests.yml ├── .gitignore ├── .tool-versions ├── Architecture.md ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MIT-LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── demo └── index.html ├── docs ├── .gitignore ├── .tool-versions ├── Gemfile ├── Gemfile.lock ├── bin │ ├── bridgetown │ ├── bundle │ ├── kramdown │ ├── listen │ ├── nokogiri │ ├── racc │ ├── rougify │ ├── safe_yaml │ ├── thor │ └── tilt ├── bridgetown.config.yml ├── netlify.toml ├── plugins │ ├── builders │ │ └── helpers.rb │ └── site_builder.rb └── src │ ├── 404.html │ ├── _components │ ├── alert.erb │ ├── alert.rb │ ├── doc_links.erb │ └── doc_links.rb │ ├── _data │ └── site_metadata.yml │ ├── _documentation │ ├── how_tos │ │ ├── 01-make-every-form-remote-in-rails.md │ │ ├── 02-programmatic-fetching-with-events.md │ │ ├── 03-use-js-erb.md │ │ ├── 04-prefetching.md │ │ ├── 05-integrate-cablecar.md │ │ ├── 06-integrate-turbo.md │ │ ├── 07-using-shoelace-with-mrujs.md │ │ ├── 08-integrate-active-storage.md │ │ ├── 09-use-an-alternate-error-renderer.md │ │ ├── 10-set-a-morph-root.md │ │ └── index.md │ ├── references │ │ ├── 01-comparison-to-ujs.md │ │ ├── 02-remote-forms-and-links.md │ │ ├── 03-ajax-lifecycle.md │ │ ├── 04-mime-types.md │ │ ├── 05-fetch.md │ │ ├── 06-query-selectors.md │ │ ├── 07-integrations.md │ │ ├── 08-plugins.md │ │ ├── 09-known-issues.md │ │ ├── 10-async-confirms.md │ │ ├── 11-understanding-method-masking.md │ │ └── index.md │ └── tutorials │ │ ├── 01-getting-started.md │ │ ├── 02-practical-guide-to-mrujs.md │ │ └── index.md │ ├── _layouts │ ├── default.erb │ ├── doc.erb │ ├── home.erb │ └── index.erb │ ├── _partials │ ├── _categories.erb │ ├── _footer.erb │ ├── _head.erb │ ├── _importmaps.erb │ ├── _logo.erb │ ├── _side_nav.erb │ ├── _side_nav_items.erb │ ├── _side_nav_mobile.erb │ ├── _top_nav.erb │ └── _version_number.erb │ ├── android-chrome-192x192.png │ ├── android-chrome-256x256.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── frontend │ └── styles │ │ ├── components.css │ │ ├── defaults.css │ │ ├── github.css │ │ ├── index.css │ │ └── variables.css │ ├── images │ ├── .keep │ ├── mrujs-ruby.svg │ ├── mrujs-text.svg │ └── mugshot.jpeg │ ├── index.md │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── netlify.toml ├── package.json ├── plugins ├── package.json └── src │ ├── cableCar.ts │ ├── cable_ready.d.ts │ ├── index.ts │ ├── jsErb.ts │ ├── mrujs.ts │ ├── mrujsTurbo.ts │ └── shoelace.ts ├── pnpm-lock.yaml ├── rollup.config.js ├── src ├── addedNodesObserver.ts ├── clickHandler.ts ├── confirm.ts ├── csrf.ts ├── deprecate.ts ├── disabledElementChecker.ts ├── elementDisabler.ts ├── elementEnabler.ts ├── formSubmission.ts ├── formSubmitDispatcher.ts ├── http │ ├── fetchRequest.ts │ └── fetchResponse.ts ├── index.ts ├── method.ts ├── methodSubmission.ts ├── mrujs.ts ├── navigationAdapter.ts ├── polyfills │ ├── index.ts │ └── submit-event.ts ├── remoteWatcher.ts ├── submitFinder.ts └── utils │ ├── dom.ts │ ├── events.ts │ ├── form.ts │ ├── headers.ts │ ├── misc.ts │ └── url.ts ├── test ├── js │ ├── ajax │ │ ├── ajax.test.html │ │ ├── ajaxEvents.ts │ │ ├── ajaxFetch.ts │ │ └── ajaxHelpers.ts │ ├── csrf │ │ ├── csrf.test.html │ │ └── csrf.ts │ ├── fetchRequest.test.ts │ ├── fixtures │ │ └── railsUjs.fixture.ts │ ├── helpers.ts │ ├── index.test.html │ ├── index.ts │ ├── interface.test.ts │ ├── methodSubmission.test.ts │ ├── plugin.test.ts │ ├── plugins │ │ ├── cableCar.test.html │ │ ├── cableCar.ts │ │ ├── cableCarMimeType.test.html │ │ └── cableCarMimeType.ts │ ├── remoteWatcher │ │ ├── remoteWatcher.test.html │ │ └── remoteWatcher.ts │ └── submitEvent.test.ts └── rails │ └── dummy │ ├── .browserslistrc │ ├── .gitattributes │ ├── .gitignore │ ├── .ruby-version │ ├── Procfile.dev │ ├── README.md │ ├── Rakefile │ ├── app │ ├── controllers │ │ ├── application_controller.rb │ │ ├── comments_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── morphs_controller.rb │ │ ├── posts_controller.rb │ │ ├── remote_links_controller.rb │ │ ├── static_controller.rb │ │ └── users_controller.rb │ ├── javascript │ │ ├── entrypoints │ │ │ └── application.js │ │ └── stylesheets │ │ │ └── application.css │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── post.rb │ │ └── user.rb │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ ├── morphs │ │ └── index.html.erb │ │ ├── posts │ │ ├── _form.html.erb │ │ ├── _form_body.html.erb │ │ ├── _post.json.jbuilder │ │ ├── create.js.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── remote_links │ │ └── index.html.erb │ │ ├── static │ │ └── index.html.erb │ │ └── users │ │ ├── _form.html.erb │ │ ├── _user.json.jbuilder │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── babel.config.js │ ├── bin │ ├── bundle │ ├── pnpm │ ├── rails │ ├── rake │ ├── setup │ └── vite │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── generators.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── permissions_policy.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── storage.yml │ ├── vite.json │ ├── webpack │ │ ├── development.js │ │ ├── environment.js │ │ ├── production.js │ │ └── test.js │ └── webpacker.yml │ ├── db │ ├── migrate │ │ ├── 20210529074401_create_users.rb │ │ ├── 20210529074827_create_posts.rb │ │ └── 20211109045358_create_active_storage_tables.active_storage.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── postcssrc.json │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt │ ├── storage │ └── .keep │ ├── test │ ├── application_system_test_case.rb │ ├── fixtures │ │ ├── files │ │ │ ├── .keep │ │ │ ├── racecar.png │ │ │ ├── racecar1.png │ │ │ └── racecar2.png │ │ ├── posts.yml │ │ └── users.yml │ ├── integration │ │ └── .keep │ ├── system │ │ ├── .keep │ │ ├── active_storage_tests.rb │ │ ├── morph_test.rb │ │ ├── navigation_adapter_tests.rb │ │ ├── remote_form_tests.rb │ │ ├── remote_link_tests.rb │ │ ├── turbo_active_storage_test.rb │ │ ├── turbo_navigation_adapter_test.rb │ │ ├── turbo_remote_forms_test.rb │ │ ├── turbo_remote_links_test.rb │ │ ├── turbolinks_active_storage_test.rb │ │ ├── turbolinks_navigation_adapter_test.rb │ │ ├── turbolinks_remote_forms_test.rb │ │ └── turbolinks_remote_links_test.rb │ ├── test_helper.rb │ ├── turbo_test_case.rb │ └── turbolinks_test_case.rb │ ├── tmp │ ├── .keep │ └── pids │ │ └── .keep │ ├── vendor │ └── .keep │ └── vite.config.ts ├── tsconfig-lint.json ├── tsconfig-plugins.json ├── tsconfig.json ├── types.ts ├── web-dev-server.config.mjs └── web-test-runner.config.mjs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: paramagicdev 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/ISSUE_TEMPLATE/maintenance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.1.3 2 | -------------------------------------------------------------------------------- /Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/Architecture.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/LICENSE -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/demo/index.html -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .parcel-cache 3 | -------------------------------------------------------------------------------- /docs/.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.7.5 2 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/bin/bridgetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/bridgetown -------------------------------------------------------------------------------- /docs/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/bundle -------------------------------------------------------------------------------- /docs/bin/kramdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/kramdown -------------------------------------------------------------------------------- /docs/bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/listen -------------------------------------------------------------------------------- /docs/bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/nokogiri -------------------------------------------------------------------------------- /docs/bin/racc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/racc -------------------------------------------------------------------------------- /docs/bin/rougify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/rougify -------------------------------------------------------------------------------- /docs/bin/safe_yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/safe_yaml -------------------------------------------------------------------------------- /docs/bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/thor -------------------------------------------------------------------------------- /docs/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bin/tilt -------------------------------------------------------------------------------- /docs/bridgetown.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/bridgetown.config.yml -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | NPM_FLAGS="--prefix=/dev/null" 3 | -------------------------------------------------------------------------------- /docs/plugins/builders/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/plugins/builders/helpers.rb -------------------------------------------------------------------------------- /docs/plugins/site_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/plugins/site_builder.rb -------------------------------------------------------------------------------- /docs/src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/404.html -------------------------------------------------------------------------------- /docs/src/_components/alert.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_components/alert.erb -------------------------------------------------------------------------------- /docs/src/_components/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_components/alert.rb -------------------------------------------------------------------------------- /docs/src/_components/doc_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_components/doc_links.erb -------------------------------------------------------------------------------- /docs/src/_components/doc_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_components/doc_links.rb -------------------------------------------------------------------------------- /docs/src/_data/site_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_data/site_metadata.yml -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/01-make-every-form-remote-in-rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/01-make-every-form-remote-in-rails.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/02-programmatic-fetching-with-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/02-programmatic-fetching-with-events.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/03-use-js-erb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/03-use-js-erb.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/04-prefetching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/04-prefetching.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/05-integrate-cablecar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/05-integrate-cablecar.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/06-integrate-turbo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/06-integrate-turbo.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/07-using-shoelace-with-mrujs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/07-using-shoelace-with-mrujs.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/08-integrate-active-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/08-integrate-active-storage.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/09-use-an-alternate-error-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/09-use-an-alternate-error-renderer.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/10-set-a-morph-root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/how_tos/10-set-a-morph-root.md -------------------------------------------------------------------------------- /docs/src/_documentation/how_tos/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: index 3 | title: How Tos 4 | --- 5 | -------------------------------------------------------------------------------- /docs/src/_documentation/references/01-comparison-to-ujs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/01-comparison-to-ujs.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/02-remote-forms-and-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/02-remote-forms-and-links.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/03-ajax-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/03-ajax-lifecycle.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/04-mime-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/04-mime-types.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/05-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/05-fetch.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/06-query-selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/06-query-selectors.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/07-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/07-integrations.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/08-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/08-plugins.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/09-known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/09-known-issues.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/10-async-confirms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/10-async-confirms.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/11-understanding-method-masking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/references/11-understanding-method-masking.md -------------------------------------------------------------------------------- /docs/src/_documentation/references/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: index 3 | title: References 4 | --- 5 | -------------------------------------------------------------------------------- /docs/src/_documentation/tutorials/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/tutorials/01-getting-started.md -------------------------------------------------------------------------------- /docs/src/_documentation/tutorials/02-practical-guide-to-mrujs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_documentation/tutorials/02-practical-guide-to-mrujs.md -------------------------------------------------------------------------------- /docs/src/_documentation/tutorials/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: index 3 | title: Tutorials 4 | --- 5 | -------------------------------------------------------------------------------- /docs/src/_layouts/default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_layouts/default.erb -------------------------------------------------------------------------------- /docs/src/_layouts/doc.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_layouts/doc.erb -------------------------------------------------------------------------------- /docs/src/_layouts/home.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_layouts/home.erb -------------------------------------------------------------------------------- /docs/src/_layouts/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_layouts/index.erb -------------------------------------------------------------------------------- /docs/src/_partials/_categories.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_categories.erb -------------------------------------------------------------------------------- /docs/src/_partials/_footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_footer.erb -------------------------------------------------------------------------------- /docs/src/_partials/_head.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_head.erb -------------------------------------------------------------------------------- /docs/src/_partials/_importmaps.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_importmaps.erb -------------------------------------------------------------------------------- /docs/src/_partials/_logo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_logo.erb -------------------------------------------------------------------------------- /docs/src/_partials/_side_nav.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_side_nav.erb -------------------------------------------------------------------------------- /docs/src/_partials/_side_nav_items.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_side_nav_items.erb -------------------------------------------------------------------------------- /docs/src/_partials/_side_nav_mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_side_nav_mobile.erb -------------------------------------------------------------------------------- /docs/src/_partials/_top_nav.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_top_nav.erb -------------------------------------------------------------------------------- /docs/src/_partials/_version_number.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/_partials/_version_number.erb -------------------------------------------------------------------------------- /docs/src/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/src/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/android-chrome-256x256.png -------------------------------------------------------------------------------- /docs/src/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/src/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/browserconfig.xml -------------------------------------------------------------------------------- /docs/src/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/favicon-16x16.png -------------------------------------------------------------------------------- /docs/src/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/favicon-32x32.png -------------------------------------------------------------------------------- /docs/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/favicon.ico -------------------------------------------------------------------------------- /docs/src/frontend/styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/frontend/styles/components.css -------------------------------------------------------------------------------- /docs/src/frontend/styles/defaults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/frontend/styles/defaults.css -------------------------------------------------------------------------------- /docs/src/frontend/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/frontend/styles/github.css -------------------------------------------------------------------------------- /docs/src/frontend/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/frontend/styles/index.css -------------------------------------------------------------------------------- /docs/src/frontend/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/frontend/styles/variables.css -------------------------------------------------------------------------------- /docs/src/images/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/src/images/mrujs-ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/images/mrujs-ruby.svg -------------------------------------------------------------------------------- /docs/src/images/mrujs-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/images/mrujs-text.svg -------------------------------------------------------------------------------- /docs/src/images/mugshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/images/mugshot.jpeg -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/mstile-150x150.png -------------------------------------------------------------------------------- /docs/src/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/src/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/docs/src/site.webmanifest -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | NPM_FLAGS="--prefix=/dev/null" 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/package.json -------------------------------------------------------------------------------- /plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/package.json -------------------------------------------------------------------------------- /plugins/src/cableCar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/cableCar.ts -------------------------------------------------------------------------------- /plugins/src/cable_ready.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'cable_ready' { 2 | export function perform (json: JSON): void 3 | } 4 | -------------------------------------------------------------------------------- /plugins/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/index.ts -------------------------------------------------------------------------------- /plugins/src/jsErb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/jsErb.ts -------------------------------------------------------------------------------- /plugins/src/mrujs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/mrujs.ts -------------------------------------------------------------------------------- /plugins/src/mrujsTurbo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/mrujsTurbo.ts -------------------------------------------------------------------------------- /plugins/src/shoelace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/plugins/src/shoelace.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/addedNodesObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/addedNodesObserver.ts -------------------------------------------------------------------------------- /src/clickHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/clickHandler.ts -------------------------------------------------------------------------------- /src/confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/confirm.ts -------------------------------------------------------------------------------- /src/csrf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/csrf.ts -------------------------------------------------------------------------------- /src/deprecate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/deprecate.ts -------------------------------------------------------------------------------- /src/disabledElementChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/disabledElementChecker.ts -------------------------------------------------------------------------------- /src/elementDisabler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/elementDisabler.ts -------------------------------------------------------------------------------- /src/elementEnabler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/elementEnabler.ts -------------------------------------------------------------------------------- /src/formSubmission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/formSubmission.ts -------------------------------------------------------------------------------- /src/formSubmitDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/formSubmitDispatcher.ts -------------------------------------------------------------------------------- /src/http/fetchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/http/fetchRequest.ts -------------------------------------------------------------------------------- /src/http/fetchResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/http/fetchResponse.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/method.ts -------------------------------------------------------------------------------- /src/methodSubmission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/methodSubmission.ts -------------------------------------------------------------------------------- /src/mrujs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/mrujs.ts -------------------------------------------------------------------------------- /src/navigationAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/navigationAdapter.ts -------------------------------------------------------------------------------- /src/polyfills/index.ts: -------------------------------------------------------------------------------- 1 | import './submit-event' 2 | -------------------------------------------------------------------------------- /src/polyfills/submit-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/polyfills/submit-event.ts -------------------------------------------------------------------------------- /src/remoteWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/remoteWatcher.ts -------------------------------------------------------------------------------- /src/submitFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/submitFinder.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/events.ts -------------------------------------------------------------------------------- /src/utils/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/form.ts -------------------------------------------------------------------------------- /src/utils/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/headers.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /test/js/ajax/ajax.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/ajax/ajax.test.html -------------------------------------------------------------------------------- /test/js/ajax/ajaxEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/ajax/ajaxEvents.ts -------------------------------------------------------------------------------- /test/js/ajax/ajaxFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/ajax/ajaxFetch.ts -------------------------------------------------------------------------------- /test/js/ajax/ajaxHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/ajax/ajaxHelpers.ts -------------------------------------------------------------------------------- /test/js/csrf/csrf.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/csrf/csrf.test.html -------------------------------------------------------------------------------- /test/js/csrf/csrf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/csrf/csrf.ts -------------------------------------------------------------------------------- /test/js/fetchRequest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/fetchRequest.test.ts -------------------------------------------------------------------------------- /test/js/fixtures/railsUjs.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/fixtures/railsUjs.fixture.ts -------------------------------------------------------------------------------- /test/js/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/helpers.ts -------------------------------------------------------------------------------- /test/js/index.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/index.test.html -------------------------------------------------------------------------------- /test/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/index.ts -------------------------------------------------------------------------------- /test/js/interface.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/interface.test.ts -------------------------------------------------------------------------------- /test/js/methodSubmission.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/methodSubmission.test.ts -------------------------------------------------------------------------------- /test/js/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/plugin.test.ts -------------------------------------------------------------------------------- /test/js/plugins/cableCar.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/plugins/cableCar.test.html -------------------------------------------------------------------------------- /test/js/plugins/cableCar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/plugins/cableCar.ts -------------------------------------------------------------------------------- /test/js/plugins/cableCarMimeType.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/plugins/cableCarMimeType.test.html -------------------------------------------------------------------------------- /test/js/plugins/cableCarMimeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/plugins/cableCarMimeType.ts -------------------------------------------------------------------------------- /test/js/remoteWatcher/remoteWatcher.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/remoteWatcher/remoteWatcher.test.html -------------------------------------------------------------------------------- /test/js/remoteWatcher/remoteWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/remoteWatcher/remoteWatcher.ts -------------------------------------------------------------------------------- /test/js/submitEvent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/js/submitEvent.test.ts -------------------------------------------------------------------------------- /test/rails/dummy/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /test/rails/dummy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/.gitattributes -------------------------------------------------------------------------------- /test/rails/dummy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/.gitignore -------------------------------------------------------------------------------- /test/rails/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.3 2 | -------------------------------------------------------------------------------- /test/rails/dummy/Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/Procfile.dev -------------------------------------------------------------------------------- /test/rails/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/README.md -------------------------------------------------------------------------------- /test/rails/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/Rakefile -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/morphs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/morphs_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/remote_links_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/remote_links_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/static_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/static_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/javascript/entrypoints/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/javascript/entrypoints/application.js -------------------------------------------------------------------------------- /test/rails/dummy/app/javascript/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/javascript/stylesheets/application.css -------------------------------------------------------------------------------- /test/rails/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/models/post.rb -------------------------------------------------------------------------------- /test/rails/dummy/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /test/rails/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/morphs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/morphs/index.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/_form_body.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/_form_body.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/_post.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/_post.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/create.js.erb: -------------------------------------------------------------------------------- 1 | console.log("Hi friends!") 2 | -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/index.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/posts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/posts/show.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/app/views/remote_links/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/remote_links/index.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/static/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/static/index.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/_user.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/index.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/index.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/new.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/show.html.erb -------------------------------------------------------------------------------- /test/rails/dummy/app/views/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/app/views/users/show.json.jbuilder -------------------------------------------------------------------------------- /test/rails/dummy/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/babel.config.js -------------------------------------------------------------------------------- /test/rails/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/bundle -------------------------------------------------------------------------------- /test/rails/dummy/bin/pnpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/pnpm -------------------------------------------------------------------------------- /test/rails/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/rails -------------------------------------------------------------------------------- /test/rails/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/rake -------------------------------------------------------------------------------- /test/rails/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/setup -------------------------------------------------------------------------------- /test/rails/dummy/bin/vite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/bin/vite -------------------------------------------------------------------------------- /test/rails/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config.ru -------------------------------------------------------------------------------- /test/rails/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/application.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/credentials.yml.enc -------------------------------------------------------------------------------- /test/rails/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/database.yml -------------------------------------------------------------------------------- /test/rails/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/generators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/generators.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/rails/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/rails/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/rails/dummy/config/vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/vite.json -------------------------------------------------------------------------------- /test/rails/dummy/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/webpack/development.js -------------------------------------------------------------------------------- /test/rails/dummy/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/webpack/environment.js -------------------------------------------------------------------------------- /test/rails/dummy/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/webpack/production.js -------------------------------------------------------------------------------- /test/rails/dummy/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/webpack/test.js -------------------------------------------------------------------------------- /test/rails/dummy/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/config/webpacker.yml -------------------------------------------------------------------------------- /test/rails/dummy/db/migrate/20210529074401_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/db/migrate/20210529074401_create_users.rb -------------------------------------------------------------------------------- /test/rails/dummy/db/migrate/20210529074827_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/db/migrate/20210529074827_create_posts.rb -------------------------------------------------------------------------------- /test/rails/dummy/db/migrate/20211109045358_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/db/migrate/20211109045358_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /test/rails/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/rails/dummy/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/db/seeds.rb -------------------------------------------------------------------------------- /test/rails/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/package.json -------------------------------------------------------------------------------- /test/rails/dummy/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/rails/dummy/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/postcss.config.js -------------------------------------------------------------------------------- /test/rails/dummy/postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/postcssrc.json -------------------------------------------------------------------------------- /test/rails/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/public/404.html -------------------------------------------------------------------------------- /test/rails/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/public/422.html -------------------------------------------------------------------------------- /test/rails/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/public/500.html -------------------------------------------------------------------------------- /test/rails/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/public/robots.txt -------------------------------------------------------------------------------- /test/rails/dummy/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/files/racecar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/fixtures/files/racecar.png -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/files/racecar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/fixtures/files/racecar1.png -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/files/racecar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/fixtures/files/racecar2.png -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/fixtures/posts.yml -------------------------------------------------------------------------------- /test/rails/dummy/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/rails/dummy/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/test/system/active_storage_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/active_storage_tests.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/morph_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/morph_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/navigation_adapter_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/navigation_adapter_tests.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/remote_form_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/remote_form_tests.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/remote_link_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/remote_link_tests.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbo_active_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbo_active_storage_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbo_navigation_adapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbo_navigation_adapter_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbo_remote_forms_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbo_remote_forms_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbo_remote_links_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbo_remote_links_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbolinks_active_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbolinks_active_storage_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbolinks_navigation_adapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbolinks_navigation_adapter_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbolinks_remote_forms_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbolinks_remote_forms_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/system/turbolinks_remote_links_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/system/turbolinks_remote_links_test.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/test_helper.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/turbo_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/turbo_test_case.rb -------------------------------------------------------------------------------- /test/rails/dummy/test/turbolinks_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/test/turbolinks_test_case.rb -------------------------------------------------------------------------------- /test/rails/dummy/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/dummy/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/test/rails/dummy/vite.config.ts -------------------------------------------------------------------------------- /tsconfig-lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/tsconfig-lint.json -------------------------------------------------------------------------------- /tsconfig-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/tsconfig-plugins.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/types.ts -------------------------------------------------------------------------------- /web-dev-server.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/web-dev-server.config.mjs -------------------------------------------------------------------------------- /web-test-runner.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonnorRogers/mrujs/HEAD/web-test-runner.config.mjs --------------------------------------------------------------------------------