This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'ruote/storage/base' | |
module Ruote | |
module ActiveRecord | |
class Document < ::ActiveRecord::Base | |
set_table_name :documents | |
def self.before_fork | |
::ActiveRecord::Base.clear_all_connections! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; recentf | |
(require 'recentf) ;; save recently used files | |
(setq | |
recentf-save-file "~/.emacs.d/cache/recentf" | |
recentf-max-saved-items 1000 ;; max save 100 | |
recentf-max-menu-items 15) ;; max 15 in menu | |
(recentf-mode t) ;; turn it on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn intercept | |
"Call the function body-fn, by installing bindings to intercept all functions with a generic handler. The handler is called with the Var to the original function, its original value and original arguments." | |
[functions handler body-fn] | |
(with-bindings | |
(reduce | |
(fn [bs fn-var] | |
(let [f (deref fn-var)] | |
(merge bs | |
{fn-var | |
(fn [& args] (handler fn-var f args))}))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro record | |
"Dynamic factory for defrecords." | |
([name] `(record ~name {}) ) | |
([name vals-map] | |
`(let [con# (first (.getDeclaredConstructors ~name)) | |
num# (alength (.getParameterTypes con#))] | |
(merge (.newInstance con# (make-array Object num#)) ~vals-map)))) |
NewerOlder