开发者

Where am I going wrong? "undefined method 'application' for Sinatra:Module" Sinatra/Passenger/Apache

开发者 https://www.devze.com 2023-01-03 02:08 出处:网络
I\'m trying to get my first Sinatra app off the ground, but am getting an error page from Passenger: undefined method `application\' for Sinatra:Module

I'm trying to get my first Sinatra app off the ground, but am getting an error page from Passenger:

undefined method `application' for Sinatra:Module

Here's my Rackup file:

require 'rubygems'
require 'sinatra'
set :env,  :production
disable :run
require 'app'
run Sinatra.application

And the app itself:

#!/usr/bin/env ruby

require 'rubygems'
require 'sinatra'
require 'haml'

get '/' do
  haml :index
end

get '/hello/:name' do |name|
  @name = name
  haml :hello
end

get '/goodbye/:name' do |name|
  haml :goodbye, :locals => {:name => name}
end

__END__

@@layout
%html
  %head
    %title hello.dev
  %body
    =yield

@@index
#header
  %h1 hello.dev
#co开发者_StackOverflowntent
  %p
    This is a test...

@@hello
%h1= "Hello #{@name}!"

@@goodbye
%h1= "Goodbye #{name}!"

Where am I going wrong?


here's mine config.ru

require 'application'

set :run, false
set :environment, :production

FileUtils.mkdir_p 'log' unless File.exists?('log')
log = File.new("log/sinatra.log", "a")
$stdout.reopen(log)
$stderr.reopen(log)

run Sinatra::Application

also, my app code lives in application.rb

0

精彩评论

暂无评论...
验证码 换一张
取 消