I was able to get your example working almost without modification. This allowed me to do what you described:
before do
@prefix = "test"
end
get %r{#{@prefix}(\d+)} do |c|
puts "#{@prefix} #{c}"
erb :test, :locals => {:id => c}
end
I then ran shotgun to test the output and called /test123. The output was:
test 123
My view also reiterated that this was working properly. If the problem is that the URL is not being captured, you may need to reorganize your structure so that it is more like:
before do
@prefix = "test"
end
get "/#{@prefix}/:id" do
puts "#{@prefix} #{params[:id]}"
erb :test, :locals => {:id => params[:id]}
end
I don't know if the latter is feasible for your application, but if you are not specific enough in the routing, you are leaving yourself open for frequent bad matches. In my experience, the more RESTful your application is, the better off you will be when it comes time to writing these types of operations.
Alternatively, perhaps a YAML file to store your settings in, and then parsed by a script would give you better results for the route. For example, a YAML file with these contents:
prefix: test
And then a helper script that parses that, which would look something like this:
helpers do
def config
@config = YAML.load_file("config.yml")
end
end
You could then replace your before block with this:
before do
@prefix = config["prefix"]
end
My coding tastes make me lean toward using the YAML method, but I think any of these solutions should be viable.
/*as the last one that will match anything. – Bohdan Nov 10 '11 at 16:01