我正在尝试创建一个模块化的 sinatra 应用程序,并且需要我的每个子应用程序views
在我的项目文件夹的根目录中查找目录。但它只在子目录本身而不是根目录中查找视图目录。这是我的项目的样子:
├── config.ru
├── music_catalog
│ └── app.rb
├── public
│ ├── css
│ │ └── site.css
│ └── images
│ ├── content_top_bg.jpg
│ ├── demo_image_01.jpg
│ ├── god_save_http_it_aint_no_human_being.png
│ ├── header_bg.jpg
│ ├── home-showcase.png
│ ├── hover_link_bg.jpg
│ ├── its_little_its_blue_and_its_magical.jpeg
│ ├── linkbar_bg.jpg
│ ├── logo.png
│ ├── main_graphics.jpg
│ ├── placeholder.gif
│ ├── placeholder.jpg
│ ├── placeholder.png
│ ├── right_navbar_bg.jpg
│ └── shadow_left.jpg
└── views
├── album.haml
├── genre.haml
├── index.haml
├── layout.haml
├── login.haml
└── not_found.haml
所以在我的 config.ru 我尝试这样做:
require 'sinatra'
require './music_catalog/app.rb'
set :root, File.dirname(__FILE__)
# enable :run
map "/" do
run MusicCatalog
end
在app.rb
里面music_catalog
我像这样使用根变量:
require 'sinatra/base'
`# I thing I am doing this wrong`
set :views, Proc.new { File.join(root, "sites/#{site}/views") }
class MusicCatalog < Sinatra::Base
get "/" do
haml :index
end
end
但是index.haml
,它没有将我的根目录拉出,而是像这样出错:
Errno::ENOENT at /
No such file or directory - /Users/amiterandole/Dropbox/code/rsandbox/sinatra_music_store/music_catalog/views/index.haml
我在用ruby 1.9.3p194
请帮我将视图目录设置到根views
文件夹中的正确位置。