这是针对我正在试验并希望最终制作宝石的 Rails CLI。
任何人都知道正则表达式或类似方法来确定当前工作目录是否是 rails 项目的 rails 根目录?
def check_current_directory
current_directory = Dir.getwd
if current_directory # How to determine if inside Rails root?
proceed
else
abort("You must be in the root of your Rails app to use this gem")
end
end
任何帮助或想法表示赞赏