Skip to content

Commit

Permalink
make sure $: only contains strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jneen committed Sep 17, 2013
1 parent 20edfc6 commit ddbab38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/rougify
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'pathname'
ROOT_DIR = Pathname.new(__FILE__).dirname.parent
$:.push(ROOT_DIR.join('lib'))
$:.push(ROOT_DIR.join('lib').to_s)
load ROOT_DIR.join('lib/rouge.rb')
load ROOT_DIR.join('lib/rouge/cli.rb')

Expand Down

0 comments on commit ddbab38

Please sign in to comment.