├── spec ├── dummy │ ├── log │ │ ├── .keep │ │ └── production.log │ ├── public │ │ ├── favicon.ico │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── 500.html │ │ ├── 422.html │ │ └── 404.html │ ├── .ruby-version │ ├── app │ │ ├── controllers │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ ├── application_controller.rb │ │ │ ├── inertia_child_share_test_controller.rb │ │ │ ├── inertia_responders_test_controller.rb │ │ │ ├── inertia_multithreaded_share_controller.rb │ │ │ ├── inertia_lambda_shared_props_controller.rb │ │ │ ├── inertia_session_continuity_test_controller.rb │ │ │ ├── inertia_share_test_controller.rb │ │ │ ├── inertia_merge_instance_props_controller.rb │ │ │ ├── inertia_config_test_controller.rb │ │ │ ├── inertia_conditional_sharing_controller.rb │ │ │ ├── inertia_rails_mimic_controller.rb │ │ │ ├── inertia_merge_shared_controller.rb │ │ │ ├── inertia_render_test_controller.rb │ │ │ └── inertia_test_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── views │ │ │ └── layouts │ │ │ │ ├── testing.html.erb │ │ │ │ ├── conditional.html.erb │ │ │ │ └── application.html.erb │ │ └── javascript │ │ │ └── packs │ │ │ └── application.js │ ├── bin │ │ ├── rake │ │ ├── rails │ │ └── setup │ ├── config │ │ ├── spring.rb │ │ ├── environment.rb │ │ ├── initializers │ │ │ ├── mime_types.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── application_controller_renderer.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── wrap_parameters.rb │ │ │ ├── inflections.rb │ │ │ └── content_security_policy.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── locales │ │ │ └── en.yml │ │ ├── application.rb │ │ ├── puma.rb │ │ ├── environments │ │ │ ├── test.rb │ │ │ ├── development.rb │ │ │ └── production.rb │ │ └── routes.rb │ ├── config.ru │ └── Rakefile ├── support │ └── helper_module.rb ├── spec_helper.rb ├── inertia │ ├── lazy_spec.rb │ ├── rails_mimic_spec.rb │ ├── error_sharing_spec.rb │ ├── middleware_spec.rb │ ├── conditional_sharing_spec.rb │ ├── response_spec.rb │ ├── ssr_spec.rb │ ├── sharing_spec.rb │ ├── rspec_helper_spec.rb │ ├── configuration_spec.rb │ ├── rendering_spec.rb │ └── request_spec.rb └── rails_helper.rb ├── .rspec ├── app ├── views │ └── inertia.html.erb └── controllers │ └── inertia_rails │ └── static_controller.rb ├── lib ├── inertia_rails │ ├── version.rb │ ├── helper.rb │ ├── engine.rb │ ├── inertia_rails.rb │ ├── lazy.rb │ ├── configuration.rb │ ├── middleware.rb │ ├── controller.rb │ ├── renderer.rb │ └── rspec.rb ├── patches │ ├── request.rb │ ├── mapper.rb │ ├── better_errors.rb │ ├── debug_exceptions.rb │ └── debug_exceptions │ │ ├── patch-5-0.rb │ │ └── patch-5-1.rb ├── generators │ └── inertia_rails │ │ ├── install │ │ ├── controller.rb │ │ ├── react │ │ │ ├── InertiaExample.jsx │ │ │ └── inertia.jsx │ │ ├── svelte │ │ │ ├── InertiaExample.svelte │ │ │ └── inertia.js │ │ └── vue │ │ │ ├── InertiaExample.vue │ │ │ └── inertia.js │ │ └── install_generator.rb ├── tasks │ └── inertia_rails.rake └── inertia_rails.rb ├── Rakefile ├── bin ├── setup └── console ├── Gemfile ├── .gitignore ├── .github └── workflows │ └── push.yml ├── LICENSE.txt ├── inertia_rails.gemspec ├── CODE_OF_CONDUCT.md ├── CHANGELOG.md └── README.md /spec/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/log/production.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /spec/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require rails_helper 4 | -------------------------------------------------------------------------------- /app/views/inertia.html.erb: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /spec/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /lib/inertia_rails/version.rb: -------------------------------------------------------------------------------- 1 | module InertiaRails 2 | VERSION = "3.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/testing.html.erb: -------------------------------------------------------------------------------- 1 |If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |