Skip to content

Commit

Permalink
Shorten plugin loading code and update history.
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Jan 29, 2012
1 parent 02366ae commit 4499df8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
1 change: 1 addition & 0 deletions History.txt
Expand Up @@ -4,6 +4,7 @@
* Add --default-mimetype option (#279)
* Allow setting of RedCloth options (#284)
* Add post_url Liquid tag for internal post linking (#369)
* Allow multiple plugin dirs to be specified (#438)
* Bug Fixes
* Allow some special characters in highlight names
* URL escape category names in URL generation (#360)
Expand Down
12 changes: 1 addition & 11 deletions lib/jekyll/site.rb
Expand Up @@ -18,17 +18,7 @@ def initialize(config)
self.safe = config['safe']
self.source = File.expand_path(config['source'])
self.dest = File.expand_path(config['destination'])
self.plugins = if config['plugins'].respond_to?('each')
# If plugins is an array, process it.
Array(config['plugins']).map { |d| File.expand_path(d) }
else
if config['plugins'].nil?
[]
else
# Otherwise process a single entry as an array.
[File.expand_path(config['plugins'])]
end
end
self.plugins = Array(config['plugins']).map { |d| File.expand_path(d) }
self.lsi = config['lsi']
self.pygments = config['pygments']
self.permalink_style = config['permalink'].to_sym
Expand Down

0 comments on commit 4499df8

Please sign in to comment.