Skip to content

Instantly share code, notes, and snippets.

@thermistor
Forked from ajturner/OPTIONS.rb
Created September 18, 2012 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thermistor/3744364 to your computer and use it in GitHub Desktop.
Save thermistor/3744364 to your computer and use it in GitHub Desktop.
make Rails respond to an HTTP OPTIONS method request
# Add to routes.rb
# Needed for responding to OPTIONS http method
map.connect '*path',
:controller => 'home',
:action => 'options_for_mopd',
:conditions => {:method => :options}
# in home_controller.rb
def options_for_mopd
render :nothing => true, :status => 200
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment