class Falcon::Service::Generic

def self.wrap(environment)

@parameter environment [Build::Environment] The environment to use to construct the service.
Convert the given environment into a service if possible.
def self.wrap(environment)
	evaluator = environment.evaluator
	service = evaluator.service || self
	
	return service.new(environment)
end