Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

ruby - `<module:Templates>': uninitialized constant Tilt::CompileSite (NameError) using Sinatra / Unicorn

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

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)

In my randmovie_unicorn.rb file:

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

I'm not using HAML or anything similar.

Could somebody help me with that? Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...