Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3794072
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:52:25+00:00 2026-05-19T12:52:25+00:00

I have a Sinatra app setup where most of the logic is performed inside

  • 0

I have a Sinatra app setup where most of the logic is performed inside of various classes, and the post/get routes instantiate those classes and call their methods.

I’m thinking about whether putting the post/get route handlers inside of the classes themselves would be a better structure.

In any case, I’d like to know if it is possible. So for instance:

class Example
  def say_hello
    "Hello"
  end

  get '/hello' do
    @message = say_hello
  end
end

Without modification to the above, Sinatra will say there is no method say_hello on the SinatraApplication object.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:52:26+00:00Added an answer on May 19, 2026 at 12:52 pm

    You just need to inherit from Sinatra::Base:

    require "sinatra/base"
    
    class Example < Sinatra::Base
      def say_hello
        "Hello"
      end
    
      get "/hello" do
        say_hello
      end
    end
    

    You can run your app with Example.run!.


    If you need more separation between parts of your application, just make another Sinatra app. Put shared functionality in model classes and helpers, and run all your apps together with Rack.

    module HelloHelpers
      def say_hello
        "Hello"
      end
    end
    
    class Hello < Sinatra::Base
      helpers HelloHelpers
    
      get "/?" do
        @message = say_hello
        haml :index
      end
    end
    
    class HelloAdmin < Sinatra::Base
      helpers HelloHelpers
    
      get "/?" do
        @message = say_hello
        haml :"admin/index"
      end
    end
    

    config.ru:

    map "/" do
      run Hello
    end
    
    map "/admin" do
      run HelloAdmin
    end
    

    Install Thin, and run your app with thin start.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have simple Sinatra app. web.rb: require 'sinatra' get '/' do Hello end Gemfile:*
So I have a Sinatra app that receives an XML via a HTTP POST
I have a Sinatra app that runs inside of EventMachine. Currently, I am taking
I have a Sinatra app that, boiled down, looks basically like this: class MyApp
I have a Sinatra app, that uses omniauth which constantantly gets this error attack
I have a Sinatra DataMapper app hitting a sqlite3 database that I am attempting
I have got Sinatra/Rails app and an action which starts some long process. Ordinary
I have the following .erb view in a Sinatra app: <% sessions.each do |session|
Possible Duplicate: Error loading Active Record gem with sinatra app using RVM I have
I have a Sinatra app that basically takes some input values and then finds

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.