rack-devel archive mirror (unofficial) https://groups.google.com/group/rack-devel
 help / color / mirror / Atom feed
* call rack middleware inside method
@ 2013-05-22  9:18 John Mayor
  0 siblings, 0 replies; only message in thread
From: John Mayor @ 2013-05-22  9:18 UTC (permalink / raw)
  To: rack-devel

[-- Attachment #1: Type: text/plain, Size: 1012 bytes --]

I'm really new to rack dev and have a stupid question.
I have a sinatra app and I need to use a rack middleware. Here's my code.

@config.ru
require 'rubygems'
require 'bundler'
require './app'
run App


@app.rb
...
class App < Sinatra::Base

use Rack::MyClass, {:param1 => "one", :param2 => "two"} do|output|
...
end

end

this works fine. the problem is that I need to call the rack middleware 
inside a method. something like this.

class App < Sinatra::Base

def my_method

use Rack::MyClass, {:param1 => "one", :param2 => "two"} do|output|
...
end

end

end


but unfortunately this does not work. can anyone give some help with this?
why it doesn't work and how can I find a solution for this?

thanks.

-- 

--- 
You received this message because you are subscribed to the Google Groups "Rack Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rack-devel+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



[-- Attachment #2: Type: text/html, Size: 1586 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-05-22 13:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-22  9:18 call rack middleware inside method John Mayor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).