Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rack-methodoverride-with-params

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-methodoverride-with-params

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Rack MethodOverride With Params

Rack MethodOverride With Params solves the issue where POST requests with _method as a query param do not use _method's value as the HTTP method in Rails etc that use Rack MethodOverride.

It does this by extending Rack::MethodOverride and overriding it so it looks at both query params and form params. So you can use it anywhere you were using Rack::MethodOverride

To use it with Rack Builder

require 'rack-methodoverride-with-params'
#...
use Rack::MethodOverrideWithParams

to use it with Rails

add it to the Gemfile

gem 'rack-methodoverride-with-params'

swap Rack::MethodOverride in config/environment.rb

config.middleware.swap Rack::MethodOverride, Rack::MethodOverrideWithParams

Contrib

There is not much here, but if you want to play around, clone the project, run the specs and hack away.

I probably won't be actively working on this much as it is really simple, but if you ping me about it on github or twitter(I'm baroquebobcat), I'll help you out.

FAQs

Package last updated on 29 Sep 2010

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc