Skip to content

Instantly share code, notes, and snippets.

@justqyx
justqyx / string_link.rb
Created September 6, 2013 01:32
字符串拼接
@justqyx
justqyx / rack_p3p.rb
Last active December 17, 2015 09:58 — forked from jhjguxin/application.rb
#userful gem [rack-p3p](https://github.com/hoopla/rack-p3p)
# [ie_iframe_cookies](https://github.com/grosser/ie_iframe_cookies)
# encoding: utf-8
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :set_p3p
def set_p3p
headers['P3P'] = "policyref=\"/w3c/p3p.xml\", CP=\"ALL DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\""
end