提交 a9840505 编写于 作者: J Jan Xie

fix Rails::Paths::Root document

上级 144d1b8b
......@@ -6,7 +6,7 @@ module Paths
# It allows you to collect information about how you want to structure your application
# paths by a Hash like API. It requires you to give a physical path on initialization.
#
# root = Root.new
# root = Root.new "/rails"
# root.add "app/controllers", :eager_load => true
#
# The command above creates a new root object and add "app/controllers" as a path.
......@@ -36,8 +36,7 @@ module Paths
#
# Finally, the Path object also provides a few helpers:
#
# root = Root.new
# root.path = "/rails"
# root = Root.new "/rails"
# root.add "app/controllers"
#
# root["app/controllers"].expanded # => ["/rails/app/controllers"]
......@@ -48,7 +47,7 @@ class Root < ::Hash
attr_accessor :path
def initialize(path)
raise if path.is_a?(Array)
raise "Argument should be a String of the physical root path" if path.is_a?(Array)
@current = nil
@path = path
@root = self
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册