├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.markdown ├── Gemfile ├── MIT-LICENSE ├── README.markdown ├── Rakefile ├── extensions ├── README.markdown ├── chrome │ ├── html │ │ ├── devtools.html │ │ └── panel.html │ ├── js │ │ ├── background.js │ │ ├── devtools.js │ │ └── panel.js │ └── manifest.json ├── img │ └── icon_128.png ├── package.json └── script │ └── run_chrome.sh ├── lib ├── web-console.rb ├── web_console.rb └── web_console │ ├── context.rb │ ├── errors.rb │ ├── evaluator.rb │ ├── exception_mapper.rb │ ├── extensions.rb │ ├── injector.rb │ ├── interceptor.rb │ ├── locales │ └── en.yml │ ├── middleware.rb │ ├── permissions.rb │ ├── railtie.rb │ ├── request.rb │ ├── session.rb │ ├── source_location.rb │ ├── tasks │ ├── extensions.rake │ └── templates.rake │ ├── template.rb │ ├── templates │ ├── _inner_console_markup.html.erb │ ├── _markup.html.erb │ ├── _prompt_box_markup.html.erb │ ├── console.js.erb │ ├── error_page.js.erb │ ├── index.html.erb │ ├── layouts │ │ ├── inlined_string.erb │ │ └── javascript.erb │ ├── main.js.erb │ ├── regular_page.js.erb │ └── style.css.erb │ ├── testing │ ├── erb_precompiler.rb │ ├── fake_middleware.rb │ └── helper.rb │ ├── version.rb │ ├── view.rb │ └── whiny_request.rb ├── test ├── dummy │ ├── README.rdoc │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ ├── controller_helper_test_controller.rb │ │ │ ├── exception_test_controller.rb │ │ │ ├── helper_error_controller.rb │ │ │ ├── helper_test_controller.rb │ │ │ ├── model_test_controller.rb │ │ │ └── tests_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ ├── .keep │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ ├── controller_helper_test │ │ │ └── index.html.erb │ │ │ ├── exception_test │ │ │ └── xhr.html.erb │ │ │ ├── helper_error │ │ │ └── index.html.erb │ │ │ ├── helper_test │ │ │ └── index.html.erb │ │ │ ├── layouts │ │ │ └── application.html.erb │ │ │ └── model_test │ │ │ └── index.html.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ └── rake │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── backtrace_silencers.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ └── routes.rb │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico ├── support │ └── scenarios │ │ ├── bad_custom_error_scenario.rb │ │ ├── basic_nested_scenario.rb │ │ ├── custom_error_scenario.rb │ │ ├── eval_nested_scenario.rb │ │ ├── flat_scenario.rb │ │ └── reraised_scenario.rb ├── templates │ ├── config.ru │ ├── html │ │ └── test_runner.html.erb │ ├── package.json │ └── test │ │ ├── auto_complete_test.js │ │ ├── dom_helper_test.js │ │ ├── repl_console_test.js │ │ └── test_helper.js ├── test_helper.rb └── web_console │ ├── context_test.rb │ ├── evaluator_test.rb │ ├── exception_mapper_test.rb │ ├── helper_test.rb │ ├── injector_test.rb │ ├── integration_test.rb │ ├── interceptor_test.rb │ ├── middleware_test.rb │ ├── permissions_test.rb │ ├── request_test.rb │ ├── session_test.rb │ └── whiny_request_test.rb └── web-console.gemspec /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/CHANGELOG.markdown -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/Rakefile -------------------------------------------------------------------------------- /extensions/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/README.markdown -------------------------------------------------------------------------------- /extensions/chrome/html/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/html/devtools.html -------------------------------------------------------------------------------- /extensions/chrome/html/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/html/panel.html -------------------------------------------------------------------------------- /extensions/chrome/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/js/background.js -------------------------------------------------------------------------------- /extensions/chrome/js/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/js/devtools.js -------------------------------------------------------------------------------- /extensions/chrome/js/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/js/panel.js -------------------------------------------------------------------------------- /extensions/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/chrome/manifest.json -------------------------------------------------------------------------------- /extensions/img/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/img/icon_128.png -------------------------------------------------------------------------------- /extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/package.json -------------------------------------------------------------------------------- /extensions/script/run_chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/extensions/script/run_chrome.sh -------------------------------------------------------------------------------- /lib/web-console.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "web_console" 4 | -------------------------------------------------------------------------------- /lib/web_console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console.rb -------------------------------------------------------------------------------- /lib/web_console/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/context.rb -------------------------------------------------------------------------------- /lib/web_console/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/errors.rb -------------------------------------------------------------------------------- /lib/web_console/evaluator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/evaluator.rb -------------------------------------------------------------------------------- /lib/web_console/exception_mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/exception_mapper.rb -------------------------------------------------------------------------------- /lib/web_console/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/extensions.rb -------------------------------------------------------------------------------- /lib/web_console/injector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/injector.rb -------------------------------------------------------------------------------- /lib/web_console/interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/interceptor.rb -------------------------------------------------------------------------------- /lib/web_console/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/locales/en.yml -------------------------------------------------------------------------------- /lib/web_console/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/middleware.rb -------------------------------------------------------------------------------- /lib/web_console/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/permissions.rb -------------------------------------------------------------------------------- /lib/web_console/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/railtie.rb -------------------------------------------------------------------------------- /lib/web_console/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/request.rb -------------------------------------------------------------------------------- /lib/web_console/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/session.rb -------------------------------------------------------------------------------- /lib/web_console/source_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/source_location.rb -------------------------------------------------------------------------------- /lib/web_console/tasks/extensions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/tasks/extensions.rake -------------------------------------------------------------------------------- /lib/web_console/tasks/templates.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/tasks/templates.rake -------------------------------------------------------------------------------- /lib/web_console/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/template.rb -------------------------------------------------------------------------------- /lib/web_console/templates/_inner_console_markup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/_inner_console_markup.html.erb -------------------------------------------------------------------------------- /lib/web_console/templates/_markup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/_markup.html.erb -------------------------------------------------------------------------------- /lib/web_console/templates/_prompt_box_markup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/_prompt_box_markup.html.erb -------------------------------------------------------------------------------- /lib/web_console/templates/console.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/console.js.erb -------------------------------------------------------------------------------- /lib/web_console/templates/error_page.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/error_page.js.erb -------------------------------------------------------------------------------- /lib/web_console/templates/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/index.html.erb -------------------------------------------------------------------------------- /lib/web_console/templates/layouts/inlined_string.erb: -------------------------------------------------------------------------------- 1 | `<%= j yield %>` 2 | -------------------------------------------------------------------------------- /lib/web_console/templates/layouts/javascript.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/layouts/javascript.erb -------------------------------------------------------------------------------- /lib/web_console/templates/main.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/main.js.erb -------------------------------------------------------------------------------- /lib/web_console/templates/regular_page.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/regular_page.js.erb -------------------------------------------------------------------------------- /lib/web_console/templates/style.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/templates/style.css.erb -------------------------------------------------------------------------------- /lib/web_console/testing/erb_precompiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/testing/erb_precompiler.rb -------------------------------------------------------------------------------- /lib/web_console/testing/fake_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/testing/fake_middleware.rb -------------------------------------------------------------------------------- /lib/web_console/testing/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/testing/helper.rb -------------------------------------------------------------------------------- /lib/web_console/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module WebConsole 4 | VERSION = "4.2.1" 5 | end 6 | -------------------------------------------------------------------------------- /lib/web_console/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/view.rb -------------------------------------------------------------------------------- /lib/web_console/whiny_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/lib/web_console/whiny_request.rb -------------------------------------------------------------------------------- /test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/README.rdoc -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/controller_helper_test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/controller_helper_test_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/exception_test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/exception_test_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/helper_error_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/helper_error_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/helper_test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/helper_test_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/model_test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/model_test_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/tests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/controllers/tests_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ApplicationHelper 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/controller_helper_test/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/views/controller_helper_test/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/exception_test/xhr.html.erb: -------------------------------------------------------------------------------- 1 |

