Although equivalent, clearer for non-*nix based systems
This commit is contained in:
parent
ce7636ad18
commit
ad14766278
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
# Local templates
|
# Local templates
|
||||||
class Middleman::Templates::Local < Middleman::Templates::Base
|
class Middleman::Templates::Local < Middleman::Templates::Base
|
||||||
# Look for templates in ~/.middleman
|
# Look for templates inside .middleman in the user's home directory
|
||||||
# @return [String]
|
# @return [String]
|
||||||
def self.source_root
|
def self.source_root
|
||||||
File.join(File.expand_path('~/'), '.middleman')
|
File.join(Dir.home, '.middleman')
|
||||||
end
|
end
|
||||||
|
|
||||||
# Just copy from the template path
|
# Just copy from the template path
|
||||||
|
|
Loading…
Reference in a new issue