Skip to content

Instantly share code, notes, and snippets.

View phillipuniverse's full-sized avatar

Phillip Verheyden phillipuniverse

View GitHub Profile
class X {
@Autowired
private X me;
@Transactional
foo() {
}
@Transactional
@phillipuniverse
phillipuniverse / haml_converter.rb
Created April 21, 2012 20:22 — forked from dtjm/haml_converter.rb
HAML plugin for jekyll
# _plugins/haml_converter.rb
module Jekyll
class HamlConverter < Converter
safe true
def setup
return if @setup
require 'haml'
@setup = true