本文介绍了`< module:Templates>':使用Sinatra/Unicorn的未初始化常量Tilt :: CompileSite(NameError)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Ruby世界的新手.我使用Sinatra创建了我的第一个应用程序,但我的生产服务器遇到了一些麻烦.

I'm new in the Ruby world. I created my first app using Sinatra, and I'm having some trouble on my production server.

当我在本地计算机上运行unicorn -c randmovie_unicorn.rb时,它工作正常.但是在生产中,我会收到此错误:

When I run unicorn -c randmovie_unicorn.rb on my local machine, it works just fine. But in production, I get this error:

<module:Templates>': uninitialized constant Tilt::CompileSite (NameError)

在我的randmovie_unicorn.rb文件中:

preload_app true
working_directory "./"
listen 8006
worker_processes 2
timeout 30

我没有使用HAML或类似的东西.

I'm not using HAML or anything similar.

有人可以帮我吗?谢谢!

Could somebody help me with that? Thanks!

推荐答案

我认为这是倾斜2.0.0或sinatra中的错误.在您的Gemfile中指定倾斜版本:

I think it's a bug in tilt 2.0.0 or in sinatra.Specify tilt version in your Gemfile:

gem 'tilt', '~> 1.4.1'

这篇关于`&lt; module:Templates&gt;':使用Sinatra/Unicorn的未初始化常量Tilt :: CompileSite(NameError)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 17:35