Skip to content

Instantly share code, notes, and snippets.

View tiagogeraldi's full-sized avatar

Tiago Andre Geraldi tiagogeraldi

  • Toledo, PR - Brasil
View GitHub Profile
@tiagogeraldi
tiagogeraldi / gist:11255684
Created April 24, 2014 14:02
cross access config
require 'sinatra/cross_origin'
class TweekRecommender < Sinatra::Base
include SinatraSimpleRouter
configure do
enable :cross_origin
set :allow_origin, :any
set :allow_methods, [:get, :post, :options]
set :allow_credentials, true