public
Description: Simple tool for creating source-code intensive presentations and courses
Homepage:
Clone URL: git://github.com/pragdave/codex.git
codex / Rakefile
100644 10 lines (7 sloc) 0.394 kb
1
2
3
4
5
6
7
8
9
10
$:.unshift File.join(File.dirname(__FILE__), 'lib')
 
# Hoe insists on reading every damn file looking for a version string.
# This can't work, because we don't know what the encoding is
Encoding.default_external = 'binary' if defined?(Encoding)
 
require 'config/requirements'
require 'config/hoe' # setup Hoe + all gem configuration
 
Dir['tasks/**/*.rake'].each { |rake| load rake }