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
# For Rails 2.3.2 or earlier. | |
require 'maruku' # or use config.gem "maruku" in environment.rb | |
module ApplicationHelper | |
# Replacement for Rails' default Markdown helper which uses Maruku instead | |
# of BlueCloth. | |
def markdown(text) | |
text.blank? ? "" : Maruku.new(text).to_html | |
end |
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
#This is the git ignore file used in Duck Hunted | |
#Note that ! negates an ignore. We ignore everything in Library then | |
#un-ignore the metadata folder and some specific files | |
#Use at your own risk, this may totally destroy your project, but it worked for us | |
#NOTE: this will cause your collaborators to re-import assets periodically | |
Temp/* | |
Library/* | |
Build/* |
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
[diff] | |
tool = "twdiff" | |
[difftool] | |
prompt = false | |
[difftool "twdiff"] | |
cmd = /usr/local/bin/twdiff --wait --resume "$LOCAL" "$REMOTE" | |
[merge] | |
tool = "twdiff" | |
[mergetool] |