├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── CHANGES.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── .DS_Store └── views │ ├── .DS_Store │ └── rescues │ ├── _source.html.erb │ ├── _trace.html.erb │ └── layout.erb ├── bin ├── rubocop └── test ├── docs └── editor_opener.gif ├── editor_opener.gemspec ├── lib ├── editor_opener.rb ├── editor_opener │ ├── action_dispatch │ │ ├── exception_wrapper_overrides.rb │ │ └── trace_to_file_extractor.rb │ ├── railtie.rb │ └── version.rb └── generators │ └── editor_opener │ ├── install_generator.rb │ └── templates │ ├── README │ └── initializer.rb └── test ├── dummy ├── Rakefile ├── app │ ├── .DS_Store │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── users_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── users_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── account.rb │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ └── views │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ ├── pwa │ │ ├── manifest.json.erb │ │ └── service-worker.js │ │ └── users │ │ ├── _form.html.erb │ │ ├── _user.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── bin │ ├── dev │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ └── inflections.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── storage.yml ├── db │ ├── migrate │ │ └── 20250702184439_create_users.rb │ └── schema.rb ├── log │ └── .keep └── public │ ├── 400.html │ ├── 404.html │ ├── 406-unsupported-browser.html │ ├── 422.html │ ├── 500.html │ ├── icon.png │ └── icon.svg ├── editor_opener_test.rb ├── integration_test.rb ├── test_helper.rb └── trace_to_file_extractor_test.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/Rakefile -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/app/views/.DS_Store -------------------------------------------------------------------------------- /app/views/rescues/_source.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/app/views/rescues/_source.html.erb -------------------------------------------------------------------------------- /app/views/rescues/_trace.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/app/views/rescues/_trace.html.erb -------------------------------------------------------------------------------- /app/views/rescues/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/app/views/rescues/layout.erb -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/bin/test -------------------------------------------------------------------------------- /docs/editor_opener.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/docs/editor_opener.gif -------------------------------------------------------------------------------- /editor_opener.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/editor_opener.gemspec -------------------------------------------------------------------------------- /lib/editor_opener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/editor_opener.rb -------------------------------------------------------------------------------- /lib/editor_opener/action_dispatch/exception_wrapper_overrides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/editor_opener/action_dispatch/exception_wrapper_overrides.rb -------------------------------------------------------------------------------- /lib/editor_opener/action_dispatch/trace_to_file_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/editor_opener/action_dispatch/trace_to_file_extractor.rb -------------------------------------------------------------------------------- /lib/editor_opener/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/editor_opener/railtie.rb -------------------------------------------------------------------------------- /lib/editor_opener/version.rb: -------------------------------------------------------------------------------- 1 | module EditorOpener 2 | VERSION = "0.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /lib/generators/editor_opener/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/generators/editor_opener/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/editor_opener/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/generators/editor_opener/templates/README -------------------------------------------------------------------------------- /lib/generators/editor_opener/templates/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/lib/generators/editor_opener/templates/initializer.rb -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/.DS_Store -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* Application styles */ 2 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/models/account.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/pwa/manifest.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/pwa/manifest.json.erb -------------------------------------------------------------------------------- /test/dummy/app/views/pwa/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/pwa/service-worker.js -------------------------------------------------------------------------------- /test/dummy/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/_user.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/app/views/users/show.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/bin/dev -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20250702184439_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/db/migrate/20250702184439_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/400.html -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/icon.png -------------------------------------------------------------------------------- /test/dummy/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/dummy/public/icon.svg -------------------------------------------------------------------------------- /test/editor_opener_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/editor_opener_test.rb -------------------------------------------------------------------------------- /test/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/integration_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/trace_to_file_extractor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/editor_opener/HEAD/test/trace_to_file_extractor_test.rb --------------------------------------------------------------------------------