Do an XHR request!

2 | -------------------------------------------------------------------------------- /test/dummy/app/views/helper_error/index.html.erb: -------------------------------------------------------------------------------- 1 | <% @ok = 42 %> 2 | <% params.fetch(:bad_key) %> 3 | -------------------------------------------------------------------------------- /test/dummy/app/views/helper_test/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/views/helper_test/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/model_test/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/support/scenarios/bad_custom_error_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/bad_custom_error_scenario.rb -------------------------------------------------------------------------------- /test/support/scenarios/basic_nested_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/basic_nested_scenario.rb -------------------------------------------------------------------------------- /test/support/scenarios/custom_error_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/custom_error_scenario.rb -------------------------------------------------------------------------------- /test/support/scenarios/eval_nested_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/eval_nested_scenario.rb -------------------------------------------------------------------------------- /test/support/scenarios/flat_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/flat_scenario.rb -------------------------------------------------------------------------------- /test/support/scenarios/reraised_scenario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/support/scenarios/reraised_scenario.rb -------------------------------------------------------------------------------- /test/templates/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/config.ru -------------------------------------------------------------------------------- /test/templates/html/test_runner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/html/test_runner.html.erb -------------------------------------------------------------------------------- /test/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/package.json -------------------------------------------------------------------------------- /test/templates/test/auto_complete_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/test/auto_complete_test.js -------------------------------------------------------------------------------- /test/templates/test/dom_helper_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/test/dom_helper_test.js -------------------------------------------------------------------------------- /test/templates/test/repl_console_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/test/repl_console_test.js -------------------------------------------------------------------------------- /test/templates/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/templates/test/test_helper.js -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/web_console/context_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/context_test.rb -------------------------------------------------------------------------------- /test/web_console/evaluator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/evaluator_test.rb -------------------------------------------------------------------------------- /test/web_console/exception_mapper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/exception_mapper_test.rb -------------------------------------------------------------------------------- /test/web_console/helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/helper_test.rb -------------------------------------------------------------------------------- /test/web_console/injector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/injector_test.rb -------------------------------------------------------------------------------- /test/web_console/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/integration_test.rb -------------------------------------------------------------------------------- /test/web_console/interceptor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/interceptor_test.rb -------------------------------------------------------------------------------- /test/web_console/middleware_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/middleware_test.rb -------------------------------------------------------------------------------- /test/web_console/permissions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/permissions_test.rb -------------------------------------------------------------------------------- /test/web_console/request_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/request_test.rb -------------------------------------------------------------------------------- /test/web_console/session_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/session_test.rb -------------------------------------------------------------------------------- /test/web_console/whiny_request_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/test/web_console/whiny_request_test.rb -------------------------------------------------------------------------------- /web-console.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/web-console/HEAD/web-console.gemspec --------------------------------------------------------------------------------