This file contains hidden or 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
#!/usr/bin/env ruby | |
# Convert Trac DB Wiki pages to Markdown source files | |
# | |
# Usage | |
# | |
# 1. Save the file somewhere and make it executable: | |
# chmod a+rx convert_track_wiki_to_markdown.rb | |
# 2. Run it like this: | |
# ./convert_track_wiki_to_markdown.rb /path/to/your/project/db/trac.db |
This file contains hidden or 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
# hack to auto compile sass when Jammit runs in development mode | |
# you can place this in an initializer | |
unless Rails.env.production? | |
require 'sass/engine' | |
module Jammit | |
module Helper | |
SASS_TIMESTAMPS = {} |