Skip to content

Instantly share code, notes, and snippets.

@josepjaume
Created September 22, 2014 09:43
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 josepjaume/80535b2940d93afb886c to your computer and use it in GitHub Desktop.
Save josepjaume/80535b2940d93afb886c to your computer and use it in GitHub Desktop.
CORS with Rails
module App
class Application < Rails::Application
config.middleware.use Rack::Cors do
allow do
origins '*'
resource '*', methods: [:get, :post, :put, :delete, :options], headers: :any
end
end
end
end
gem 'rack-cors'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment