Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Simple question: I want to be able to pass options into my sinatra app in config.ru. How is that possible? My config.ru looks like this:

run MyApp

But I want to have this in my MyApp class to take arguments:

class MyApp < Sinatra::Base
  def initialize(config)
    @config = config
  end
end

But I can't figure out a way to do this. Ideas?

share|improve this question

1 Answer

up vote 7 down vote accepted
  1. Use set/settings

    require 'sinatra/base'
    
    class MyApp < Sinatra::Base
      get '/' do
        settings.time_at_startup.to_s
      end
    end
    
    # Just arbitrarily picking time as it'll be static but, diff for each run.
    MyApp.set :time_at_startup, Time.now
    
    run MyApp
    
  2. Use a config file. See Sinatra::ConfigFile in contrib (which also uses set and settings, but loads params from a YAML file)

share|improve this answer
Exactly what I was looking for. Thanks! – Ronze Mar 11 '12 at 18:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.