parent
652e56dec4
commit
4bdb679352
@ -1 +0,0 @@
|
|||||||
{"access_token":"b_Pc60Dd5eyg_ut3cHbsjQO9EJJdj2Qj5F99o9LH9ltKSme7_FZ3Of22lWLL-K2V0siWzv-bd9PO0Dn-L1PBvIy9LhXa0qPVaFl6vTtZHR2kA8qjo1ps2ancya0t7KmzURGbAFAAXM","expires_in":7200,"got_token_at":1467976842}
|
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 222a9bdd72014f197baf2131ab71cc41660111ed
|
|
@ -0,0 +1,25 @@
|
|||||||
|
#coding=utf-8
|
||||||
|
#
|
||||||
|
|
||||||
|
module Wechat
|
||||||
|
class CacheFile
|
||||||
|
class << self
|
||||||
|
def cache
|
||||||
|
if defined?(Rails)
|
||||||
|
Rails.cache
|
||||||
|
else
|
||||||
|
File
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def read(key)
|
||||||
|
cache.read(key) || ''
|
||||||
|
end
|
||||||
|
|
||||||
|
def write(key, val)
|
||||||
|
cache.write(key, val)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
[submodule "app/assets/javascripts/ckeditor-releases"]
|
|
||||||
path = app/assets/javascripts/ckeditor-releases
|
|
||||||
url = git://github.com/ckeditor/ckeditor-releases.git
|
|
Loading…
Reference in new issue