using sinatra with apache and phusion-passenger with "classic" style:
# config.ru
require 'sinatra'
configure do
....
end
require './app'
run Sinatra::Application
Now, lets say I want to define some things. What is the difference between defining it inside the configure block or outside?
# config.ru
require 'sinatra'
# A) Defining logger here
rack = File.new("logs/rack.log", "a+")
use Rack::CommonLogger, rack
# B) Global variables here
LOGGER = Logger.new(...)
# C) Gem configuration here
DataMapper::Property::Boolean.allow_nil(false)
configure do
# A) Or defining logger here?
rack = File.new("logs/rack.log", "a+")
use Rack::CommonLogger, rack
# B) Or global variables here?
LOGGER = Logger.new(...)
# C) Or gem configuration here?
DataMapper::Property::Boolean.allow_nil(false)
....
end
require './app'
run Sinatra::Application
Are there some general rules what should be done outside and what should be done inside? What is the difference? I tested both variants, and both seemed to work equally well.
I know configure can be used to react on environment like this:
configure :development do
....
end
So it is usefull for different environment configurations. This use case is clear. But what with general configurations for every environment? Where to put them? Is this only a matter of style?