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

  • Home
  • SEARCH
  • 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 3228350
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:40:55+00:00 2026-05-17T16:40:55+00:00

I’m new to Ruby on Rails (formerly and currently PHP expert) so forgive my

  • 0

I’m new to Ruby on Rails (formerly and currently PHP expert) so forgive my ignorance but I’m trying to get Sinatra working as middleware to redirect some old urls since I tried the gem rack-rewrite and couldn’t get that to work either.

I am using code samples from ASCIIcast so in my routes.rb I have the following:

root :to => HomeApp

(^ I’m redirecting the root only for testing)

In my lib folder I have home_app.rb

class HomeApp < Sinatra::Base  
  get "/" do  
    "Hello from Sinatra"  
  end  
end 

When I start the server (or if its already running) it produces the error:

routes.rb:10: uninitialized constant HomeApp

Which seems that it just isn’t aware of the lib/home_app.rb file.

I have included Sinatra in my Gemfile and ran bundle install and confirms it is included.

I just want to reroute old urls from my old site to my new ruby app but can’t get any of this middleware/rack stuff working. All documentation assumes you aren’t a total newb or is for RoR pre-3.0.

  • 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-17T16:40:56+00:00Added an answer on May 17, 2026 at 4:40 pm

    You don’t need to use Sinatra if you want to redirect some URLs. You can use the new redirect method. See the Rails Dispatch article.

    match "/stories/:year/:month/:day/:name" => redirect("/%{name}")
    
    constraints :user_agent => /iPhone/, :subdomain => /^(?!i\.)/ do
      match "*path" => redirect {|params, req| "http://i.myapp.com/#{req.fullpath}" }
    end
    

    In your specific case, the problem is that the HomeApp class is not loaded. Either add the /lib folder to your load path changing application.rb

    config.autoload_paths += %W( #{config.root}/lib )
    

    or require the file.

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

Sidebar

Related Questions

No related questions found

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.