rack-console

💻 `rails console` for your Rack applications

MIT License

Downloads
428.9K
Stars
27
Committers
2
rack-console - v1.3.2 Latest Release

Published by davidcelis 5 months ago

This release fixes a minor issue where an additional LoadError from attempting to load Pry would be printed in the console when any other exception occurs and is meant for applications still on older versions of Rack.

rack-console - v1.4.1

Published by davidcelis 5 months ago

This release fixes a minor issue where an additional LoadError from attempting to load Pry would be printed in the console when any other exception occurs.

rack-console - 1.4.0

Published by davidcelis about 2 years ago

Adds support for Rack 3.

rack-console - 1.3.0

Published by davidcelis over 10 years ago

  • Add Rack-based convenience methods to Rack::Console:
    • app.get('/')
    • app.post('/', { param: value })
    • app.put('/', {}, { 'HTTP_HEADER' => value })
    • etc.
  • Add a configurable preamble for those using Rack::Console in their own framework
    • e.g: ENV['RACK_CONSOLE_PREAMBLE'] = "Loading #{Rails.env} environment (Rails #{Rails::VERSION})"
rack-console - 1.2.0

Published by davidcelis over 10 years ago

  • Add reload! functionality
  • Add a -r (or --require) option to require a file or library before Rack::Console starts
  • Add a -I (or --include) option to add colon-separated paths to the $LOAD_PATH before Rack::Console starts
  • Change Rack::Console to be initialized as opposed to calling .start on the class directly. It is initialized with an options hash that the rack-console binary will parse out of ARGV.
rack-console - 1.1.0

Published by davidcelis over 10 years ago

  • Provide a rack-console executable for easy access to a Rack console.
rack-console - 1.0.1

Published by davidcelis over 10 years ago

  • Fix an issue where require 'rack/builder' was not enough for Rack::Console to function.
rack-console - 1.0.0

Published by davidcelis over 10 years ago

  • Initial release